Convert to new network device ops interface. Signed-off-by: Stephen Hemminger --- a/net/ipv4/ipmr.c 2008-11-20 09:14:09.000000000 -0800 +++ b/net/ipv4/ipmr.c 2008-11-20 09:15:27.000000000 -0800 @@ -222,12 +222,16 @@ static int reg_vif_xmit(struct sk_buff * return 0; } +static const struct net_device_ops reg_vif_netdev_ops = { + .ndo_start_xmit = reg_vif_xmit, +}; + static void reg_vif_setup(struct net_device *dev) { dev->type = ARPHRD_PIMREG; dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 8; dev->flags = IFF_NOARP; - dev->hard_start_xmit = reg_vif_xmit; + dev->netdev_ops = ®_vif_netdev_ops, dev->destructor = free_netdev; } --- a/net/ipv6/ip6mr.c 2008-11-20 09:14:08.000000000 -0800 +++ b/net/ipv6/ip6mr.c 2008-11-20 09:15:27.000000000 -0800 @@ -416,12 +416,16 @@ static int reg_vif_xmit(struct sk_buff * return 0; } +static const struct net_device_ops reg_vif_netdev_ops = { + .ndo_start_xmit = reg_vif_xmit, +}; + static void reg_vif_setup(struct net_device *dev) { dev->type = ARPHRD_PIMREG; dev->mtu = 1500 - sizeof(struct ipv6hdr) - 8; dev->flags = IFF_NOARP; - dev->hard_start_xmit = reg_vif_xmit; + dev->netdev_ops = ®_vif_netdev_ops; dev->destructor = free_netdev; } -- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html