Commit 210ab665 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller

dummy: implement carrier change

Signed-off-by: default avatarJiri Pirko <jiri@resnulli.us>
Acked-by: default avatarFlavio Leitner <fbl@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9a57247f
...@@ -100,6 +100,15 @@ static void dummy_dev_uninit(struct net_device *dev) ...@@ -100,6 +100,15 @@ static void dummy_dev_uninit(struct net_device *dev)
free_percpu(dev->dstats); free_percpu(dev->dstats);
} }
static int dummy_change_carrier(struct net_device *dev, bool new_carrier)
{
if (new_carrier)
netif_carrier_on(dev);
else
netif_carrier_off(dev);
return 0;
}
static const struct net_device_ops dummy_netdev_ops = { static const struct net_device_ops dummy_netdev_ops = {
.ndo_init = dummy_dev_init, .ndo_init = dummy_dev_init,
.ndo_uninit = dummy_dev_uninit, .ndo_uninit = dummy_dev_uninit,
...@@ -108,6 +117,7 @@ static const struct net_device_ops dummy_netdev_ops = { ...@@ -108,6 +117,7 @@ static const struct net_device_ops dummy_netdev_ops = {
.ndo_set_rx_mode = set_multicast_list, .ndo_set_rx_mode = set_multicast_list,
.ndo_set_mac_address = eth_mac_addr, .ndo_set_mac_address = eth_mac_addr,
.ndo_get_stats64 = dummy_get_stats64, .ndo_get_stats64 = dummy_get_stats64,
.ndo_change_carrier = dummy_change_carrier,
}; };
static void dummy_setup(struct net_device *dev) static void dummy_setup(struct net_device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment