]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - init/main.c
net: check return value for dst_alloc
[karo-tx-linux.git] / init / main.c
index 9c51ee7adf3d7edb01bfc501488389d4ca1c45fc..2a9b88aa5e7601f83031ed5623dbbb25742dad30 100644 (file)
@@ -209,8 +209,19 @@ early_param("quiet", quiet_kernel);
 
 static int __init loglevel(char *str)
 {
-       get_option(&str, &console_loglevel);
-       return 0;
+       int newlevel;
+
+       /*
+        * Only update loglevel value when a correct setting was passed,
+        * to prevent blind crashes (when loglevel being set to 0) that
+        * are quite hard to debug
+        */
+       if (get_option(&str, &newlevel)) {
+               console_loglevel = newlevel;
+               return 0;
+       }
+
+       return -EINVAL;
 }
 
 early_param("loglevel", loglevel);