]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop arm-clean-up-per-processor-check_bugs-method-call.patch from 4.14 and 4.19
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Nov 2018 15:21:56 +0000 (16:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Nov 2018 15:21:56 +0000 (16:21 +0100)
queue-4.14/arm-clean-up-per-processor-check_bugs-method-call.patch [deleted file]
queue-4.14/series
queue-4.19/arm-clean-up-per-processor-check_bugs-method-call.patch [deleted file]
queue-4.19/series

diff --git a/queue-4.14/arm-clean-up-per-processor-check_bugs-method-call.patch b/queue-4.14/arm-clean-up-per-processor-check_bugs-method-call.patch
deleted file mode 100644 (file)
index 52b9883..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-From a1532514df66413e1f503540ea2f9a3d017d1030 Mon Sep 17 00:00:00 2001
-From: Russell King <rmk+kernel@armlinux.org.uk>
-Date: Thu, 19 Jul 2018 12:43:03 +0100
-Subject: ARM: clean up per-processor check_bugs method call
-
-[ Upstream commit 945aceb1db8885d3a35790cf2e810f681db52756 ]
-
-Call the per-processor type check_bugs() method in the same way as we
-do other per-processor functions - move the "processor." detail into
-proc-fns.h.
-
-Reviewed-by: Julien Thierry <julien.thierry@arm.com>
-Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- arch/arm/include/asm/proc-fns.h | 1 +
- arch/arm/kernel/bugs.c          | 4 ++--
- 2 files changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/arch/arm/include/asm/proc-fns.h b/arch/arm/include/asm/proc-fns.h
-index e25f4392e1b2..30c499146320 100644
---- a/arch/arm/include/asm/proc-fns.h
-+++ b/arch/arm/include/asm/proc-fns.h
-@@ -99,6 +99,7 @@ extern void cpu_do_suspend(void *);
- extern void cpu_do_resume(void *);
- #else
- #define cpu_proc_init                 processor._proc_init
-+#define cpu_check_bugs                        processor.check_bugs
- #define cpu_proc_fin                  processor._proc_fin
- #define cpu_reset                     processor.reset
- #define cpu_do_idle                   processor._do_idle
-diff --git a/arch/arm/kernel/bugs.c b/arch/arm/kernel/bugs.c
-index 7be511310191..d41d3598e5e5 100644
---- a/arch/arm/kernel/bugs.c
-+++ b/arch/arm/kernel/bugs.c
-@@ -6,8 +6,8 @@
- void check_other_bugs(void)
- {
- #ifdef MULTI_CPU
--      if (processor.check_bugs)
--              processor.check_bugs();
-+      if (cpu_check_bugs)
-+              cpu_check_bugs();
- #endif
- }
--- 
-2.17.1
-
index 02dcb995172d860c37c49dbb7f5159f31d908522..9a6c1d0a96c6d55abcc4516eacc4690021b5661b 100644 (file)
@@ -51,7 +51,6 @@ floppy-fix-race-condition-in-__floppy_read_block_0.patch
 powerpc-io-fix-the-io-workarounds-code-to-work-with-.patch
 perf-x86-intel-uncore-add-more-imc-pci-ids-for-kabyl.patch
 arm-make-lookup_processor_type-non-__init.patch
-arm-clean-up-per-processor-check_bugs-method-call.patch
 sunrpc-fix-a-bogus-get-put-in-generic_key_to_expire.patch
 kdb-use-strscpy-with-destination-buffer-size.patch
 powerpc-numa-suppress-vphn-is-not-supported-messages.patch
diff --git a/queue-4.19/arm-clean-up-per-processor-check_bugs-method-call.patch b/queue-4.19/arm-clean-up-per-processor-check_bugs-method-call.patch
deleted file mode 100644 (file)
index 5435a60..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-From 126a8c99f7943e0e70c191c97b233a112e6f77a9 Mon Sep 17 00:00:00 2001
-From: Russell King <rmk+kernel@armlinux.org.uk>
-Date: Thu, 19 Jul 2018 12:43:03 +0100
-Subject: ARM: clean up per-processor check_bugs method call
-
-[ Upstream commit 945aceb1db8885d3a35790cf2e810f681db52756 ]
-
-Call the per-processor type check_bugs() method in the same way as we
-do other per-processor functions - move the "processor." detail into
-proc-fns.h.
-
-Reviewed-by: Julien Thierry <julien.thierry@arm.com>
-Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- arch/arm/include/asm/proc-fns.h | 1 +
- arch/arm/kernel/bugs.c          | 4 ++--
- 2 files changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/arch/arm/include/asm/proc-fns.h b/arch/arm/include/asm/proc-fns.h
-index e25f4392e1b2..30c499146320 100644
---- a/arch/arm/include/asm/proc-fns.h
-+++ b/arch/arm/include/asm/proc-fns.h
-@@ -99,6 +99,7 @@ extern void cpu_do_suspend(void *);
- extern void cpu_do_resume(void *);
- #else
- #define cpu_proc_init                 processor._proc_init
-+#define cpu_check_bugs                        processor.check_bugs
- #define cpu_proc_fin                  processor._proc_fin
- #define cpu_reset                     processor.reset
- #define cpu_do_idle                   processor._do_idle
-diff --git a/arch/arm/kernel/bugs.c b/arch/arm/kernel/bugs.c
-index 7be511310191..d41d3598e5e5 100644
---- a/arch/arm/kernel/bugs.c
-+++ b/arch/arm/kernel/bugs.c
-@@ -6,8 +6,8 @@
- void check_other_bugs(void)
- {
- #ifdef MULTI_CPU
--      if (processor.check_bugs)
--              processor.check_bugs();
-+      if (cpu_check_bugs)
-+              cpu_check_bugs();
- #endif
- }
--- 
-2.17.1
-
index f0b40b71b02c7e62c8dff5211f38bc9c2cfc091b..42ffaf414dd65ad65427d722fe8ec19ea083b50d 100644 (file)
@@ -80,7 +80,6 @@ powerpc-io-fix-the-io-workarounds-code-to-work-with-.patch
 sched-fair-fix-cpu_util_wake-for-execl-type-workload.patch
 perf-x86-intel-uncore-add-more-imc-pci-ids-for-kabyl.patch
 arm-make-lookup_processor_type-non-__init.patch
-arm-clean-up-per-processor-check_bugs-method-call.patch
 block-copy-ioprio-in-__bio_clone_fast-and-bounce.patch
 sunrpc-fix-a-bogus-get-put-in-generic_key_to_expire.patch
 riscv-add-missing-vdso_install-target.patch