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>
This commit is contained in:

committed by
David S. Miller

parent
f646968f8f
commit
80d5c3689b
@@ -86,8 +86,8 @@ static void qlcnic_dev_set_npar_ready(struct qlcnic_adapter *);
|
||||
static int qlcnicvf_start_firmware(struct qlcnic_adapter *);
|
||||
static void qlcnic_set_netdev_features(struct qlcnic_adapter *,
|
||||
struct qlcnic_esw_func_cfg *);
|
||||
static int qlcnic_vlan_rx_add(struct net_device *, u16);
|
||||
static int qlcnic_vlan_rx_del(struct net_device *, u16);
|
||||
static int qlcnic_vlan_rx_add(struct net_device *, __be16, u16);
|
||||
static int qlcnic_vlan_rx_del(struct net_device *, __be16, u16);
|
||||
|
||||
#define QLCNIC_IS_TSO_CAPABLE(adapter) \
|
||||
((adapter)->ahw->capabilities & QLCNIC_FW_CAPABILITY_TSO)
|
||||
@@ -902,7 +902,7 @@ void qlcnic_set_vlan_config(struct qlcnic_adapter *adapter,
|
||||
}
|
||||
|
||||
static int
|
||||
qlcnic_vlan_rx_add(struct net_device *netdev, u16 vid)
|
||||
qlcnic_vlan_rx_add(struct net_device *netdev, __be16 proto, u16 vid)
|
||||
{
|
||||
struct qlcnic_adapter *adapter = netdev_priv(netdev);
|
||||
set_bit(vid, adapter->vlans);
|
||||
@@ -910,7 +910,7 @@ qlcnic_vlan_rx_add(struct net_device *netdev, u16 vid)
|
||||
}
|
||||
|
||||
static int
|
||||
qlcnic_vlan_rx_del(struct net_device *netdev, u16 vid)
|
||||
qlcnic_vlan_rx_del(struct net_device *netdev, __be16 proto, u16 vid)
|
||||
{
|
||||
struct qlcnic_adapter *adapter = netdev_priv(netdev);
|
||||
|
||||
|
@@ -2326,7 +2326,7 @@ static int __qlge_vlan_rx_add_vid(struct ql_adapter *qdev, u16 vid)
|
||||
return err;
|
||||
}
|
||||
|
||||
static int qlge_vlan_rx_add_vid(struct net_device *ndev, u16 vid)
|
||||
static int qlge_vlan_rx_add_vid(struct net_device *ndev, __be16 proto, u16 vid)
|
||||
{
|
||||
struct ql_adapter *qdev = netdev_priv(ndev);
|
||||
int status;
|
||||
@@ -2357,7 +2357,7 @@ static int __qlge_vlan_rx_kill_vid(struct ql_adapter *qdev, u16 vid)
|
||||
return err;
|
||||
}
|
||||
|
||||
static int qlge_vlan_rx_kill_vid(struct net_device *ndev, u16 vid)
|
||||
static int qlge_vlan_rx_kill_vid(struct net_device *ndev, __be16 proto, u16 vid)
|
||||
{
|
||||
struct ql_adapter *qdev = netdev_priv(ndev);
|
||||
int status;
|
||||
|
Reference in New Issue
Block a user