The patch titled Altix: correct ioc4 port order has been added to the -mm tree. Its filename is altix-correct-ioc4-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: Brent Casavant <bcasavan@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: Brent Casavant <bcasavan@xxxxxxx> Cc: Pat Gefre <pfg@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/sn/ioc4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/sn/ioc4.c~altix-correct-ioc4-port-order drivers/sn/ioc4.c --- devel/drivers/sn/ioc4.c~altix-correct-ioc4-port-order 2006-05-03 19:21:56.000000000 -0700 +++ devel-akpm/drivers/sn/ioc4.c 2006-05-03 19:21:56.000000000 -0700 @@ -310,7 +310,7 @@ ioc4_probe(struct pci_dev *pdev, const s pci_set_drvdata(idd->idd_pdev, idd); mutex_lock(&ioc4_mutex); - list_add(&idd->idd_list, &ioc4_devices); + list_add_tail(&idd->idd_list, &ioc4_devices); /* Add this IOC4 to all submodules */ list_for_each_entry(is, &ioc4_submodules, is_list) { _ Patches currently in -mm which might be from bcasavan@xxxxxxx are origin.patch altix-correct-ioc4-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