Hi, On Fri, Nov 18, 2011 at 9:16 AM, Konrad Eisele <konrad@xxxxxxxxxxx> wrote: > New kconfig command "subsource": > subsource "<kconfig>" "<cwd>" "<.config>" "<title>" <internal_prefix> <.config_prefix> > Allocates <kconfig> as a configuration subtree using <.config> as the configuration > file to save and load from. <cwd> is the directory path to switch to for "source" to > work, "<title>" is the Menu tile of the subtree, <internal_prefix> is a internal prefix, > and <.config_prefix> is the prefix to append/remove when saving/loading <.config>. > Please break this down in logical change! There is very good stuff in this patch but it need to be digested slowly :) I'd see it as: - introduce the config structure - convert all globals reference to use structure members - get rid of these `_level' prefix and NULL pointer passing. - then introduce the subsource logic (and please separate parser update and regen of shipped file) There is no need for the `_level' prefixing, NULL pointer passing, and conditionally select the structure or the global. The sub-tree should be treated the same way as the global tree. Basically: - if (!sym_defconfig_list) { + if (!(l ? l->sym_defconfig_list : sym_defconfig_list)) { should just be: - if (!sym_defconfig_list) { + if (!l->sym_defconfig_list) { no extra complexity/un-maintainability. You may not even need to change function prototypes if the current tree never expect to use anything but `current_config'. On a performance p.o.v., you may want to have one commit caching the prefix length, to avoid all the strlen(...). on a pure stylistic side - don't pass 0 when you mean NULL (well, you will no longer need that actually) - loop with 6 level of indentation are hideous, especially for condition where you can just `break;' early Thanks, - Arnaud > Signed-off-by: Konrad Eisele <konrad@xxxxxxxxxxx> > --- > scripts/kconfig/conf.c | 6 +- > scripts/kconfig/confdata.c | 83 ++- > scripts/kconfig/expr.h | 16 + > scripts/kconfig/gconf.c | 3 + > scripts/kconfig/lkc.h | 1 + > scripts/kconfig/lkc_proto.h | 12 +- > scripts/kconfig/mconf.c | 13 +- > scripts/kconfig/menu.c | 18 +- > scripts/kconfig/nconf.c | 13 +- > scripts/kconfig/qconf.cc | 3 + > scripts/kconfig/symbol.c | 50 ++- > scripts/kconfig/util.c | 49 ++ > scripts/kconfig/zconf.gperf | 1 + > scripts/kconfig/zconf.hash.c_shipped | 252 +++++----- > scripts/kconfig/zconf.l | 50 ++- > scripts/kconfig/zconf.lex.c_shipped | 52 ++- > scripts/kconfig/zconf.tab.c_shipped | 985 ++++++++++++++++++---------------- > scripts/kconfig/zconf.y | 23 +- > 18 files changed, 991 insertions(+), 639 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-config" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html