[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1165988664.29498.10.camel@sli10-conroe.sh.intel.com>
Date: Wed, 13 Dec 2006 13:44:24 +0800
From: Shaohua Li <shaohua.li@...el.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: Andrew Morton <akpm@...l.org>
Subject: Parse boot parameter error?
Say a boot parameter is "xxx", if you give a string "xxxy", then the
boot parameter's corresponding function is executed. Is this intended?
If not, below patch fixes it.
diff --git a/init/main.c b/init/main.c
index 036f97c..d56940c 100644
--- a/init/main.c
+++ b/init/main.c
@@ -193,7 +193,8 @@ static int __init obsolete_checksetup(ch
p = __setup_start;
do {
int n = strlen(p->str);
- if (!strncmp(line, p->str, n)) {
+ if (((!strncmp(line, p->str, n)) && (p->str[n-1] == '='))
+ || !strcmp(line, p->str)) {
if (p->early) {
/* Already done in parse_early_param?
* (Needs exact match on param part).
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists