1
0
Fork 0

ivshmem-net: add MAC changing interface

Allow ifconfig, ip and other such tools to change the MAC of the
virtual NIC.

Signed-off-by: Henning Schild <henning.schild@siemens.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
(cherry picked from commit 7744d59d11101f75afaa6f550cabba38c2c0d260)
5.4-rM2-2.2.x-imx-squashed
Henning Schild 2017-09-27 12:59:49 +02:00 committed by Dong Aisheng
parent 1a300871de
commit 0de9da4365
1 changed files with 7 additions and 5 deletions

View File

@ -685,12 +685,14 @@ static void ivshm_net_poll_controller(struct net_device *ndev)
#endif
static const struct net_device_ops ivshm_net_ops = {
.ndo_open = ivshm_net_open,
.ndo_stop = ivshm_net_stop,
.ndo_start_xmit = ivshm_net_xmit,
.ndo_change_mtu = ivshm_net_change_mtu,
.ndo_open = ivshm_net_open,
.ndo_stop = ivshm_net_stop,
.ndo_start_xmit = ivshm_net_xmit,
.ndo_change_mtu = ivshm_net_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = ivshm_net_poll_controller,
.ndo_poll_controller = ivshm_net_poll_controller,
#endif
};