]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop acpi patch from 4.4 and 4.9 as well
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Nov 2018 08:02:53 +0000 (09:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Nov 2018 08:02:53 +0000 (09:02 +0100)
queue-4.4/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch [deleted file]
queue-4.4/series
queue-4.9/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch [deleted file]
queue-4.9/series

diff --git a/queue-4.4/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch b/queue-4.4/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
deleted file mode 100644 (file)
index eac832d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-From 4abb951b73ff0a8a979113ef185651aa3c8da19b Mon Sep 17 00:00:00 2001
-From: Erik Schmauss <erik.schmauss@intel.com>
-Date: Wed, 17 Oct 2018 14:09:35 -0700
-Subject: ACPICA: AML interpreter: add region addresses in global list during initialization
-
-From: Erik Schmauss <erik.schmauss@intel.com>
-
-commit 4abb951b73ff0a8a979113ef185651aa3c8da19b upstream.
-
-The table load process omitted adding the operation region address
-range to the global list. This omission is problematic because the OS
-queries the global list to check for address range conflicts before
-deciding which drivers to load. This commit may result in warning
-messages that look like the following:
-
-[    7.871761] ACPI Warning: system_IO range 0x00000428-0x0000042F conflicts with op_region 0x00000400-0x0000047F (\PMIO) (20180531/utaddress-213)
-[    7.871769] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
-
-However, these messages do not signify regressions. It is a result of
-properly adding address ranges within the global address list.
-
-Link: https://bugzilla.kernel.org/show_bug.cgi?id=200011
-Tested-by: Jean-Marc Lenoir <archlinux@jihemel.com>
-Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
-Cc: All applicable <stable@vger.kernel.org>
-Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-Cc: Jean Delvare <jdelvare@suse.de>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
----
- drivers/acpi/acpica/dsopcode.c |    4 ++++
- 1 file changed, 4 insertions(+)
-
---- a/drivers/acpi/acpica/dsopcode.c
-+++ b/drivers/acpi/acpica/dsopcode.c
-@@ -449,6 +449,10 @@ acpi_ds_eval_region_operands(struct acpi
-                         ACPI_FORMAT_UINT64(obj_desc->region.address),
-                         obj_desc->region.length));
-+      status = acpi_ut_add_address_range(obj_desc->region.space_id,
-+                                         obj_desc->region.address,
-+                                         obj_desc->region.length, node);
-+
-       /* Now the address and length are valid for this opregion */
-       obj_desc->region.flags |= AOPOBJ_DATA_VALID;
index 8b8afa507ccb611bde10c5d0622a56f2fbc186bf..55bed5db361d08a8fc161bfec546857c22c472b9 100644 (file)
@@ -13,7 +13,6 @@ can-dev-can_get_echo_skb-factor-out-non-sending-code-to-__can_get_echo_skb.patch
 can-dev-__can_get_echo_skb-replace-struct-can_frame-by-canfd_frame-to-access-frame-length.patch
 can-dev-__can_get_echo_skb-don-t-crash-the-kernel-if-can_priv-echo_skb-is-accessed-out-of-bounds.patch
 can-dev-__can_get_echo_skb-print-error-message-if-trying-to-echo-non-existing-skb.patch
-acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
 usb-xhci-prevent-bus-suspend-if-a-port-connect-change-or-polling-state-is-detected.patch
 kvm-ppc-move-and-undef-trace_include_path-file.patch
 cpufreq-imx6q-add-return-value-check-for-voltage-sca.patch
diff --git a/queue-4.9/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch b/queue-4.9/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
deleted file mode 100644 (file)
index b319a4d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-From 4abb951b73ff0a8a979113ef185651aa3c8da19b Mon Sep 17 00:00:00 2001
-From: Erik Schmauss <erik.schmauss@intel.com>
-Date: Wed, 17 Oct 2018 14:09:35 -0700
-Subject: ACPICA: AML interpreter: add region addresses in global list during initialization
-
-From: Erik Schmauss <erik.schmauss@intel.com>
-
-commit 4abb951b73ff0a8a979113ef185651aa3c8da19b upstream.
-
-The table load process omitted adding the operation region address
-range to the global list. This omission is problematic because the OS
-queries the global list to check for address range conflicts before
-deciding which drivers to load. This commit may result in warning
-messages that look like the following:
-
-[    7.871761] ACPI Warning: system_IO range 0x00000428-0x0000042F conflicts with op_region 0x00000400-0x0000047F (\PMIO) (20180531/utaddress-213)
-[    7.871769] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
-
-However, these messages do not signify regressions. It is a result of
-properly adding address ranges within the global address list.
-
-Link: https://bugzilla.kernel.org/show_bug.cgi?id=200011
-Tested-by: Jean-Marc Lenoir <archlinux@jihemel.com>
-Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
-Cc: All applicable <stable@vger.kernel.org>
-Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-Cc: Jean Delvare <jdelvare@suse.de>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
----
- drivers/acpi/acpica/dsopcode.c |    4 ++++
- 1 file changed, 4 insertions(+)
-
---- a/drivers/acpi/acpica/dsopcode.c
-+++ b/drivers/acpi/acpica/dsopcode.c
-@@ -452,6 +452,10 @@ acpi_ds_eval_region_operands(struct acpi
-                         ACPI_FORMAT_UINT64(obj_desc->region.address),
-                         obj_desc->region.length));
-+      status = acpi_ut_add_address_range(obj_desc->region.space_id,
-+                                         obj_desc->region.address,
-+                                         obj_desc->region.length, node);
-+
-       /* Now the address and length are valid for this opregion */
-       obj_desc->region.flags |= AOPOBJ_DATA_VALID;
index bf8671b3655c7a3762fafd0484f47f37194c6f56..01472c2310b3cb0f8bc5882d5e06555ff8b2e40d 100644 (file)
@@ -21,7 +21,6 @@ can-dev-can_get_echo_skb-factor-out-non-sending-code-to-__can_get_echo_skb.patch
 can-dev-__can_get_echo_skb-replace-struct-can_frame-by-canfd_frame-to-access-frame-length.patch
 can-dev-__can_get_echo_skb-don-t-crash-the-kernel-if-can_priv-echo_skb-is-accessed-out-of-bounds.patch
 can-dev-__can_get_echo_skb-print-error-message-if-trying-to-echo-non-existing-skb.patch
-acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
 ib-core-fix-for-core-panic.patch
 ib-hfi1-eliminate-races-in-the-sdma-send-error-path.patch
 usb-xhci-prevent-bus-suspend-if-a-port-connect-change-or-polling-state-is-detected.patch