The patch titled Altix: correct ioc3 port order has been added to the -mm tree. Its filename is altix-correct-ioc3-port-order.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Pat Gefre <pfg@xxxxxxx> 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 <pfg@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/sn/ioc3.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/sn/ioc3.c~altix-correct-ioc3-port-order drivers/sn/ioc3.c --- devel/drivers/sn/ioc3.c~altix-correct-ioc3-port-order 2006-04-28 23:48:57.000000000 -0700 +++ devel-akpm/drivers/sn/ioc3.c 2006-04-28 23:48:57.000000000 -0700 @@ -678,7 +678,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); _ Patches currently in -mm which might be from pfg@xxxxxxx are altix-correct-ioc3-port-order.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html