From b36eaed571d9cf47ff4a18dde1f776ac44dc9a93 Mon Sep 17 00:00:00 2001 From: Alessio Balsini Date: Mon, 13 Dec 2021 23:44:27 +0000 Subject: [PATCH] ANDROID: fs/fuse: Missing header for passthrough Building the kernel with qcom_defconfig fails as linux/file.h doesn't seems to be indirectly inherited anymore. Fix by including the header explicitly. Fixes: 9ea958368e35 ("FROMLIST: fuse: Passthrough initialization and release") Signed-off-by: Alessio Balsini Change-Id: I3f460d84fe79166f318cf4efd8a386653a25d3a7 --- fs/fuse/passthrough.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/fuse/passthrough.c b/fs/fuse/passthrough.c index 63e26cc30c5a..630fa2880f8b 100644 --- a/fs/fuse/passthrough.c +++ b/fs/fuse/passthrough.c @@ -2,6 +2,7 @@ #include "fuse_i.h" +#include #include #include #include