]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
.27 patch
authorGreg Kroah-Hartman <gregkh@suse.de>
Wed, 4 Feb 2009 17:08:26 +0000 (09:08 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 4 Feb 2009 17:08:26 +0000 (09:08 -0800)
queue-2.6.27/acpica-allow-multiple-backslash-prefix-in-namepaths.patch [new file with mode: 0644]
queue-2.6.27/series

diff --git a/queue-2.6.27/acpica-allow-multiple-backslash-prefix-in-namepaths.patch b/queue-2.6.27/acpica-allow-multiple-backslash-prefix-in-namepaths.patch
new file mode 100644 (file)
index 0000000..1f4f563
--- /dev/null
@@ -0,0 +1,45 @@
+From d037c5fd7367548191eab2b376a1d08c4ffaf7ff Mon Sep 17 00:00:00 2001
+From: Lin Ming <ming.m.lin@intel.com>
+Date: Thu, 13 Nov 2008 10:54:39 +0800
+Subject: ACPICA: Allow multiple backslash prefix in namepaths
+
+From: Lin Ming <ming.m.lin@intel.com>
+
+commit d037c5fd7367548191eab2b376a1d08c4ffaf7ff upstream.
+
+In a fully qualified namepath, allow multiple backslash prefixes.
+This can happen because of the use of a double-backslash in strings
+(since backslash is the escape character) causing confusion.
+ACPICA BZ 739 Lin Ming.
+
+http://www.acpica.org/bugzilla/show_bug.cgi?id=739
+
+Signed-off-by: Lin Ming <ming.m.lin@intel.com>
+Signed-off-by: Bob Moore <robert.moore@intel.com>
+Signed-off-by: Len Brown <len.brown@intel.com>
+Cc: Thomas Renninger <trenn@suse.de>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ drivers/acpi/namespace/nsutils.c |    8 +++++++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+--- a/drivers/acpi/namespace/nsutils.c
++++ b/drivers/acpi/namespace/nsutils.c
+@@ -314,9 +314,15 @@ void acpi_ns_get_internal_name_length(st
+        *
+        * strlen() + 1 covers the first name_seg, which has no path separator
+        */
+-      if (acpi_ns_valid_root_prefix(next_external_char[0])) {
++      if (acpi_ns_valid_root_prefix(*next_external_char)) {
+               info->fully_qualified = TRUE;
+               next_external_char++;
++
++              /* Skip redundant root_prefix, like \\_SB.PCI0.SBRG.EC0 */
++
++              while (acpi_ns_valid_root_prefix(*next_external_char)) {
++                      next_external_char++;
++              }
+       } else {
+               /*
+                * Handle Carat prefixes
index 9ff6bad1c5229d1656739ad0c1cd8bc3f218d77a..2f9fcbf9ef8964977590aca6194126ce0b686fe7 100644 (file)
@@ -38,3 +38,4 @@ acpi-do-not-modify-sci_en-directly.patch
 acpi-suspend-blacklist-hp-xw4600-workstation-for-old-code-ordering.patch
 dlm-initialize-file_lock-struct-in-getlk-before-copying-conflicting-lock.patch
 sata_mv-fix-chip-type-for-hightpoint-rocketraid-1740-1742.patch
+acpica-allow-multiple-backslash-prefix-in-namepaths.patch