diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-17 13:08:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-17 13:08:59 -0400 |
commit | 80111bfb672d8c04d60c25559243554f732f2848 (patch) | |
tree | cd8d31f04532d9be6a43f344213bf85e5a228577 /arch/s390 | |
parent | bf8a9a4755737f6630756f0d87bea9b38f0ed369 (diff) | |
parent | f3e20ad67b4c8365df9818fd3c8026e105d6b53a (diff) |
Merge tag 's390-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
Pull more s390 updates from Martin Schwidefsky:
- Enhancements for the QDIO layer
- Remove the RCP trace event
- Avoid three build issues
- Move the defconfig to the configs directory
* tag 's390-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux:
s390: move arch/s390/defconfig to arch/s390/configs/defconfig
s390/qdio: optimize state inspection of HW-owned SBALs
s390/qdio: use get_buf_state() in debug_get_buf_state()
s390/qdio: allow to scan all Output SBALs in one go
s390/cio: Remove tracing for rchp instruction
s390/kasan: adapt disabled_wait usage to avoid build error
latent_entropy: avoid build error when plugin cflags are not set
s390/boot: fix compiler error due to missing awk strtonum
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/Makefile | 2 | ||||
-rw-r--r-- | arch/s390/boot/Makefile | 1 | ||||
-rw-r--r-- | arch/s390/boot/compressed/vmlinux.lds.S | 2 | ||||
-rw-r--r-- | arch/s390/configs/defconfig (renamed from arch/s390/defconfig) | 0 | ||||
-rw-r--r-- | arch/s390/mm/kasan_init.c | 2 |
5 files changed, 5 insertions, 2 deletions
diff --git a/arch/s390/Makefile b/arch/s390/Makefile index df1d6a150f30..de8521fc9de5 100644 --- a/arch/s390/Makefile +++ b/arch/s390/Makefile | |||
@@ -10,6 +10,8 @@ | |||
10 | # Copyright (C) 1994 by Linus Torvalds | 10 | # Copyright (C) 1994 by Linus Torvalds |
11 | # | 11 | # |
12 | 12 | ||
13 | KBUILD_DEFCONFIG := defconfig | ||
14 | |||
13 | LD_BFD := elf64-s390 | 15 | LD_BFD := elf64-s390 |
14 | KBUILD_LDFLAGS := -m elf64_s390 | 16 | KBUILD_LDFLAGS := -m elf64_s390 |
15 | KBUILD_AFLAGS_MODULE += -fPIC | 17 | KBUILD_AFLAGS_MODULE += -fPIC |
diff --git a/arch/s390/boot/Makefile b/arch/s390/boot/Makefile index c51496bbac19..7cba96e7587b 100644 --- a/arch/s390/boot/Makefile +++ b/arch/s390/boot/Makefile | |||
@@ -58,7 +58,6 @@ define cmd_section_cmp | |||
58 | touch $@ | 58 | touch $@ |
59 | endef | 59 | endef |
60 | 60 | ||
61 | OBJCOPYFLAGS_bzImage := --pad-to $$(readelf -s $(obj)/compressed/vmlinux | awk '/\<_end\>/ {print or(strtonum("0x"$$2),4095)+1}') | ||
62 | $(obj)/bzImage: $(obj)/compressed/vmlinux $(obj)/section_cmp.boot.data $(obj)/section_cmp.boot.preserved.data FORCE | 61 | $(obj)/bzImage: $(obj)/compressed/vmlinux $(obj)/section_cmp.boot.data $(obj)/section_cmp.boot.preserved.data FORCE |
63 | $(call if_changed,objcopy) | 62 | $(call if_changed,objcopy) |
64 | 63 | ||
diff --git a/arch/s390/boot/compressed/vmlinux.lds.S b/arch/s390/boot/compressed/vmlinux.lds.S index 112b8d9f1e4c..635217eb3d91 100644 --- a/arch/s390/boot/compressed/vmlinux.lds.S +++ b/arch/s390/boot/compressed/vmlinux.lds.S | |||
@@ -77,6 +77,8 @@ SECTIONS | |||
77 | _compressed_start = .; | 77 | _compressed_start = .; |
78 | *(.vmlinux.bin.compressed) | 78 | *(.vmlinux.bin.compressed) |
79 | _compressed_end = .; | 79 | _compressed_end = .; |
80 | FILL(0xff); | ||
81 | . = ALIGN(4096); | ||
80 | } | 82 | } |
81 | . = ALIGN(256); | 83 | . = ALIGN(256); |
82 | .bss : { | 84 | .bss : { |
diff --git a/arch/s390/defconfig b/arch/s390/configs/defconfig index c59b922cb6c5..c59b922cb6c5 100644 --- a/arch/s390/defconfig +++ b/arch/s390/configs/defconfig | |||
diff --git a/arch/s390/mm/kasan_init.c b/arch/s390/mm/kasan_init.c index 01892dcf4029..0c1f257be422 100644 --- a/arch/s390/mm/kasan_init.c +++ b/arch/s390/mm/kasan_init.c | |||
@@ -28,7 +28,7 @@ static void __init kasan_early_panic(const char *reason) | |||
28 | { | 28 | { |
29 | sclp_early_printk("The Linux kernel failed to boot with the KernelAddressSanitizer:\n"); | 29 | sclp_early_printk("The Linux kernel failed to boot with the KernelAddressSanitizer:\n"); |
30 | sclp_early_printk(reason); | 30 | sclp_early_printk(reason); |
31 | disabled_wait(0); | 31 | disabled_wait(); |
32 | } | 32 | } |
33 | 33 | ||
34 | static void * __init kasan_early_alloc_segment(void) | 34 | static void * __init kasan_early_alloc_segment(void) |