mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-25 12:00:22 +09:00
ANDROID: fuse-bpf: Fix non-fusebpf build
Added #ifdefs around fuse-bpf init/cleanup code Bug: 202785178 Test: builds with and without CONFIG_FUSE_BPF Signed-off-by: Daniel Rosenberg <drosen@google.com> Change-Id: Ie15bb04e439b496e4842303437b3f55c3da14f2c
This commit is contained in:
@@ -1903,17 +1903,21 @@ static int __init fuse_init(void)
|
||||
if (res)
|
||||
goto err_sysfs_cleanup;
|
||||
|
||||
#ifdef CONFIG_FUSE_BPF
|
||||
res = fuse_bpf_init();
|
||||
if (res)
|
||||
goto err_ctl_cleanup;
|
||||
#endif
|
||||
|
||||
sanitize_global_limit(&max_user_bgreq);
|
||||
sanitize_global_limit(&max_user_congthresh);
|
||||
|
||||
return 0;
|
||||
|
||||
#ifdef CONFIG_FUSE_BPF
|
||||
err_ctl_cleanup:
|
||||
fuse_ctl_cleanup();
|
||||
#endif
|
||||
err_sysfs_cleanup:
|
||||
fuse_sysfs_cleanup();
|
||||
err_dev_cleanup:
|
||||
@@ -1931,7 +1935,9 @@ static void __exit fuse_exit(void)
|
||||
fuse_ctl_cleanup();
|
||||
fuse_sysfs_cleanup();
|
||||
fuse_fs_cleanup();
|
||||
#ifdef CONFIG_FUSE_BPF
|
||||
fuse_bpf_cleanup();
|
||||
#endif
|
||||
fuse_dev_cleanup();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user