The patch titled init/version.c: define version_string only if CONFIG_KALLSYMS is not defined has been removed from the -mm tree. Its filename was init-versionc-define-version_string-only-if-config_kallsyms-is-not-defined.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: init/version.c: define version_string only if CONFIG_KALLSYMS is not defined From: Daniel Guilak <guilak@xxxxxxxxxxxxxxxxxx> int Version_* is only used with ksymoops, which is only needed (according to README and Documentation/Changes) if CONFIG_KALLSYMS is NOT defined. Therefore this patch defines version_string only if CONFIG_KALLSYMS is not defined. Signed-off-by: Daniel Guilak <daniel@xxxxxxxxxxxxxxxx> Cc: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- init/version.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN init/version.c~init-versionc-define-version_string-only-if-config_kallsyms-is-not-defined init/version.c --- a/init/version.c~init-versionc-define-version_string-only-if-config_kallsyms-is-not-defined +++ a/init/version.c @@ -13,11 +13,13 @@ #include <linux/utsrelease.h> #include <linux/version.h> +#ifndef CONFIG_KALLSYMS #define version(a) Version_ ## a #define version_string(a) version(a) extern int version_string(LINUX_VERSION_CODE); int version_string(LINUX_VERSION_CODE); +#endif struct uts_namespace init_uts_ns = { .kref = { _ Patches currently in -mm which might be from guilak@xxxxxxxxxxxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html