kfence: limit currently covered allocations when pool nearly full
[platform/kernel/linux-rpi.git] / mm / usercopy.c
index b3de3c4..540968b 100644 (file)
@@ -294,7 +294,10 @@ static bool enable_checks __initdata = true;
 
 static int __init parse_hardened_usercopy(char *str)
 {
-       return strtobool(str, &enable_checks);
+       if (strtobool(str, &enable_checks))
+               pr_warn("Invalid option string for hardened_usercopy: '%s'\n",
+                       str);
+       return 1;
 }
 
 __setup("hardened_usercopy=", parse_hardened_usercopy);