bonding: Fix device passed into ->ndo_neigh_setup().
authorPatrick McHardy <kaber@trash.net>
Thu, 5 Mar 2009 09:57:44 +0000 (01:57 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Mar 2009 09:57:44 +0000 (01:57 -0800)
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c

index 9fb3883..e0578fe 100644 (file)
@@ -4113,7 +4113,7 @@ static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
                const struct net_device_ops *slave_ops
                        = slave->dev->netdev_ops;
                if (slave_ops->ndo_neigh_setup)
-                       return slave_ops->ndo_neigh_setup(dev, parms);
+                       return slave_ops->ndo_neigh_setup(slave->dev, parms);
        }
        return 0;
 }