]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.14-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 23 Apr 2023 13:14:16 +0000 (15:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 23 Apr 2023 13:14:16 +0000 (15:14 +0200)
added patches:
x86-purgatory-don-t-generate-debug-info-for-purgatory.ro.patch

queue-4.14/series
queue-4.14/x86-purgatory-don-t-generate-debug-info-for-purgatory.ro.patch [new file with mode: 0644]

index 07d393e98306342f18a02a5ff3b1b57bd9216f00..882fb95c6b7977b229a6f815d23f5aae438c07cd 100644 (file)
@@ -14,3 +14,4 @@ s390-ptrace-fix-ptrace_get_last_break-error-handling.patch
 xen-netback-use-same-error-messages-for-same-errors.patch
 nilfs2-initialize-unused-bytes-in-segment-summary-blocks.patch
 memstick-fix-memory-leak-if-card-device-is-never-registered.patch
+x86-purgatory-don-t-generate-debug-info-for-purgatory.ro.patch
diff --git a/queue-4.14/x86-purgatory-don-t-generate-debug-info-for-purgatory.ro.patch b/queue-4.14/x86-purgatory-don-t-generate-debug-info-for-purgatory.ro.patch
new file mode 100644 (file)
index 0000000..d1bbbf4
--- /dev/null
@@ -0,0 +1,46 @@
+From 52416ffcf823ee11aa19792715664ab94757f111 Mon Sep 17 00:00:00 2001
+From: Pingfan Liu <kernelfans@gmail.com>
+Date: Mon, 3 Aug 2020 13:49:48 +0800
+Subject: x86/purgatory: Don't generate debug info for purgatory.ro
+
+From: Pingfan Liu <kernelfans@gmail.com>
+
+commit 52416ffcf823ee11aa19792715664ab94757f111 upstream.
+
+Purgatory.ro is a standalone binary that is not linked against the rest of
+the kernel.  Its image is copied into an array that is linked to the
+kernel, and from there kexec relocates it wherever it desires.
+
+Unlike the debug info for vmlinux, which can be used for analyzing crash
+such info is useless in purgatory.ro. And discarding them can save about
+200K space.
+
+ Original:
+   259080  kexec-purgatory.o
+ Stripped debug info:
+    29152  kexec-purgatory.o
+
+Signed-off-by: Pingfan Liu <kernelfans@gmail.com>
+Signed-off-by: Ingo Molnar <mingo@kernel.org>
+Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
+Reviewed-by: Steve Wahl <steve.wahl@hpe.com>
+Acked-by: Dave Young <dyoung@redhat.com>
+Link: https://lore.kernel.org/r/1596433788-3784-1-git-send-email-kernelfans@gmail.com
+Signed-off-by: Alyssa Ross <hi@alyssa.is>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ arch/x86/purgatory/Makefile |    3 +++
+ 1 file changed, 3 insertions(+)
+
+--- a/arch/x86/purgatory/Makefile
++++ b/arch/x86/purgatory/Makefile
+@@ -20,6 +20,9 @@ KBUILD_CFLAGS := -fno-strict-aliasing -W
+ KBUILD_CFLAGS += -m$(BITS)
+ KBUILD_CFLAGS += $(call cc-option,-fno-PIE)
++AFLAGS_REMOVE_setup-x86_$(BITS).o     += -Wa,-gdwarf-2
++AFLAGS_REMOVE_entry64.o                       += -Wa,-gdwarf-2
++
+ $(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
+               $(call if_changed,ld)