be2net: Regression bug wherein VFs creation broken for multiple cards.
authorSomnath Kotur <somnath.kotur@emulex.com>
Sun, 24 Jun 2012 19:42:00 +0000 (19:42 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 25 Jun 2012 23:10:11 +0000 (16:10 -0700)
Fix be_find_vfs() to check for matching bus number as well along with devfn

Signed-off-by: Somnath Kotur <somnath.kotur@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/emulex/benet/be_main.c

index c60782e299db4301b5495b9ec918ad36868db682..a28896d4411d9843aaa91f93d156b2c76ac65bc2 100644 (file)
@@ -1059,7 +1059,8 @@ static int be_find_vfs(struct be_adapter *adapter, int vf_state)
        dev = pci_get_device(pdev->vendor, PCI_ANY_ID, NULL);
        while (dev) {
                vf_fn = (pdev->devfn + offset + stride * vfs) & 0xFFFF;
-               if (dev->is_virtfn && dev->devfn == vf_fn) {
+               if (dev->is_virtfn && dev->devfn == vf_fn &&
+                       dev->bus->number == pdev->bus->number) {
                        vfs++;
                        if (dev->dev_flags & PCI_DEV_FLAGS_ASSIGNED)
                                assigned_vfs++;