diff options
Diffstat (limited to 'main/linux-hardened/zfs-fix.patch')
-rw-r--r-- | main/linux-hardened/zfs-fix.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/main/linux-hardened/zfs-fix.patch b/main/linux-hardened/zfs-fix.patch deleted file mode 100644 index 997add4dbc..0000000000 --- a/main/linux-hardened/zfs-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/kernel/module.c b/kernel/module.c -index f9d983b..aadd2ed 100644 ---- a/kernel/module.c -+++ b/kernel/module.c -@@ -3036,7 +3036,7 @@ static int check_modinfo(struct module *mod, struct load_info *info, int flags) - int err; - - #if defined(CONFIG_PAX_KERNEXEC_PLUGIN_METHOD_OR) || defined(CONFIG_PAX_RAP) -- if (!license || !license_is_gpl_compatible(license)) { -+ if (!license || (!license_is_gpl_compatible(license) && strcmp(license, "CDDL") != 0)) { - pr_err("%s: module is not compatible with the KERNEXEC 'or' method and RAP\n", mod->name); - return -ENOEXEC; - } |