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: