netdev: add more functions to netdevice ops
This patch moves neigh_setup and hard_start_xmit into the network device ops structure. For bisection, fix all the previously converted drivers as well. Bonding driver took the biggest hit on this. Added a prefetch of the hard_start_xmit in the fast path to try and reduce any impact this would have. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
6ab33d5171
commit
008298231a
@@ -138,15 +138,15 @@ resched:
|
||||
}
|
||||
|
||||
static const struct net_device_ops ifb_netdev_ops = {
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_open = ifb_open,
|
||||
.ndo_stop = ifb_close,
|
||||
.ndo_start_xmit = ifb_xmit,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
};
|
||||
|
||||
static void ifb_setup(struct net_device *dev)
|
||||
{
|
||||
/* Initialize the device structure. */
|
||||
dev->hard_start_xmit = ifb_xmit;
|
||||
dev->destructor = free_netdev;
|
||||
dev->netdev_ops = &ifb_netdev_ops;
|
||||
|
||||
|
Reference in New Issue
Block a user