Loading arch/s390/include/asm/cache.h +1 −1 Original line number Diff line number Diff line Loading @@ -13,6 +13,6 @@ #define L1_CACHE_SHIFT 8 #define NET_SKB_PAD 32 #define __read_mostly __attribute__((__section__(".data..read_mostly"))) #define __read_mostly __section(.data..read_mostly) #endif arch/s390/kernel/ipl.c +3 −3 Original line number Diff line number Diff line Loading @@ -121,9 +121,9 @@ static char *dump_type_str(enum dump_type type) * Must be in data section since the bss section * is not cleared when these are accessed. */ static u8 ipl_ssid __attribute__((__section__(".data"))) = 0; static u16 ipl_devno __attribute__((__section__(".data"))) = 0; u32 ipl_flags __attribute__((__section__(".data"))) = 0; static u8 ipl_ssid __section(.data) = 0; static u16 ipl_devno __section(.data) = 0; u32 ipl_flags __section(.data) = 0; enum ipl_method { REIPL_METHOD_CCW_CIO, Loading arch/s390/kernel/setup.c +1 −1 Original line number Diff line number Diff line Loading @@ -289,7 +289,7 @@ static int __init parse_vmalloc(char *arg) } early_param("vmalloc", parse_vmalloc); void *restart_stack __attribute__((__section__(".data"))); void *restart_stack __section(.data); static void __init setup_lowcore(void) { Loading Loading
arch/s390/include/asm/cache.h +1 −1 Original line number Diff line number Diff line Loading @@ -13,6 +13,6 @@ #define L1_CACHE_SHIFT 8 #define NET_SKB_PAD 32 #define __read_mostly __attribute__((__section__(".data..read_mostly"))) #define __read_mostly __section(.data..read_mostly) #endif
arch/s390/kernel/ipl.c +3 −3 Original line number Diff line number Diff line Loading @@ -121,9 +121,9 @@ static char *dump_type_str(enum dump_type type) * Must be in data section since the bss section * is not cleared when these are accessed. */ static u8 ipl_ssid __attribute__((__section__(".data"))) = 0; static u16 ipl_devno __attribute__((__section__(".data"))) = 0; u32 ipl_flags __attribute__((__section__(".data"))) = 0; static u8 ipl_ssid __section(.data) = 0; static u16 ipl_devno __section(.data) = 0; u32 ipl_flags __section(.data) = 0; enum ipl_method { REIPL_METHOD_CCW_CIO, Loading
arch/s390/kernel/setup.c +1 −1 Original line number Diff line number Diff line Loading @@ -289,7 +289,7 @@ static int __init parse_vmalloc(char *arg) } early_param("vmalloc", parse_vmalloc); void *restart_stack __attribute__((__section__(".data"))); void *restart_stack __section(.data); static void __init setup_lowcore(void) { Loading