The patch titled parisc: unbreak setup.c re command_line has been added to the -mm tree. Its filename is parisc-unbreak-setupc-re-command_line.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: parisc: unbreak setup.c re command_line From: Alexey Dobriyan <adobriyan@xxxxxxxxx> What compiler is supposed to do upon seeing char __attribute__((__section__ (".init.data"))) command_line[1024] __attribute__((__section__(".data.read_mostly"))); ? Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Kyle McMartin <kyle@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/parisc/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/parisc/kernel/setup.c~parisc-unbreak-setupc-re-command_line arch/parisc/kernel/setup.c --- a/arch/parisc/kernel/setup.c~parisc-unbreak-setupc-re-command_line +++ a/arch/parisc/kernel/setup.c @@ -45,7 +45,7 @@ #include <asm/io.h> #include <asm/setup.h> -char __initdata command_line[COMMAND_LINE_SIZE] __read_mostly; +static char __initdata command_line[COMMAND_LINE_SIZE]; /* Intended for ccio/sba/cpu statistics under /proc/bus/{runway|gsc} */ struct proc_dir_entry * proc_runway_root __read_mostly = NULL; _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are git-dvb.patch parisc-unbreak-setupc-re-command_line.patch megaraid-fix-warnings-when-config_proc_fs=n.patch fix-rmmod-read-write-races-in-proc-entries.patch fix-rmmod-read-write-races-in-proc-entries-fix.patch reiserfs-shrink-superblock-if-no-xattrs.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