]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization...
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 12 Nov 2018 17:48:25 +0000 (09:48 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 12 Nov 2018 17:48:25 +0000 (09:48 -0800)
queue-3.18/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch [deleted file]
queue-3.18/series
queue-4.14/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch [deleted file]
queue-4.14/series
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-3.18/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch b/queue-3.18/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
deleted file mode 100644 (file)
index bde87f3..0000000
+++ /dev/null
@@ -1,45 +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>
-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 2a2f825c832160c287ab18d16b1ea6d66a0cd812..f8ed85f27596d0ded0f772969ad12e0eaead668c 100644 (file)
@@ -1,7 +1,6 @@
 bcache-fix-miss-key-refill-end-in-writeback.patch
 jffs2-free-jffs2_sb_info-through-jffs2_kill_sb.patch
 pcmcia-implement-clkrun-protocol-disabling-for-ricoh-bridges.patch
-acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
 alsa-ca0106-disable-izd-on-sb0570-dac-to-fix-audio-pops.patch
 x86-corruption-check-fix-panic-in-memory_corruption_check-when-boot-option-without-value-is-provided.patch
 sparc-fix-single-pcr-perf-event-counter-management.patch
diff --git a/queue-4.14/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch b/queue-4.14/acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
deleted file mode 100644 (file)
index db5af20..0000000
+++ /dev/null
@@ -1,45 +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>
-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
-@@ -451,6 +451,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 efe29239ff022dc042a041fba447b4414233474e..2b4ed86f7017949cfa33213bf96665cc0d46c167 100644 (file)
@@ -6,7 +6,6 @@ hwmon-pmbus-fix-page-count-auto-detection.patch
 jffs2-free-jffs2_sb_info-through-jffs2_kill_sb.patch
 cpufreq-conservative-take-limits-changes-into-account-properly.patch
 pcmcia-implement-clkrun-protocol-disabling-for-ricoh-bridges.patch
-acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
 ipmi-fix-timer-race-with-module-unload.patch
 parisc-fix-address-in-hpmc-iva.patch
 parisc-fix-map_pages-to-not-overwrite-existing-pte-entries.patch
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 bde87f3..0000000
+++ /dev/null
@@ -1,45 +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>
-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 8ae40146f9890bf139f9410d3e0cc979c07aaf7b..686a9e7cc15b62d7f69cfb464d449b866067b753 100644 (file)
@@ -2,7 +2,6 @@ bcache-fix-miss-key-refill-end-in-writeback.patch
 hwmon-pmbus-fix-page-count-auto-detection.patch
 jffs2-free-jffs2_sb_info-through-jffs2_kill_sb.patch
 pcmcia-implement-clkrun-protocol-disabling-for-ricoh-bridges.patch
-acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
 ipmi-fix-timer-race-with-module-unload.patch
 parisc-fix-address-in-hpmc-iva.patch
 parisc-fix-map_pages-to-not-overwrite-existing-pte-entries.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 195cc4d..0000000
+++ /dev/null
@@ -1,45 +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>
-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 19157ac055019e9260b292a895ad2ec8df1c8cac..40e9e029d672936d9830b44d1eb6c7281179f60f 100644 (file)
@@ -2,7 +2,6 @@ bcache-fix-miss-key-refill-end-in-writeback.patch
 hwmon-pmbus-fix-page-count-auto-detection.patch
 jffs2-free-jffs2_sb_info-through-jffs2_kill_sb.patch
 pcmcia-implement-clkrun-protocol-disabling-for-ricoh-bridges.patch
-acpica-aml-interpreter-add-region-addresses-in-global-list-during-initialization.patch
 ipmi-fix-timer-race-with-module-unload.patch
 parisc-fix-address-in-hpmc-iva.patch
 parisc-fix-map_pages-to-not-overwrite-existing-pte-entries.patch