The patch titled Altix: correct ioc3 port order has been removed from the -mm tree. Its filename is altix-correct-ioc3-port-order.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. 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-05-01 12:15:32.000000000 -0700 +++ devel-akpm/drivers/sn/ioc3.c 2006-05-01 12:15:32.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 origin.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