summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-10-01 02:02:22 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2024-10-01 17:05:30 +0900
commit8d095547debdd26583171a6b589acbc9fd76aa9f (patch)
tree940ad28306c1d10c56bc95b4f578577dcb7ffc92
parent4d46b5b623e0adee1153b1d80689211e5094ae44 (diff)
downloadlinux-stable-8d095547debdd26583171a6b589acbc9fd76aa9f.tar.gz
linux-stable-8d095547debdd26583171a6b589acbc9fd76aa9f.tar.bz2
linux-stable-8d095547debdd26583171a6b589acbc9fd76aa9f.zip
kconfig: clear expr::val_is_valid when allocated
Since commit 95573cac25c6 ("kconfig: cache expression values"), xconfig emits a lot of false-positive "unmet direct dependencies" warnings. While conf_read() clears val_is_valid flags, 'make xconfig' calculates symbol values even before the conf_read() call. This is another issue that should be addressed separately, but it has revealed that the val_is_valid field is not initialized. Fixes: 95573cac25c6 ("kconfig: cache expression values") Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r--scripts/kconfig/expr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c
index 78738ef412de..16f92c4a775a 100644
--- a/scripts/kconfig/expr.c
+++ b/scripts/kconfig/expr.c
@@ -47,6 +47,7 @@ static struct expr *expr_lookup(enum expr_type type, void *l, void *r)
e->type = type;
e->left._initdata = l;
e->right._initdata = r;
+ e->val_is_valid = false;
hash_add(expr_hashtable, &e->node, hash);