fixup! BACKPORT: fuse: name fs_context consistently

This is a follow-up to commit a20fb465b5 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 <tashfinshakeerrhythm@gmail.com>
This commit is contained in:
Tashfin Shakeer Rhythm
2026-04-03 02:17:42 +06:00
committed by Nolen Johnson
parent f64a028174
commit 4f08164da0

View File

@ -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: