diff options
| author | Matt Wilson <[email protected]> | 2013-01-22 08:08:25 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2013-01-23 18:42:20 +0000 |
| commit | 4a633a602c26497b8285a202830829d3be007c7b (patch) | |
| tree | 7fd0f9233146d859d6c1e139ab55dc214777cbc7 /drivers/net/xen-netback/interface.c | |
| parent | netpoll: fix an uninitialized variable (diff) | |
| download | kernel-4a633a602c26497b8285a202830829d3be007c7b.tar.gz kernel-4a633a602c26497b8285a202830829d3be007c7b.zip | |
xen-netback: allow changing the MAC address of the interface
Sometimes it is useful to be able to change the MAC address of the
interface for netback devices. For example, when using ebtables it may
be useful to be able to distinguish traffic from different interfaces
without depending on the interface name.
Reported-by: Nikita Borzykh <[email protected]>
Reported-by: Paul Harvey <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: Konrad Rzeszutek Wilk <[email protected]>
Acked-by: Ian Campbell <[email protected]>
Signed-off-by: Matt Wilson <[email protected]>
Reviewed-by: Konrad Rzeszutek Wilk <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'drivers/net/xen-netback/interface.c')
| -rw-r--r-- | drivers/net/xen-netback/interface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c index b7d41f8c338a..f733cae3d4b6 100644 --- a/drivers/net/xen-netback/interface.c +++ b/drivers/net/xen-netback/interface.c @@ -238,6 +238,8 @@ static const struct net_device_ops xenvif_netdev_ops = { .ndo_stop = xenvif_close, .ndo_change_mtu = xenvif_change_mtu, .ndo_fix_features = xenvif_fix_features, + .ndo_set_mac_address = eth_mac_addr, + .ndo_validate_addr = eth_validate_addr, }; struct xenvif *xenvif_alloc(struct device *parent, domid_t domid, |
