The patch titled Subject: kbuild: simpler generation of assembly constants has been removed from the -mm tree. Its filename was kbuild-simpler-generation-of-assembly-constants.patch This patch was dropped because it had testing failures ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: kbuild: simpler generation of assembly constants gcc doesn't really look inside "asm" statements and more or less directly emits it into assembly. So pretend "#define" is CPU instruction. Also, use C++ comment to block whatever garbage is put at the end of the line by compiler. Link: http://lkml.kernel.org/r/20160707213941.GA31678@xxxxxxxxxxxxxxx Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Cc: "Luck, Tony" <tony.luck@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Kbuild | 12 +----------- arch/ia64/kernel/Makefile | 8 +------- include/linux/kbuild.h | 2 +- scripts/mod/Makefile | 11 +---------- 4 files changed, 4 insertions(+), 29 deletions(-) diff -puN Kbuild~kbuild-simpler-generation-of-assembly-constants Kbuild --- a/Kbuild~kbuild-simpler-generation-of-assembly-constants +++ a/Kbuild @@ -7,14 +7,6 @@ # 4) Check for missing system calls # 5) Generate constants.py (may need bounds.h) -# Default sed regexp - multiline due to syntax constraints -define sed-y - "/^->/{s:->#\(.*\):/* \1 */:; \ - s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \ - s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ - s:->::; p;}" -endef - # Use filechk to avoid rebuilds when a header changes, but the resulting file # does not define filechk_offsets @@ -26,9 +18,7 @@ define filechk_offsets echo " *"; \ echo " * This file was generated by Kbuild"; \ echo " */"; \ - echo ""; \ - sed -ne $(sed-y); \ - echo ""; \ + sed -ne '/#define/{s/\$$//;s/#//2;p;}'; \ echo "#endif" ) endef diff -puN arch/ia64/kernel/Makefile~kbuild-simpler-generation-of-assembly-constants arch/ia64/kernel/Makefile --- a/arch/ia64/kernel/Makefile~kbuild-simpler-generation-of-assembly-constants +++ a/arch/ia64/kernel/Makefile @@ -50,10 +50,6 @@ CFLAGS_traps.o += -mfixed-range=f2-f5,f # The gate DSO image is built using a special linker script. include $(src)/Makefile.gate -# Calculate NR_IRQ = max(IA64_NATIVE_NR_IRQS, XEN_NR_IRQS, ...) based on config -define sed-y - "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" -endef quiet_cmd_nr_irqs = GEN $@ define cmd_nr_irqs (set -e; \ @@ -65,9 +61,7 @@ define cmd_nr_irqs echo " * This file was generated by Kbuild"; \ echo " *"; \ echo " */"; \ - echo ""; \ - sed -ne $(sed-y) $<; \ - echo ""; \ + sed -ne '/#define/{s/\$$//;s/#//2;p;}' $<; \ echo "#endif" ) > $@ endef diff -puN include/linux/kbuild.h~kbuild-simpler-generation-of-assembly-constants include/linux/kbuild.h --- a/include/linux/kbuild.h~kbuild-simpler-generation-of-assembly-constants +++ a/include/linux/kbuild.h @@ -2,7 +2,7 @@ #define __LINUX_KBUILD_H #define DEFINE(sym, val) \ - asm volatile("\n->" #sym " %0 " #val : : "i" (val)) + asm volatile ("#define " #sym " %0 //" #val :: "i" (val)) #define BLANK() asm volatile("\n->" : : ) diff -puN scripts/mod/Makefile~kbuild-simpler-generation-of-assembly-constants scripts/mod/Makefile --- a/scripts/mod/Makefile~kbuild-simpler-generation-of-assembly-constants +++ a/scripts/mod/Makefile @@ -7,13 +7,6 @@ modpost-objs := modpost.o file2alias.o s devicetable-offsets-file := devicetable-offsets.h -define sed-y - "/^->/{s:->#\(.*\):/* \1 */:; \ - s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \ - s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ - s:->::; p;}" -endef - quiet_cmd_offsets = GEN $@ define cmd_offsets (set -e; \ @@ -25,9 +18,7 @@ define cmd_offsets echo " * This file was generated by Kbuild"; \ echo " *"; \ echo " */"; \ - echo ""; \ - sed -ne $(sed-y) $<; \ - echo ""; \ + sed -ne '/#define/{s/\$$//;s/#//2;p;}' $<; \ echo "#endif" ) > $@ endef _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are cflags-add-wunused-but-set-parameter.patch ban-config_localversion_auto-with-allmodconfig.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