diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2010-03-19 14:57:47 +0800 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-03-23 12:29:07 +0100 |
commit | da6df879b9f88d2224174a9e4e76dc0e42e47ebc (patch) | |
tree | 38e455e5c3e494cdadf0cb98747ffcdd98179ae7 /scripts/kconfig | |
parent | 52b80025ebaa992688959b4cb2cd86c7e805b70f (diff) | |
download | linux-3.10-da6df879b9f88d2224174a9e4e76dc0e42e47ebc.tar.gz linux-3.10-da6df879b9f88d2224174a9e4e76dc0e42e47ebc.tar.bz2 linux-3.10-da6df879b9f88d2224174a9e4e76dc0e42e47ebc.zip |
kconfig: recalc symbol value before showing search results
A symbol's value won't be recalc-ed until we save config file or
enter the menu where the symbol sits.
So If I enable OPTIMIZE_FOR_SIZE, and search FUNCTION_GRAPH_TRACER:
Symbol: FUNCTION_GRAPH_TRACER [=y]
Prompt: Kernel Function Graph Tracer
Defined at kernel/trace/Kconfig:140
Depends on: ... [=y] && (!X86_32 [=y] || !CC_OPTIMIZE_FOR_SIZE [=y])
...
From the dependency it should result in FUNCTION_GRAPH_TRACER=n,
but it still shows FUNCTION_GRAPH_TRACER=y.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/symbol.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c index 9ee3923117e..2e7a048e0cf 100644 --- a/scripts/kconfig/symbol.c +++ b/scripts/kconfig/symbol.c @@ -755,6 +755,7 @@ struct symbol **sym_re_search(const char *pattern) return NULL; } } + sym_calc_value(sym); sym_arr[cnt++] = sym; } if (sym_arr) |