diff --git a/kernel/ksu.c b/kernel/ksu.c index 90deecb0..a5e1e800 100644 --- a/kernel/ksu.c +++ b/kernel/ksu.c @@ -3,6 +3,7 @@ #include #include #include +#include #include "allowlist.h" #include "arch.h" @@ -154,7 +155,10 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR("weishu"); MODULE_DESCRIPTION("Android KernelSU"); -#include #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 0) +#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 13, 0) +MODULE_IMPORT_NS("VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver"); +#else MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver); #endif +#endif