From: Greg Kroah-Hartman Date: Fri, 19 May 2006 21:37:10 +0000 (-0700) Subject: add 2 patches to the queue for the next series X-Git-Tag: v2.6.16.17~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3079541a312c1adefdcff5f3a07e664f358f0a67;p=thirdparty%2Fkernel%2Fstable-queue.git add 2 patches to the queue for the next series --- diff --git a/queue-2.6.16/altix-correct-ioc3-port-order.patch b/queue-2.6.16/altix-correct-ioc3-port-order.patch new file mode 100644 index 00000000000..b3fc76071f2 --- /dev/null +++ b/queue-2.6.16/altix-correct-ioc3-port-order.patch @@ -0,0 +1,30 @@ +From nobody Mon Sep 17 00:00:00 2001 +From: Pat Gefre +Date: Mon, 1 May 2006 12:16:08 -0700 +Subject: Altix: correct ioc3 port order + +Currently loading the ioc3 as a module will cause the ports to be numbered +in reverse order. This mod maintains the proper order of cards for port +numbering. + +Signed-off-by: Patrick Gefre +Signed-off-by: Andrew Morton +Signed-off-by: Linus Torvalds +Signed-off-by: Greg Kroah-Hartman + +--- + + drivers/sn/ioc3.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- linux-2.6.16.16.orig/drivers/sn/ioc3.c ++++ linux-2.6.16.16/drivers/sn/ioc3.c +@@ -677,7 +677,7 @@ static int ioc3_probe(struct pci_dev *pd + /* Track PCI-device specific data */ + pci_set_drvdata(pdev, idd); + down_write(&ioc3_devices_rwsem); +- list_add(&idd->list, &ioc3_devices); ++ list_add_tail(&idd->list, &ioc3_devices); + idd->id = ioc3_counter++; + up_write(&ioc3_devices_rwsem); + diff --git a/queue-2.6.16/altix-correct-ioc4-port-order.patch b/queue-2.6.16/altix-correct-ioc4-port-order.patch new file mode 100644 index 00000000000..58e13834872 --- /dev/null +++ b/queue-2.6.16/altix-correct-ioc4-port-order.patch @@ -0,0 +1,31 @@ +From nobody Mon Sep 17 00:00:00 2001 +From: Brent Casavant +Date: Wed, 3 May 2006 19:55:10 -0700 +Subject: Altix: correct ioc4 port order + +Currently loading the ioc4 as a module will cause the ports to be numbered +in reverse order. This mod maintains the proper order of cards for port +numbering. + +Signed-off-by: Brent Casavant +Cc: Pat Gefre +Signed-off-by: Andrew Morton +Signed-off-by: Linus Torvalds +Signed-off-by: Greg Kroah-Hartman + +--- + + drivers/sn/ioc4.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- linux-2.6.16.16.orig/drivers/sn/ioc4.c ++++ linux-2.6.16.16/drivers/sn/ioc4.c +@@ -313,7 +313,7 @@ ioc4_probe(struct pci_dev *pdev, const s + idd->idd_serial_data = NULL; + pci_set_drvdata(idd->idd_pdev, idd); + down_write(&ioc4_devices_rwsem); +- list_add(&idd->idd_list, &ioc4_devices); ++ list_add_tail(&idd->idd_list, &ioc4_devices); + up_write(&ioc4_devices_rwsem); + + /* Add this IOC4 to all submodules */ diff --git a/queue-2.6.16/series b/queue-2.6.16/series new file mode 100644 index 00000000000..b574cca059f --- /dev/null +++ b/queue-2.6.16/series @@ -0,0 +1,2 @@ +altix-correct-ioc4-port-order.patch +altix-correct-ioc3-port-order.patch