[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080504110038.GA8532@damson>
Date: Sun, 4 May 2008 13:00:38 +0200
From: Vegard Nossum <vegard.nossum@...il.com>
To: Sam Ravnborg <sam@...nborg.org>
Cc: Ingo Molnar <mingo@...e.hu>, Roman Zippel <zippel@...ux-m68k.org>,
Adrian Bunk <bunk@...nel.org>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] kconfig: warn about complex selects
Okay, here's try #2. (That's what I get for making patches too early in the
morning.)
This checks dependencies instead of the "default" property. I don't know how
useful this is, though, as it will generate some false positives. Actually,
a lot of them.
Vegard
>From c5587b1c4a442ae8edde7e22f36ab9058d1e9121 Mon Sep 17 00:00:00 2001
From: Vegard Nossum <vegard.nossum@...il.com>
Date: Sun, 4 May 2008 07:24:04 +0200
Subject: [PATCH] kconfig: warn about complex selects
"Complex selects" are selects that depend on symbols with dependencies. These
are effectively circumventing the rest of the dependency chains of kconfig,
often leading to build errors.
Signed-off-by: Vegard Nossum <vegard.nossum@...il.com>
---
scripts/kconfig/symbol.c | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c
index 18f3e5c..4848588 100644
--- a/scripts/kconfig/symbol.c
+++ b/scripts/kconfig/symbol.c
@@ -790,6 +790,41 @@ static struct symbol *sym_check_expr_deps(struct expr *e)
return NULL;
}
+static bool sym_is_complex(struct symbol *sym)
+{
+ struct expr *expr;
+ struct property *prop;
+
+ for_all_prompts(sym, prop) {
+ expr = prop->visible.expr;
+
+ if (!expr)
+ continue;
+ if (expr->type != E_NONE)
+ return true;
+ }
+
+ return false;
+}
+
+static void sym_check_select(struct symbol *sym)
+{
+ struct property *prop;
+
+ for (prop = sym->prop; prop; prop = prop->next) {
+ if (prop->type != P_SELECT)
+ continue;
+
+ if (!sym_is_complex(prop->expr->left.sym))
+ continue;
+
+ fprintf(stderr, "%s:%d:error: found complex select: "
+ "%s -> %s\n",
+ sym->prop->file->name, sym->prop->lineno,
+ sym->name, prop->expr->left.sym->name);
+ }
+}
+
/* return NULL when dependencies are OK */
static struct symbol *sym_check_sym_deps(struct symbol *sym)
{
@@ -864,6 +899,8 @@ struct symbol *sym_check_deps(struct symbol *sym)
if (sym->flags & SYMBOL_CHECKED)
return NULL;
+ sym_check_select(sym);
+
if (sym_is_choice_value(sym)) {
/* for choice groups start the check with main choice symbol */
prop = sym_get_choice_prop(sym);
--
1.5.4.1
--
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