ANDROID: fix kernelci error in fs/fuse/dir.c

kernelci reported the following error when !CONFIG_FUSE_BPF:

fs/fuse/dir.c:269:40: error: no member named 'backing_inode' in 'struct fuse_inode'

Fixed by wrapping that new code in #ifdef CONFIG_FUSE_BPF.

Fixes: 094905c877 ("ANDROID: fuse-bpf: Always call revalidate for
backing")
Signed-off-by: Todd Kjos <tkjos@google.com>
Change-Id: I08760f340cebf21d3084ca84ac1792bc70f311ff
This commit is contained in:
Todd Kjos
2022-07-29 00:59:18 +00:00
parent 3821e5b25c
commit feb89f3850

View File

@@ -263,6 +263,7 @@ static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags)
parent = dget_parent(entry); parent = dget_parent(entry);
#ifdef CONFIG_FUSE_BPF
/* TODO: Once we're handling timeouts for backing inodes, do a /* TODO: Once we're handling timeouts for backing inodes, do a
* bpf based lookup_revalidate here. * bpf based lookup_revalidate here.
*/ */
@@ -271,7 +272,7 @@ static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags)
ret = 1; ret = 1;
goto out; goto out;
} }
#endif
forget = fuse_alloc_forget(); forget = fuse_alloc_forget();
ret = -ENOMEM; ret = -ENOMEM;
if (!forget) { if (!forget) {