]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.0-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Oct 2012 16:37:57 +0000 (09:37 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Oct 2012 16:37:57 +0000 (09:37 -0700)
added patches:
acpi-run-_osc-after-acpi_full_initialization.patch
drivers-scsi-atp870u.c-fix-bad-use-of-udelay.patch
kernel-sys.c-call-disable_nonboot_cpus-in-kernel_restart.patch
lib-gcd.c-prevent-possible-div-by-0.patch
pci-acpiphp-check-whether-_adr-evaluation-succeeded.patch

queue-3.0/acpi-run-_osc-after-acpi_full_initialization.patch [new file with mode: 0644]
queue-3.0/drivers-scsi-atp870u.c-fix-bad-use-of-udelay.patch [new file with mode: 0644]
queue-3.0/kernel-sys.c-call-disable_nonboot_cpus-in-kernel_restart.patch [new file with mode: 0644]
queue-3.0/lib-gcd.c-prevent-possible-div-by-0.patch [new file with mode: 0644]
queue-3.0/pci-acpiphp-check-whether-_adr-evaluation-succeeded.patch [new file with mode: 0644]
queue-3.0/series

diff --git a/queue-3.0/acpi-run-_osc-after-acpi_full_initialization.patch b/queue-3.0/acpi-run-_osc-after-acpi_full_initialization.patch
new file mode 100644 (file)
index 0000000..8f64340
--- /dev/null
@@ -0,0 +1,48 @@
+From fc54ab72959edbf229b65ac74b2f122d799ca002 Mon Sep 17 00:00:00 2001
+From: Lin Ming <ming.m.lin@intel.com>
+Date: Mon, 16 Jul 2012 16:30:21 +0800
+Subject: ACPI: run _OSC after ACPI_FULL_INITIALIZATION
+
+From: Lin Ming <ming.m.lin@intel.com>
+
+commit fc54ab72959edbf229b65ac74b2f122d799ca002 upstream.
+
+The _OSC method may exist in module level code,
+so it must be called after ACPI_FULL_INITIALIZATION
+
+On some new platforms with Zero-Power-Optical-Disk-Drive (ZPODD)
+support, this fix is necessary to save power.
+
+Signed-off-by: Lin Ming <ming.m.lin@intel.com>
+Tested-by: Aaron Lu <aaron.lu@intel.com>
+Signed-off-by: Len Brown <len.brown@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/acpi/bus.c |    8 ++++++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+--- a/drivers/acpi/bus.c
++++ b/drivers/acpi/bus.c
+@@ -944,8 +944,6 @@ static int __init acpi_bus_init(void)
+       status = acpi_ec_ecdt_probe();
+       /* Ignore result. Not having an ECDT is not fatal. */
+-      acpi_bus_osc_support();
+-
+       status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
+       if (ACPI_FAILURE(status)) {
+               printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
+@@ -953,6 +951,12 @@ static int __init acpi_bus_init(void)
+       }
+       /*
++       * _OSC method may exist in module level code,
++       * so it must be run after ACPI_FULL_INITIALIZATION
++       */
++      acpi_bus_osc_support();
++
++      /*
+        * _PDC control method may load dynamic SSDT tables,
+        * and we need to install the table handler before that.
+        */
diff --git a/queue-3.0/drivers-scsi-atp870u.c-fix-bad-use-of-udelay.patch b/queue-3.0/drivers-scsi-atp870u.c-fix-bad-use-of-udelay.patch
new file mode 100644 (file)
index 0000000..2ef07c1
--- /dev/null
@@ -0,0 +1,58 @@
+From 0f6d93aa9d96cc9022b51bd10d462b03296be146 Mon Sep 17 00:00:00 2001
+From: Martin Michlmayr <tbm@cyrius.com>
+Date: Thu, 4 Oct 2012 17:11:25 -0700
+Subject: drivers/scsi/atp870u.c: fix bad use of udelay
+
+From: Martin Michlmayr <tbm@cyrius.com>
+
+commit 0f6d93aa9d96cc9022b51bd10d462b03296be146 upstream.
+
+The ACARD driver calls udelay() with a value > 2000, which leads to to
+the following compilation error on ARM:
+
+  ERROR: "__bad_udelay" [drivers/scsi/atp870u.ko] undefined!
+  make[1]: *** [__modpost] Error 1
+
+This is because udelay is defined on ARM, roughly speaking, as
+
+       #define udelay(n) ((n) > 2000 ? __bad_udelay() : \
+               __const_udelay((n) * ((2199023U*HZ)>>11)))
+
+The argument to __const_udelay is the number of jiffies to wait divided
+by 4, but this does not work unless the multiplication does not
+overflow, and that is what the build error is designed to prevent.  The
+intended behavior can be achieved by using mdelay to call udelay
+multiple times in a loop.
+
+[jrnieder@gmail.com: adding context]
+Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
+Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
+Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
+Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/scsi/atp870u.c |   11 ++++++++++-
+ 1 file changed, 10 insertions(+), 1 deletion(-)
+
+--- a/drivers/scsi/atp870u.c
++++ b/drivers/scsi/atp870u.c
+@@ -1174,7 +1174,16 @@ wait_io1:
+       outw(val, tmport);
+       outb(2, 0x80);
+ TCM_SYNC:
+-      udelay(0x800);
++      /*
++       * The funny division into multiple delays is to accomodate
++       * arches like ARM where udelay() multiplies its argument by
++       * a large number to initialize a loop counter.  To avoid
++       * overflow, the maximum supported udelay is 2000 microseconds.
++       *
++       * XXX it would be more polite to find a way to use msleep()
++       */
++      mdelay(2);
++      udelay(48);
+       if ((inb(tmport) & 0x80) == 0x00) {     /* bsy ? */
+               outw(0, tmport--);
+               outb(0, tmport);
diff --git a/queue-3.0/kernel-sys.c-call-disable_nonboot_cpus-in-kernel_restart.patch b/queue-3.0/kernel-sys.c-call-disable_nonboot_cpus-in-kernel_restart.patch
new file mode 100644 (file)
index 0000000..dd7f8ef
--- /dev/null
@@ -0,0 +1,38 @@
+From f96972f2dc6365421cf2366ebd61ee4cf060c8d5 Mon Sep 17 00:00:00 2001
+From: Shawn Guo <shawn.guo@linaro.org>
+Date: Thu, 4 Oct 2012 17:12:23 -0700
+Subject: kernel/sys.c: call disable_nonboot_cpus() in kernel_restart()
+
+From: Shawn Guo <shawn.guo@linaro.org>
+
+commit f96972f2dc6365421cf2366ebd61ee4cf060c8d5 upstream.
+
+As kernel_power_off() calls disable_nonboot_cpus(), we may also want to
+have kernel_restart() call disable_nonboot_cpus().  Doing so can help
+machines that require boot cpu be the last alive cpu during reboot to
+survive with kernel restart.
+
+This fixes one reboot issue seen on imx6q (Cortex-A9 Quad).  The machine
+requires that the restart routine be run on the primary cpu rather than
+secondary ones.  Otherwise, the secondary core running the restart
+routine will fail to come to online after reboot.
+
+Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
+Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ kernel/sys.c |    1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/kernel/sys.c
++++ b/kernel/sys.c
+@@ -334,6 +334,7 @@ void kernel_restart_prepare(char *cmd)
+ void kernel_restart(char *cmd)
+ {
+       kernel_restart_prepare(cmd);
++      disable_nonboot_cpus();
+       if (!cmd)
+               printk(KERN_EMERG "Restarting system.\n");
+       else
diff --git a/queue-3.0/lib-gcd.c-prevent-possible-div-by-0.patch b/queue-3.0/lib-gcd.c-prevent-possible-div-by-0.patch
new file mode 100644 (file)
index 0000000..9b5da7f
--- /dev/null
@@ -0,0 +1,38 @@
+From e96875677fb2b7cb739c5d7769824dff7260d31d Mon Sep 17 00:00:00 2001
+From: Davidlohr Bueso <dave@gnu.org>
+Date: Thu, 4 Oct 2012 17:13:18 -0700
+Subject: lib/gcd.c: prevent possible div by 0
+
+From: Davidlohr Bueso <dave@gnu.org>
+
+commit e96875677fb2b7cb739c5d7769824dff7260d31d upstream.
+
+Account for all properties when a and/or b are 0:
+gcd(0, 0) = 0
+gcd(a, 0) = a
+gcd(0, b) = b
+
+Fixes no known problems in current kernels.
+
+Signed-off-by: Davidlohr Bueso <dave@gnu.org>
+Cc: Eric Dumazet <eric.dumazet@gmail.com>
+Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ lib/gcd.c |    3 +++
+ 1 file changed, 3 insertions(+)
+
+--- a/lib/gcd.c
++++ b/lib/gcd.c
+@@ -9,6 +9,9 @@ unsigned long gcd(unsigned long a, unsig
+       if (a < b)
+               swap(a, b);
++
++      if (!b)
++              return a;
+       while ((r = a % b) != 0) {
+               a = b;
+               b = r;
diff --git a/queue-3.0/pci-acpiphp-check-whether-_adr-evaluation-succeeded.patch b/queue-3.0/pci-acpiphp-check-whether-_adr-evaluation-succeeded.patch
new file mode 100644 (file)
index 0000000..5efc366
--- /dev/null
@@ -0,0 +1,43 @@
+From dfb117b3e50c52c7b3416db4a4569224b8db80bb Mon Sep 17 00:00:00 2001
+From: Bjorn Helgaas <bhelgaas@google.com>
+Date: Wed, 20 Jun 2012 16:18:29 -0600
+Subject: PCI: acpiphp: check whether _ADR evaluation succeeded
+
+From: Bjorn Helgaas <bhelgaas@google.com>
+
+commit dfb117b3e50c52c7b3416db4a4569224b8db80bb upstream.
+
+Check whether we evaluated _ADR successfully.  Previously we ignored
+failure, so we would have used garbage data from the stack as the device
+and function number.
+
+We return AE_OK so that we ignore only this slot and continue looking
+for other slots.
+
+Found by Coverity (CID 113981).
+
+Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
+[bwh: Backported to 2.6.32/3.0: adjust context]
+Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/pci/hotplug/acpiphp_glue.c |    7 ++++++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+--- a/drivers/pci/hotplug/acpiphp_glue.c
++++ b/drivers/pci/hotplug/acpiphp_glue.c
+@@ -131,7 +131,12 @@ register_slot(acpi_handle handle, u32 lv
+       if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle))
+               return AE_OK;
+-      acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
++      status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
++      if (ACPI_FAILURE(status)) {
++              warn("can't evaluate _ADR (%#x)\n", status);
++              return AE_OK;
++      }
++
+       device = (adr >> 16) & 0xffff;
+       function = adr & 0xffff;
index fd2c21236d6e10e9842a2c19f7848ab478f915c9..207b467e5ae1ca062c26218c81fcd7cf40f4c733 100644 (file)
@@ -1,3 +1,8 @@
 mn10300-only-add-mmem-funcs-to-kbuild_cflags-if-gcc-supports-it.patch
 kbuild-make-fix-if_changed-when-command-contains-backslashes.patch
 media-rc-ite-cir-initialise-ite_dev-rdev-earlier.patch
+acpi-run-_osc-after-acpi_full_initialization.patch
+pci-acpiphp-check-whether-_adr-evaluation-succeeded.patch
+lib-gcd.c-prevent-possible-div-by-0.patch
+kernel-sys.c-call-disable_nonboot_cpus-in-kernel_restart.patch
+drivers-scsi-atp870u.c-fix-bad-use-of-udelay.patch