diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2020-10-07 09:54:44 -0500 |
---|---|---|
committer | Justin M. Forbes <jforbes@fedoraproject.org> | 2020-10-07 09:54:44 -0500 |
commit | f7a55ba381de17d8e5511a97441944b797aa62a5 (patch) | |
tree | df2cb85063e94e396b776ea25c0e4b5f9f286c39 /0001-kernel-add-SUPPORT_REMOVED-kernel-taint.patch | |
parent | 5f7d08ee5f8b230f5dfb20783ec265ef40387520 (diff) | |
download | kernel-f7a55ba381de17d8e5511a97441944b797aa62a5.tar.gz kernel-f7a55ba381de17d8e5511a97441944b797aa62a5.tar.xz kernel-f7a55ba381de17d8e5511a97441944b797aa62a5.zip |
kernel-5.9.0-0.rc8.20201007git7575fdda569b.29
* Wed Oct 07 2020 Fedora Kernel Team <kernel-team@fedoraproject.org> [5.9.0-0.rc8.20201007git7575fdda569b.29]
- Merge ark-patches
Resolves: rhbz#
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to '0001-kernel-add-SUPPORT_REMOVED-kernel-taint.patch')
-rw-r--r-- | 0001-kernel-add-SUPPORT_REMOVED-kernel-taint.patch | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/0001-kernel-add-SUPPORT_REMOVED-kernel-taint.patch b/0001-kernel-add-SUPPORT_REMOVED-kernel-taint.patch deleted file mode 100644 index e07ddff84..000000000 --- a/0001-kernel-add-SUPPORT_REMOVED-kernel-taint.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Tomas Henzl <thenzl@redhat.com> -Date: Thu, 9 Aug 2018 13:44:15 -0400 -Subject: [PATCH] kernel: add SUPPORT_REMOVED kernel taint - -Message-id: <e9a9812a-6a4c-a205-e66a-1d47de58306a@redhat.com> -Patchwork-id: 226423 -O-Subject: [RHEL-8.0 V4 01/10] kernel: add SUPPORT_REMOVED kernel taint -Bugzilla: 1602033 -RH-Acked-by: Maurizio Lombardi <mlombard@redhat.com> -RH-Acked-by: Jiri Benc <jbenc@redhat.com> -RH-Acked-by: Rob Evers <revers@redhat.com> - -Upstream Status: RHEL only - -rh_taint, pci : add information about removed hardware - -Upstream Status: RHEL only -Signed-off-by: Herton R. Krzesinski <herton@redhat.com> ---- - include/linux/kernel.h | 2 +- - kernel/panic.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/include/linux/kernel.h b/include/linux/kernel.h -index 3ab563aa9e64..b40d76529ddd 100644 ---- a/include/linux/kernel.h -+++ b/include/linux/kernel.h -@@ -614,7 +614,7 @@ extern enum system_states { - #define TAINT_24 24 - #define TAINT_25 25 - #define TAINT_26 26 --#define TAINT_27 27 -+#define TAINT_SUPPORT_REMOVED 27 - /* Bits 28 - 31 are reserved for Red Hat use only */ - #define TAINT_RESERVED28 28 - #define TAINT_RESERVED29 29 -diff --git a/kernel/panic.c b/kernel/panic.c -index e3bae852d92f..8ab004b0f846 100644 ---- a/kernel/panic.c -+++ b/kernel/panic.c -@@ -395,7 +395,7 @@ const struct taint_flag taint_flags[TAINT_FLAGS_COUNT] = { - [ TAINT_24 ] = { '?', '-', false }, - [ TAINT_25 ] = { '?', '-', false }, - [ TAINT_26 ] = { '?', '-', false }, -- [ TAINT_27 ] = { '?', '-', false }, -+ [ TAINT_SUPPORT_REMOVED ] = { 'h', ' ', false }, - [ TAINT_RESERVED28 ] = { '?', '-', false }, - [ TAINT_RESERVED29 ] = { '?', '-', false }, - [ TAINT_RESERVED30 ] = { '?', '-', false }, --- -2.28.0 - |