diff options
author | Patrick McHardy <kaber@trash.net> | 2013-04-18 22:04:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-19 14:45:27 -0400 |
commit | 80d5c3689b886308247da295a228a54df49a44f6 (patch) | |
tree | ce7b1e6898c3f9fea945e67fd06b125dfcc61fe7 /drivers/net/macvlan.c | |
parent | f646968f8f7c624587de729115d802372b9063dd (diff) |
net: vlan: prepare for 802.1ad VLAN filtering offload
Change the rx_{add,kill}_vid callbacks to take a protocol argument in
preparation of 802.1ad support. The protocol argument used so far is
always htons(ETH_P_8021Q).
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r-- | drivers/net/macvlan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index fedd34cff91c..7347cdbe736f 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
@@ -567,21 +567,21 @@ static struct rtnl_link_stats64 *macvlan_dev_get_stats64(struct net_device *dev, | |||
567 | } | 567 | } |
568 | 568 | ||
569 | static int macvlan_vlan_rx_add_vid(struct net_device *dev, | 569 | static int macvlan_vlan_rx_add_vid(struct net_device *dev, |
570 | unsigned short vid) | 570 | __be16 proto, u16 vid) |
571 | { | 571 | { |
572 | struct macvlan_dev *vlan = netdev_priv(dev); | 572 | struct macvlan_dev *vlan = netdev_priv(dev); |
573 | struct net_device *lowerdev = vlan->lowerdev; | 573 | struct net_device *lowerdev = vlan->lowerdev; |
574 | 574 | ||
575 | return vlan_vid_add(lowerdev, vid); | 575 | return vlan_vid_add(lowerdev, proto, vid); |
576 | } | 576 | } |
577 | 577 | ||
578 | static int macvlan_vlan_rx_kill_vid(struct net_device *dev, | 578 | static int macvlan_vlan_rx_kill_vid(struct net_device *dev, |
579 | unsigned short vid) | 579 | __be16 proto, u16 vid) |
580 | { | 580 | { |
581 | struct macvlan_dev *vlan = netdev_priv(dev); | 581 | struct macvlan_dev *vlan = netdev_priv(dev); |
582 | struct net_device *lowerdev = vlan->lowerdev; | 582 | struct net_device *lowerdev = vlan->lowerdev; |
583 | 583 | ||
584 | vlan_vid_del(lowerdev, vid); | 584 | vlan_vid_del(lowerdev, proto, vid); |
585 | return 0; | 585 | return 0; |
586 | } | 586 | } |
587 | 587 | ||