From b3fab49730fa3d924118eb6a6928f10af63f106e Mon Sep 17 00:00:00 2001 From: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com> Date: Sun, 2 Nov 2025 12:35:11 +0800 Subject: [PATCH] kernel: Fixing the compilation error when enabling sus_su --- kernel/supercalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/supercalls.c b/kernel/supercalls.c index bc98d13f..189b1dc1 100644 --- a/kernel/supercalls.c +++ b/kernel/supercalls.c @@ -35,7 +35,7 @@ extern void ksu_sucompat_exit(void); // Forward declaration for anon_ksu_fops static const struct file_operations anon_ksu_fops; -static bool ksu_su_compat_enabled = true; +bool ksu_su_compat_enabled = true; bool ksu_uid_scanner_enabled = false; // Permission check functions