mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-08-18 14:21:07 +00:00
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:
committed by
Nolen Johnson
parent
f64a028174
commit
4f08164da0
@ -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:
|
||||
|
||||
Reference in New Issue
Block a user