From 4f08164da0aa0d7ec101da738bb133a4dec89000 Mon Sep 17 00:00:00 2001 From: Tashfin Shakeer Rhythm Date: Fri, 3 Apr 2026 02:17:42 +0600 Subject: [PATCH] fixup! BACKPORT: fuse: name fs_context consistently This is a follow-up to commit a20fb465b5b0cb0be63c5e552ad58017d7d1818c that fixes missing instances where s/fc/fsc wasn't performed which breaks compilation with CONFIG_FUSE_BPF enabled. Change-Id: I1d5543efc56c180e0416d09a393139fe8e9667b5 Signed-off-by: Tashfin Shakeer Rhythm --- fs/fuse/inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index b8ee526b66e7..91c1bef5c059 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -764,14 +764,14 @@ static int fuse_parse_param(struct fs_context *fsc, struct fs_parameter *param) BPF_PROG_TYPE_FUSE, false); if (IS_ERR(ctx->root_bpf)) { ctx->root_bpf = NULL; - return invalf(fc, "Unable to open bpf program"); + return invalf(fsc, "Unable to open bpf program"); } break; case OPT_ROOT_DIR: ctx->root_dir = fget(result.uint_32); if (!ctx->root_dir) - return invalf(fc, "Unable to open root directory"); + return invalf(fsc, "Unable to open root directory"); break; case OPT_NO_DAEMON: