Loading include/linux/netdevice.h +1 −5 Original line number Diff line number Diff line Loading @@ -858,8 +858,7 @@ struct netdev_fcoe_hbainfo { * flow_id is a flow ID to be passed to rps_may_expire_flow() later. * Return the filter ID on success, or a negative error code. * * Slave management functions (for bridge, bonding, etc). User should * call netdev_set_master() to set dev->master properly. * Slave management functions (for bridge, bonding, etc). * int (*ndo_add_slave)(struct net_device *dev, struct net_device *slave_dev); * Called to make another netdev an underling. * Loading Loading @@ -2650,9 +2649,6 @@ extern int netdev_master_upper_dev_link(struct net_device *dev, struct net_device *upper_dev); extern void netdev_upper_dev_unlink(struct net_device *dev, struct net_device *upper_dev); extern int netdev_set_master(struct net_device *dev, struct net_device *master); extern int netdev_set_bond_master(struct net_device *dev, struct net_device *master); extern int skb_checksum_help(struct sk_buff *skb); extern struct sk_buff *skb_gso_segment(struct sk_buff *skb, netdev_features_t features); Loading net/core/dev.c +0 −63 Original line number Diff line number Diff line Loading @@ -4826,69 +4826,6 @@ void netdev_upper_dev_unlink(struct net_device *dev, } EXPORT_SYMBOL(netdev_upper_dev_unlink); /** * netdev_set_master - set up master pointer * @slave: slave device * @master: new master device * * Changes the master device of the slave. Pass %NULL to break the * bonding. The caller must hold the RTNL semaphore. On a failure * a negative errno code is returned. On success the reference counts * are adjusted and the function returns zero. */ int netdev_set_master(struct net_device *slave, struct net_device *master) { struct net_device *old = slave->master; int err; ASSERT_RTNL(); if (master) { if (old) return -EBUSY; err = netdev_master_upper_dev_link(slave, master); if (err) return err; } slave->master = master; if (old) netdev_upper_dev_unlink(slave, master); return 0; } EXPORT_SYMBOL(netdev_set_master); /** * netdev_set_bond_master - set up bonding master/slave pair * @slave: slave device * @master: new master device * * Changes the master device of the slave. Pass %NULL to break the * bonding. The caller must hold the RTNL semaphore. On a failure * a negative errno code is returned. On success %RTM_NEWLINK is sent * to the routing socket and the function returns zero. */ int netdev_set_bond_master(struct net_device *slave, struct net_device *master) { int err; ASSERT_RTNL(); err = netdev_set_master(slave, master); if (err) return err; if (master) slave->flags |= IFF_SLAVE; else slave->flags &= ~IFF_SLAVE; rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE); return 0; } EXPORT_SYMBOL(netdev_set_bond_master); static void dev_change_rx_flags(struct net_device *dev, int flags) { const struct net_device_ops *ops = dev->netdev_ops; Loading Loading
include/linux/netdevice.h +1 −5 Original line number Diff line number Diff line Loading @@ -858,8 +858,7 @@ struct netdev_fcoe_hbainfo { * flow_id is a flow ID to be passed to rps_may_expire_flow() later. * Return the filter ID on success, or a negative error code. * * Slave management functions (for bridge, bonding, etc). User should * call netdev_set_master() to set dev->master properly. * Slave management functions (for bridge, bonding, etc). * int (*ndo_add_slave)(struct net_device *dev, struct net_device *slave_dev); * Called to make another netdev an underling. * Loading Loading @@ -2650,9 +2649,6 @@ extern int netdev_master_upper_dev_link(struct net_device *dev, struct net_device *upper_dev); extern void netdev_upper_dev_unlink(struct net_device *dev, struct net_device *upper_dev); extern int netdev_set_master(struct net_device *dev, struct net_device *master); extern int netdev_set_bond_master(struct net_device *dev, struct net_device *master); extern int skb_checksum_help(struct sk_buff *skb); extern struct sk_buff *skb_gso_segment(struct sk_buff *skb, netdev_features_t features); Loading
net/core/dev.c +0 −63 Original line number Diff line number Diff line Loading @@ -4826,69 +4826,6 @@ void netdev_upper_dev_unlink(struct net_device *dev, } EXPORT_SYMBOL(netdev_upper_dev_unlink); /** * netdev_set_master - set up master pointer * @slave: slave device * @master: new master device * * Changes the master device of the slave. Pass %NULL to break the * bonding. The caller must hold the RTNL semaphore. On a failure * a negative errno code is returned. On success the reference counts * are adjusted and the function returns zero. */ int netdev_set_master(struct net_device *slave, struct net_device *master) { struct net_device *old = slave->master; int err; ASSERT_RTNL(); if (master) { if (old) return -EBUSY; err = netdev_master_upper_dev_link(slave, master); if (err) return err; } slave->master = master; if (old) netdev_upper_dev_unlink(slave, master); return 0; } EXPORT_SYMBOL(netdev_set_master); /** * netdev_set_bond_master - set up bonding master/slave pair * @slave: slave device * @master: new master device * * Changes the master device of the slave. Pass %NULL to break the * bonding. The caller must hold the RTNL semaphore. On a failure * a negative errno code is returned. On success %RTM_NEWLINK is sent * to the routing socket and the function returns zero. */ int netdev_set_bond_master(struct net_device *slave, struct net_device *master) { int err; ASSERT_RTNL(); err = netdev_set_master(slave, master); if (err) return err; if (master) slave->flags |= IFF_SLAVE; else slave->flags &= ~IFF_SLAVE; rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE); return 0; } EXPORT_SYMBOL(netdev_set_bond_master); static void dev_change_rx_flags(struct net_device *dev, int flags) { const struct net_device_ops *ops = dev->netdev_ops; Loading