The patch titled PCI-X/PCI-Express read control interfaces: use them in myrinet has been removed from the -mm tree. Its filename was pci-x-pci-express-read-control-interfaces-myrinet.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: PCI-X/PCI-Express read control interfaces: use them in myrinet From: "Peter Oruba" <peter.oruba@xxxxxxx> These driver changes incorporate the proposed PCI-X / PCI-Express read byte count interface. Reading and setting those valuse doesn't take place "manually", instead wrapping functions are called to allow quirks for some PCI bridges. Signed-off by: Peter Oruba <peter.oruba@xxxxxxx> Based on work by Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Cc: Roland Dreier <rolandd@xxxxxxxxx> Cc: Brice Goglin <brice@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/myri10ge/myri10ge.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/net/myri10ge/myri10ge.c~pci-x-pci-express-read-control-interfaces-myrinet drivers/net/myri10ge/myri10ge.c --- a/drivers/net/myri10ge/myri10ge.c~pci-x-pci-express-read-control-interfaces-myrinet +++ a/drivers/net/myri10ge/myri10ge.c @@ -2894,8 +2894,7 @@ static int myri10ge_probe(struct pci_dev status); goto abort_with_netdev; } - val = (val & ~PCI_EXP_DEVCTL_READRQ) | (5 << 12); - status = pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, val); + status = pcie_set_readrq(pdev, 4096); if (status != 0) { dev_err(&pdev->dev, "Error %d writing PCI_EXP_DEVCTL\n", status); _ Patches currently in -mm which might be from peter.oruba@xxxxxxx are pci-x-pci-express-read-control-interfaces-mthca.patch pci-x-pci-express-read-control-interfaces-e1000.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