Commit 1bc87e80 authored by Jacob Keller's avatar Jacob Keller Committed by Jeff Kirsher

i40e: drop is_vf and is_netdev fields in struct i40e_mac_filter

Originally the is_vf and is_netdev fields were added in order to
distinguish between VF and netdev filters in a single VSI. However, it
can be noted that we use separate VSI for SRIOV VFs and for netdev VSI.
Thus, since a single VSI should only ever have one type of filter, we
can simply remove the checks and remove the typing.

In a similar fashion, we can note that the only remaining way to get
multiple filters of a single type is through a debug command that was
added to debugfs. This command is useless in practice, and results in
causing bugs if we keep counter tracking but lose the is_vf and
is_netdev protections as desired above.

Since the only time we'd actually have a counter value besides 0 and
1 is through use of this debugfs hook, we can remove this unnecessary
command, and the entire counter logic it required.

We vastly simplify mac filters by removing

(a) the distinction between VF and netdev filters
(b) counting logic
(c) the ability to add and remove filters bypassing the stack via debugfs

Change-ID: Idf916dd2a1159b1188ddbab5bef6b85ea6bf27d9
Signed-off-by: default avatarJacob Keller <jacob.e.keller@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent ff00f3a9
...@@ -458,9 +458,6 @@ struct i40e_mac_filter { ...@@ -458,9 +458,6 @@ struct i40e_mac_filter {
u8 macaddr[ETH_ALEN]; u8 macaddr[ETH_ALEN];
#define I40E_VLAN_ANY -1 #define I40E_VLAN_ANY -1
s16 vlan; s16 vlan;
u8 counter; /* number of instances of this filter */
bool is_vf; /* filter belongs to a VF */
bool is_netdev; /* filter belongs to a netdev */
enum i40e_filter_state state; enum i40e_filter_state state;
}; };
...@@ -723,10 +720,8 @@ u32 i40e_get_global_fd_count(struct i40e_pf *pf); ...@@ -723,10 +720,8 @@ u32 i40e_get_global_fd_count(struct i40e_pf *pf);
bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features); bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features);
void i40e_set_ethtool_ops(struct net_device *netdev); void i40e_set_ethtool_ops(struct net_device *netdev);
struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
u8 *macaddr, s16 vlan, u8 *macaddr, s16 vlan);
bool is_vf, bool is_netdev); void i40e_del_filter(struct i40e_vsi *vsi, u8 *macaddr, s16 vlan);
void i40e_del_filter(struct i40e_vsi *vsi, u8 *macaddr, s16 vlan,
bool is_vf, bool is_netdev);
int i40e_sync_vsi_filters(struct i40e_vsi *vsi); int i40e_sync_vsi_filters(struct i40e_vsi *vsi);
struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type, struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
u16 uplink, u32 param1); u16 uplink, u32 param1);
...@@ -817,13 +812,11 @@ int i40e_vsi_open(struct i40e_vsi *vsi); ...@@ -817,13 +812,11 @@ int i40e_vsi_open(struct i40e_vsi *vsi);
void i40e_vlan_stripping_disable(struct i40e_vsi *vsi); void i40e_vlan_stripping_disable(struct i40e_vsi *vsi);
int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid); int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid);
int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid); int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid);
struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr, struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi,
bool is_vf, bool is_netdev); u8 *macaddr);
int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr, int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr);
bool is_vf, bool is_netdev);
bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi); bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi);
struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr, struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr);
bool is_vf, bool is_netdev);
#ifdef I40E_FCOE #ifdef I40E_FCOE
int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto, int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
struct tc_to_netdev *tc); struct tc_to_netdev *tc);
......
...@@ -168,9 +168,9 @@ static void i40e_dbg_dump_vsi_seid(struct i40e_pf *pf, int seid) ...@@ -168,9 +168,9 @@ static void i40e_dbg_dump_vsi_seid(struct i40e_pf *pf, int seid)
pf->hw.mac.port_addr); pf->hw.mac.port_addr);
list_for_each_entry(f, &vsi->mac_filter_list, list) { list_for_each_entry(f, &vsi->mac_filter_list, list) {
dev_info(&pf->pdev->dev, dev_info(&pf->pdev->dev,
" mac_filter_list: %pM vid=%d, is_netdev=%d is_vf=%d counter=%d, state %s\n", " mac_filter_hash: %pM vid=%d, state %s\n",
f->macaddr, f->vlan, f->is_netdev, f->is_vf, f->macaddr, f->vlan,
f->counter, i40e_filter_state_string[f->state]); i40e_filter_state_string[f->state]);
} }
dev_info(&pf->pdev->dev, " active_filters %d, promisc_threshold %d, overflow promisc %s\n", dev_info(&pf->pdev->dev, " active_filters %d, promisc_threshold %d, overflow promisc %s\n",
vsi->active_filters, vsi->promisc_threshold, vsi->active_filters, vsi->promisc_threshold,
...@@ -867,86 +867,6 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -867,86 +867,6 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
dev_info(&pf->pdev->dev, "deleting relay %d\n", veb_seid); dev_info(&pf->pdev->dev, "deleting relay %d\n", veb_seid);
i40e_veb_release(pf->veb[i]); i40e_veb_release(pf->veb[i]);
} else if (strncmp(cmd_buf, "add macaddr", 11) == 0) {
struct i40e_mac_filter *f;
int vlan = 0;
u8 ma[6];
int ret;
cnt = sscanf(&cmd_buf[11],
"%i %hhx:%hhx:%hhx:%hhx:%hhx:%hhx %i",
&vsi_seid,
&ma[0], &ma[1], &ma[2], &ma[3], &ma[4], &ma[5],
&vlan);
if (cnt == 7) {
vlan = 0;
} else if (cnt != 8) {
dev_info(&pf->pdev->dev,
"add macaddr: bad command string, cnt=%d\n",
cnt);
goto command_write_done;
}
vsi = i40e_dbg_find_vsi(pf, vsi_seid);
if (!vsi) {
dev_info(&pf->pdev->dev,
"add macaddr: VSI %d not found\n", vsi_seid);
goto command_write_done;
}
spin_lock_bh(&vsi->mac_filter_list_lock);
f = i40e_add_filter(vsi, ma, vlan, false, false);
spin_unlock_bh(&vsi->mac_filter_list_lock);
ret = i40e_sync_vsi_filters(vsi);
if (f && !ret)
dev_info(&pf->pdev->dev,
"add macaddr: %pM vlan=%d added to VSI %d\n",
ma, vlan, vsi_seid);
else
dev_info(&pf->pdev->dev,
"add macaddr: %pM vlan=%d to VSI %d failed, f=%p ret=%d\n",
ma, vlan, vsi_seid, f, ret);
} else if (strncmp(cmd_buf, "del macaddr", 11) == 0) {
int vlan = 0;
u8 ma[6];
int ret;
cnt = sscanf(&cmd_buf[11],
"%i %hhx:%hhx:%hhx:%hhx:%hhx:%hhx %i",
&vsi_seid,
&ma[0], &ma[1], &ma[2], &ma[3], &ma[4], &ma[5],
&vlan);
if (cnt == 7) {
vlan = 0;
} else if (cnt != 8) {
dev_info(&pf->pdev->dev,
"del macaddr: bad command string, cnt=%d\n",
cnt);
goto command_write_done;
}
vsi = i40e_dbg_find_vsi(pf, vsi_seid);
if (!vsi) {
dev_info(&pf->pdev->dev,
"del macaddr: VSI %d not found\n", vsi_seid);
goto command_write_done;
}
spin_lock_bh(&vsi->mac_filter_list_lock);
i40e_del_filter(vsi, ma, vlan, false, false);
spin_unlock_bh(&vsi->mac_filter_list_lock);
ret = i40e_sync_vsi_filters(vsi);
if (!ret)
dev_info(&pf->pdev->dev,
"del macaddr: %pM vlan=%d removed from VSI %d\n",
ma, vlan, vsi_seid);
else
dev_info(&pf->pdev->dev,
"del macaddr: %pM vlan=%d from VSI %d failed, ret=%d\n",
ma, vlan, vsi_seid, ret);
} else if (strncmp(cmd_buf, "add pvid", 8) == 0) { } else if (strncmp(cmd_buf, "add pvid", 8) == 0) {
i40e_status ret; i40e_status ret;
u16 vid; u16 vid;
...@@ -1615,8 +1535,6 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1615,8 +1535,6 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
dev_info(&pf->pdev->dev, " del vsi [vsi_seid]\n"); dev_info(&pf->pdev->dev, " del vsi [vsi_seid]\n");
dev_info(&pf->pdev->dev, " add relay <uplink_seid> <vsi_seid>\n"); dev_info(&pf->pdev->dev, " add relay <uplink_seid> <vsi_seid>\n");
dev_info(&pf->pdev->dev, " del relay <relay_seid>\n"); dev_info(&pf->pdev->dev, " del relay <relay_seid>\n");
dev_info(&pf->pdev->dev, " add macaddr <vsi_seid> <aa:bb:cc:dd:ee:ff> [vlan]\n");
dev_info(&pf->pdev->dev, " del macaddr <vsi_seid> <aa:bb:cc:dd:ee:ff> [vlan]\n");
dev_info(&pf->pdev->dev, " add pvid <vsi_seid> <vid>\n"); dev_info(&pf->pdev->dev, " add pvid <vsi_seid> <vid>\n");
dev_info(&pf->pdev->dev, " del pvid <vsi_seid>\n"); dev_info(&pf->pdev->dev, " del pvid <vsi_seid>\n");
dev_info(&pf->pdev->dev, " dump switch\n"); dev_info(&pf->pdev->dev, " dump switch\n");
......
...@@ -1523,10 +1523,10 @@ void i40e_fcoe_config_netdev(struct net_device *netdev, struct i40e_vsi *vsi) ...@@ -1523,10 +1523,10 @@ void i40e_fcoe_config_netdev(struct net_device *netdev, struct i40e_vsi *vsi)
*/ */
netdev->dev_port = 1; netdev->dev_port = 1;
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
i40e_add_filter(vsi, hw->mac.san_addr, 0, false, false); i40e_add_filter(vsi, hw->mac.san_addr, 0);
i40e_add_filter(vsi, (u8[6]) FC_FCOE_FLOGI_MAC, 0, false, false); i40e_add_filter(vsi, (u8[6]) FC_FCOE_FLOGI_MAC, 0);
i40e_add_filter(vsi, FIP_ALL_FCOE_MACS, 0, false, false); i40e_add_filter(vsi, FIP_ALL_FCOE_MACS, 0);
i40e_add_filter(vsi, FIP_ALL_ENODE_MACS, 0, false, false); i40e_add_filter(vsi, FIP_ALL_ENODE_MACS, 0);
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
/* use san mac */ /* use san mac */
......
...@@ -1145,14 +1145,11 @@ void i40e_update_stats(struct i40e_vsi *vsi) ...@@ -1145,14 +1145,11 @@ void i40e_update_stats(struct i40e_vsi *vsi)
* @vsi: the VSI to be searched * @vsi: the VSI to be searched
* @macaddr: the MAC address * @macaddr: the MAC address
* @vlan: the vlan * @vlan: the vlan
* @is_vf: make sure its a VF filter, else doesn't matter
* @is_netdev: make sure its a netdev filter, else doesn't matter
* *
* Returns ptr to the filter object or NULL * Returns ptr to the filter object or NULL
**/ **/
static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi, static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
u8 *macaddr, s16 vlan, u8 *macaddr, s16 vlan)
bool is_vf, bool is_netdev)
{ {
struct i40e_mac_filter *f; struct i40e_mac_filter *f;
...@@ -1161,9 +1158,7 @@ static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi, ...@@ -1161,9 +1158,7 @@ static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
list_for_each_entry(f, &vsi->mac_filter_list, list) { list_for_each_entry(f, &vsi->mac_filter_list, list) {
if ((ether_addr_equal(macaddr, f->macaddr)) && if ((ether_addr_equal(macaddr, f->macaddr)) &&
(vlan == f->vlan) && (vlan == f->vlan))
(!is_vf || f->is_vf) &&
(!is_netdev || f->is_netdev))
return f; return f;
} }
return NULL; return NULL;
...@@ -1173,14 +1168,11 @@ static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi, ...@@ -1173,14 +1168,11 @@ static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
* i40e_find_mac - Find a mac addr in the macvlan filters list * i40e_find_mac - Find a mac addr in the macvlan filters list
* @vsi: the VSI to be searched * @vsi: the VSI to be searched
* @macaddr: the MAC address we are searching for * @macaddr: the MAC address we are searching for
* @is_vf: make sure its a VF filter, else doesn't matter
* @is_netdev: make sure its a netdev filter, else doesn't matter
* *
* Returns the first filter with the provided MAC address or NULL if * Returns the first filter with the provided MAC address or NULL if
* MAC address was not found * MAC address was not found
**/ **/
struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr, struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr)
bool is_vf, bool is_netdev)
{ {
struct i40e_mac_filter *f; struct i40e_mac_filter *f;
...@@ -1188,9 +1180,7 @@ struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr, ...@@ -1188,9 +1180,7 @@ struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
return NULL; return NULL;
list_for_each_entry(f, &vsi->mac_filter_list, list) { list_for_each_entry(f, &vsi->mac_filter_list, list) {
if ((ether_addr_equal(macaddr, f->macaddr)) && if ((ether_addr_equal(macaddr, f->macaddr)))
(!is_vf || f->is_vf) &&
(!is_netdev || f->is_netdev))
return f; return f;
} }
return NULL; return NULL;
...@@ -1221,26 +1211,21 @@ bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi) ...@@ -1221,26 +1211,21 @@ bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
* i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
* @vsi: the VSI to be searched * @vsi: the VSI to be searched
* @macaddr: the mac address to be filtered * @macaddr: the mac address to be filtered
* @is_vf: true if it is a VF
* @is_netdev: true if it is a netdev
* *
* Goes through all the macvlan filters and adds a * Goes through all the macvlan filters and adds a
* macvlan filter for each unique vlan that already exists * macvlan filter for each unique vlan that already exists
* *
* Returns first filter found on success, else NULL * Returns first filter found on success, else NULL
**/ **/
struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr, struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr)
bool is_vf, bool is_netdev)
{ {
struct i40e_mac_filter *f; struct i40e_mac_filter *f;
list_for_each_entry(f, &vsi->mac_filter_list, list) { list_for_each_entry(f, &vsi->mac_filter_list, list) {
if (vsi->info.pvid) if (vsi->info.pvid)
f->vlan = le16_to_cpu(vsi->info.pvid); f->vlan = le16_to_cpu(vsi->info.pvid);
if (!i40e_find_filter(vsi, macaddr, f->vlan, if (!i40e_find_filter(vsi, macaddr, f->vlan)) {
is_vf, is_netdev)) { if (!i40e_add_filter(vsi, macaddr, f->vlan))
if (!i40e_add_filter(vsi, macaddr, f->vlan,
is_vf, is_netdev))
return NULL; return NULL;
} }
} }
...@@ -1253,15 +1238,12 @@ struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr, ...@@ -1253,15 +1238,12 @@ struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
* i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS * i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS
* @vsi: the VSI to be searched * @vsi: the VSI to be searched
* @macaddr: the mac address to be removed * @macaddr: the mac address to be removed
* @is_vf: true if it is a VF
* @is_netdev: true if it is a netdev
* *
* Removes a given MAC address from a VSI, regardless of VLAN * Removes a given MAC address from a VSI, regardless of VLAN
* *
* Returns 0 for success, or error * Returns 0 for success, or error
**/ **/
int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr, int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr)
bool is_vf, bool is_netdev)
{ {
struct i40e_mac_filter *f = NULL; struct i40e_mac_filter *f = NULL;
int changed = 0; int changed = 0;
...@@ -1269,13 +1251,8 @@ int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr, ...@@ -1269,13 +1251,8 @@ int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
WARN(!spin_is_locked(&vsi->mac_filter_list_lock), WARN(!spin_is_locked(&vsi->mac_filter_list_lock),
"Missing mac_filter_list_lock\n"); "Missing mac_filter_list_lock\n");
list_for_each_entry(f, &vsi->mac_filter_list, list) { list_for_each_entry(f, &vsi->mac_filter_list, list) {
if ((ether_addr_equal(macaddr, f->macaddr)) && if ((ether_addr_equal(macaddr, f->macaddr))) {
(is_vf == f->is_vf) && f->state = I40E_FILTER_REMOVE;
(is_netdev == f->is_netdev)) {
f->counter--;
changed = 1;
if (f->counter == 0)
f->state = I40E_FILTER_REMOVE;
} }
} }
if (changed) { if (changed) {
...@@ -1291,8 +1268,6 @@ int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr, ...@@ -1291,8 +1268,6 @@ int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
* @vsi: the VSI to be searched * @vsi: the VSI to be searched
* @macaddr: the MAC address * @macaddr: the MAC address
* @vlan: the vlan * @vlan: the vlan
* @is_vf: make sure its a VF filter, else doesn't matter
* @is_netdev: make sure its a netdev filter, else doesn't matter
* *
* Returns ptr to the filter object or NULL when no memory available. * Returns ptr to the filter object or NULL when no memory available.
* *
...@@ -1300,11 +1275,9 @@ int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr, ...@@ -1300,11 +1275,9 @@ int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
* being held. * being held.
**/ **/
struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
u8 *macaddr, s16 vlan, u8 *macaddr, s16 vlan)
bool is_vf, bool is_netdev)
{ {
struct i40e_mac_filter *f; struct i40e_mac_filter *f;
int changed = false;
if (!vsi || !macaddr) if (!vsi || !macaddr)
return NULL; return NULL;
...@@ -1316,11 +1289,11 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, ...@@ -1316,11 +1289,11 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
if (is_broadcast_ether_addr(macaddr)) if (is_broadcast_ether_addr(macaddr))
return NULL; return NULL;
f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev); f = i40e_find_filter(vsi, macaddr, vlan);
if (!f) { if (!f) {
f = kzalloc(sizeof(*f), GFP_ATOMIC); f = kzalloc(sizeof(*f), GFP_ATOMIC);
if (!f) if (!f)
goto add_filter_out; return NULL;
ether_addr_copy(f->macaddr, macaddr); ether_addr_copy(f->macaddr, macaddr);
f->vlan = vlan; f->vlan = vlan;
...@@ -1332,32 +1305,24 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, ...@@ -1332,32 +1305,24 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
f->state = I40E_FILTER_FAILED; f->state = I40E_FILTER_FAILED;
else else
f->state = I40E_FILTER_NEW; f->state = I40E_FILTER_NEW;
changed = true;
INIT_LIST_HEAD(&f->list); INIT_LIST_HEAD(&f->list);
list_add_tail(&f->list, &vsi->mac_filter_list); list_add_tail(&f->list, &vsi->mac_filter_list);
}
/* increment counter and add a new flag if needed */
if (is_vf) {
if (!f->is_vf) {
f->is_vf = true;
f->counter++;
}
} else if (is_netdev) {
if (!f->is_netdev) {
f->is_netdev = true;
f->counter++;
}
} else {
f->counter++;
}
if (changed) {
vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED; vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
vsi->back->flags |= I40E_FLAG_FILTER_SYNC; vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
} }
add_filter_out: /* If we're asked to add a filter that has been marked for removal, it
* is safe to simply restore it to active state. __i40e_del_filter
* will have simply deleted any filters which were previously marked
* NEW or FAILED, so if it is currently marked REMOVE it must have
* previously been ACTIVE. Since we haven't yet run the sync filters
* task, just restore this filter to the ACTIVE state so that the
* sync task leaves it in place
*/
if (f->state == I40E_FILTER_REMOVE)
f->state = I40E_FILTER_ACTIVE;
return f; return f;
} }
...@@ -1366,8 +1331,6 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, ...@@ -1366,8 +1331,6 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
* @vsi: the VSI to be searched * @vsi: the VSI to be searched
* @macaddr: the MAC address * @macaddr: the MAC address
* @vlan: the vlan * @vlan: the vlan
* @is_vf: make sure it's a VF filter, else doesn't matter
* @is_netdev: make sure it's a netdev filter, else doesn't matter
* *
* NOTE: This function is expected to be called with mac_filter_list_lock * NOTE: This function is expected to be called with mac_filter_list_lock
* being held. * being held.
...@@ -1375,56 +1338,28 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, ...@@ -1375,56 +1338,28 @@ struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
* the "safe" variants of any list iterators, e.g. list_for_each_entry_safe() * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
* instead of list_for_each_entry(). * instead of list_for_each_entry().
**/ **/
void i40e_del_filter(struct i40e_vsi *vsi, void i40e_del_filter(struct i40e_vsi *vsi, u8 *macaddr, s16 vlan)
u8 *macaddr, s16 vlan,
bool is_vf, bool is_netdev)
{ {
struct i40e_mac_filter *f; struct i40e_mac_filter *f;
if (!vsi || !macaddr) if (!vsi || !macaddr)
return; return;
f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev); f = i40e_find_filter(vsi, macaddr, vlan);
if (!f || f->counter == 0) if (!f)
return; return;
if (is_vf) { if ((f->state == I40E_FILTER_FAILED) ||
if (f->is_vf) { (f->state == I40E_FILTER_NEW)) {
f->is_vf = false; /* this one never got added by the FW. Just remove it,
f->counter--; * no need to sync anything.
} */
} else if (is_netdev) { list_del(&f->list);
if (f->is_netdev) { kfree(f);
f->is_netdev = false;
f->counter--;
}
} else { } else {
/* make sure we don't remove a filter in use by VF or netdev */ f->state = I40E_FILTER_REMOVE;
int min_f = 0; vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
min_f += (f->is_vf ? 1 : 0);
min_f += (f->is_netdev ? 1 : 0);
if (f->counter > min_f)
f->counter--;
}
/* counter == 0 tells sync_filters_subtask to
* remove the filter from the firmware's list
*/
if (f->counter == 0) {
if ((f->state == I40E_FILTER_FAILED) ||
(f->state == I40E_FILTER_NEW)) {
/* this one never got added by the FW. Just remove it,
* no need to sync anything.
*/
list_del(&f->list);
kfree(f);
} else {
f->state = I40E_FILTER_REMOVE;
vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
}
} }
} }
...@@ -1467,8 +1402,8 @@ static int i40e_set_mac(struct net_device *netdev, void *p) ...@@ -1467,8 +1402,8 @@ static int i40e_set_mac(struct net_device *netdev, void *p)
netdev_info(netdev, "set new mac address %pM\n", addr->sa_data); netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
i40e_del_mac_all_vlan(vsi, netdev->dev_addr, false, true); i40e_del_mac_all_vlan(vsi, netdev->dev_addr);
i40e_put_mac_in_vlan(vsi, addr->sa_data, false, true); i40e_put_mac_in_vlan(vsi, addr->sa_data);
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
ether_addr_copy(netdev->dev_addr, addr->sa_data); ether_addr_copy(netdev->dev_addr, addr->sa_data);
if (vsi->type == I40E_VSI_MAIN) { if (vsi->type == I40E_VSI_MAIN) {
...@@ -1653,33 +1588,26 @@ static void i40e_set_rx_mode(struct net_device *netdev) ...@@ -1653,33 +1588,26 @@ static void i40e_set_rx_mode(struct net_device *netdev)
/* add addr if not already in the filter list */ /* add addr if not already in the filter list */
netdev_for_each_uc_addr(uca, netdev) { netdev_for_each_uc_addr(uca, netdev) {
if (!i40e_find_mac(vsi, uca->addr, false, true)) { if (!i40e_find_mac(vsi, uca->addr)) {
if (i40e_is_vsi_in_vlan(vsi)) if (i40e_is_vsi_in_vlan(vsi))
i40e_put_mac_in_vlan(vsi, uca->addr, i40e_put_mac_in_vlan(vsi, uca->addr);
false, true);
else else
i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY, i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY);
false, true);
} }
} }
netdev_for_each_mc_addr(mca, netdev) { netdev_for_each_mc_addr(mca, netdev) {
if (!i40e_find_mac(vsi, mca->addr, false, true)) { if (!i40e_find_mac(vsi, mca->addr)) {
if (i40e_is_vsi_in_vlan(vsi)) if (i40e_is_vsi_in_vlan(vsi))
i40e_put_mac_in_vlan(vsi, mca->addr, i40e_put_mac_in_vlan(vsi, mca->addr);
false, true);
else else
i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY, i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY);
false, true);
} }
} }
/* remove filter if not in netdev list */ /* remove filter if not in netdev list */
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
if (!f->is_netdev)
continue;
netdev_for_each_mc_addr(mca, netdev) netdev_for_each_mc_addr(mca, netdev)
if (ether_addr_equal(mca->addr, f->macaddr)) if (ether_addr_equal(mca->addr, f->macaddr))
goto bottom_of_search_loop; goto bottom_of_search_loop;
...@@ -1693,7 +1621,7 @@ static void i40e_set_rx_mode(struct net_device *netdev) ...@@ -1693,7 +1621,7 @@ static void i40e_set_rx_mode(struct net_device *netdev)
goto bottom_of_search_loop; goto bottom_of_search_loop;
/* f->macaddr wasn't found in uc, mc, or ha list so delete it */ /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, false, true); i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY);
bottom_of_search_loop: bottom_of_search_loop:
continue; continue;
...@@ -1838,13 +1766,11 @@ int i40e_sync_vsi_filters(struct i40e_vsi *vsi) ...@@ -1838,13 +1766,11 @@ int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
/* Create a list of filters to delete. */ /* Create a list of filters to delete. */
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
if (f->state == I40E_FILTER_REMOVE) { if (f->state == I40E_FILTER_REMOVE) {
WARN_ON(f->counter != 0);
/* Move the element into temporary del_list */ /* Move the element into temporary del_list */
list_move_tail(&f->list, &tmp_del_list); list_move_tail(&f->list, &tmp_del_list);
vsi->active_filters--; vsi->active_filters--;
} }
if (f->state == I40E_FILTER_NEW) { if (f->state == I40E_FILTER_NEW) {
WARN_ON(f->counter == 0);
/* Move the element into temporary add_list */ /* Move the element into temporary add_list */
list_move_tail(&f->list, &tmp_add_list); list_move_tail(&f->list, &tmp_add_list);
} }
...@@ -2323,17 +2249,12 @@ static void i40e_vlan_rx_register(struct net_device *netdev, u32 features) ...@@ -2323,17 +2249,12 @@ static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid) int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
{ {
struct i40e_mac_filter *f, *ftmp, *add_f; struct i40e_mac_filter *f, *ftmp, *add_f;
bool is_netdev, is_vf;
is_vf = (vsi->type == I40E_VSI_SRIOV);
is_netdev = !!(vsi->netdev);
/* Locked once because all functions invoked below iterates list*/ /* Locked once because all functions invoked below iterates list*/
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
if (is_netdev) { if (vsi->netdev) {
add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid, add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid);
is_vf, is_netdev);
if (!add_f) { if (!add_f) {
dev_info(&vsi->back->pdev->dev, dev_info(&vsi->back->pdev->dev,
"Could not add vlan filter %d for %pM\n", "Could not add vlan filter %d for %pM\n",
...@@ -2344,7 +2265,7 @@ int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2344,7 +2265,7 @@ int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
} }
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev); add_f = i40e_add_filter(vsi, f->macaddr, vid);
if (!add_f) { if (!add_f) {
dev_info(&vsi->back->pdev->dev, dev_info(&vsi->back->pdev->dev,
"Could not add vlan filter %d for %pM\n", "Could not add vlan filter %d for %pM\n",
...@@ -2360,13 +2281,11 @@ int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2360,13 +2281,11 @@ int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
* (and not all tags along with untagged) * (and not all tags along with untagged)
*/ */
if (vid > 0) { if (vid > 0) {
if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr, if (vsi->netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
I40E_VLAN_ANY, I40E_VLAN_ANY)) {
is_vf, is_netdev)) {
i40e_del_filter(vsi, vsi->netdev->dev_addr, i40e_del_filter(vsi, vsi->netdev->dev_addr,
I40E_VLAN_ANY, is_vf, is_netdev); I40E_VLAN_ANY);
add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0, add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0);
is_vf, is_netdev);
if (!add_f) { if (!add_f) {
dev_info(&vsi->back->pdev->dev, dev_info(&vsi->back->pdev->dev,
"Could not add filter 0 for %pM\n", "Could not add filter 0 for %pM\n",
...@@ -2380,13 +2299,10 @@ int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2380,13 +2299,10 @@ int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
/* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */ /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
if (vid > 0 && !vsi->info.pvid) { if (vid > 0 && !vsi->info.pvid) {
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY, if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY))
is_vf, is_netdev))
continue; continue;
i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY);
is_vf, is_netdev); add_f = i40e_add_filter(vsi, f->macaddr, 0);
add_f = i40e_add_filter(vsi, f->macaddr,
0, is_vf, is_netdev);
if (!add_f) { if (!add_f) {
dev_info(&vsi->back->pdev->dev, dev_info(&vsi->back->pdev->dev,
"Could not add filter 0 for %pM\n", "Could not add filter 0 for %pM\n",
...@@ -2417,20 +2333,16 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2417,20 +2333,16 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
{ {
struct net_device *netdev = vsi->netdev; struct net_device *netdev = vsi->netdev;
struct i40e_mac_filter *f, *ftmp, *add_f; struct i40e_mac_filter *f, *ftmp, *add_f;
bool is_vf, is_netdev;
int filter_count = 0; int filter_count = 0;
is_vf = (vsi->type == I40E_VSI_SRIOV);
is_netdev = !!(netdev);
/* Locked once because all functions invoked below iterates list */ /* Locked once because all functions invoked below iterates list */
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
if (is_netdev) if (vsi->netdev)
i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev); i40e_del_filter(vsi, netdev->dev_addr, vid);
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev); i40e_del_filter(vsi, f->macaddr, vid);
/* go through all the filters for this VSI and if there is only /* go through all the filters for this VSI and if there is only
* vid == 0 it means there are no other filters, so vid 0 must * vid == 0 it means there are no other filters, so vid 0 must
...@@ -2438,7 +2350,7 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2438,7 +2350,7 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
* on accept any traffic (with any tag present, or untagged) * on accept any traffic (with any tag present, or untagged)
*/ */
list_for_each_entry(f, &vsi->mac_filter_list, list) { list_for_each_entry(f, &vsi->mac_filter_list, list) {
if (is_netdev) { if (vsi->netdev) {
if (f->vlan && if (f->vlan &&
ether_addr_equal(netdev->dev_addr, f->macaddr)) ether_addr_equal(netdev->dev_addr, f->macaddr))
filter_count++; filter_count++;
...@@ -2448,10 +2360,9 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2448,10 +2360,9 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
filter_count++; filter_count++;
} }
if (!filter_count && is_netdev) { if (!filter_count && vsi->netdev) {
i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev); i40e_del_filter(vsi, netdev->dev_addr, 0);
f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY, f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY);
is_vf, is_netdev);
if (!f) { if (!f) {
dev_info(&vsi->back->pdev->dev, dev_info(&vsi->back->pdev->dev,
"Could not add filter %d for %pM\n", "Could not add filter %d for %pM\n",
...@@ -2463,9 +2374,8 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid) ...@@ -2463,9 +2374,8 @@ int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
if (!filter_count) { if (!filter_count) {
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev); i40e_del_filter(vsi, f->macaddr, 0);
add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY, add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY);
is_vf, is_netdev);
if (!add_f) { if (!add_f) {
dev_info(&vsi->back->pdev->dev, dev_info(&vsi->back->pdev->dev,
"Could not add filter %d for %pM\n", "Could not add filter %d for %pM\n",
...@@ -9155,7 +9065,7 @@ static int i40e_config_netdev(struct i40e_vsi *vsi) ...@@ -9155,7 +9065,7 @@ static int i40e_config_netdev(struct i40e_vsi *vsi)
SET_NETDEV_DEV(netdev, &pf->pdev->dev); SET_NETDEV_DEV(netdev, &pf->pdev->dev);
ether_addr_copy(mac_addr, hw->mac.perm_addr); ether_addr_copy(mac_addr, hw->mac.perm_addr);
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true); i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY);
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
} else { } else {
/* relate the VSI_VMDQ name to the VSI_MAIN name */ /* relate the VSI_VMDQ name to the VSI_MAIN name */
...@@ -9164,7 +9074,7 @@ static int i40e_config_netdev(struct i40e_vsi *vsi) ...@@ -9164,7 +9074,7 @@ static int i40e_config_netdev(struct i40e_vsi *vsi)
random_ether_addr(mac_addr); random_ether_addr(mac_addr);
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false); i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY);
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
} }
...@@ -9525,8 +9435,7 @@ int i40e_vsi_release(struct i40e_vsi *vsi) ...@@ -9525,8 +9435,7 @@ int i40e_vsi_release(struct i40e_vsi *vsi)
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
i40e_del_filter(vsi, f->macaddr, f->vlan, i40e_del_filter(vsi, f->macaddr, f->vlan);
f->is_vf, f->is_netdev);
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
i40e_sync_vsi_filters(vsi); i40e_sync_vsi_filters(vsi);
......
...@@ -689,8 +689,8 @@ static int i40e_alloc_vsi_res(struct i40e_vf *vf, enum i40e_vsi_type type) ...@@ -689,8 +689,8 @@ static int i40e_alloc_vsi_res(struct i40e_vf *vf, enum i40e_vsi_type type)
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
if (is_valid_ether_addr(vf->default_lan_addr.addr)) { if (is_valid_ether_addr(vf->default_lan_addr.addr)) {
f = i40e_add_filter(vsi, vf->default_lan_addr.addr, f = i40e_add_filter(vsi, vf->default_lan_addr.addr,
vf->port_vlan_id ? vf->port_vlan_id : -1, vf->port_vlan_id ?
true, false); vf->port_vlan_id : -1);
if (!f) if (!f)
dev_info(&pf->pdev->dev, dev_info(&pf->pdev->dev,
"Could not add MAC filter %pM for VF %d\n", "Could not add MAC filter %pM for VF %d\n",
...@@ -1933,14 +1933,12 @@ static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen) ...@@ -1933,14 +1933,12 @@ static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
for (i = 0; i < al->num_elements; i++) { for (i = 0; i < al->num_elements; i++) {
struct i40e_mac_filter *f; struct i40e_mac_filter *f;
f = i40e_find_mac(vsi, al->list[i].addr, true, false); f = i40e_find_mac(vsi, al->list[i].addr);
if (!f) { if (!f) {
if (i40e_is_vsi_in_vlan(vsi)) if (i40e_is_vsi_in_vlan(vsi))
f = i40e_put_mac_in_vlan(vsi, al->list[i].addr, f = i40e_put_mac_in_vlan(vsi, al->list[i].addr);
true, false);
else else
f = i40e_add_filter(vsi, al->list[i].addr, -1, f = i40e_add_filter(vsi, al->list[i].addr, -1);
true, false);
} }
if (!f) { if (!f) {
...@@ -2006,7 +2004,7 @@ static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen) ...@@ -2006,7 +2004,7 @@ static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
spin_lock_bh(&vsi->mac_filter_list_lock); spin_lock_bh(&vsi->mac_filter_list_lock);
/* delete addresses from the list */ /* delete addresses from the list */
for (i = 0; i < al->num_elements; i++) for (i = 0; i < al->num_elements; i++)
if (i40e_del_mac_all_vlan(vsi, al->list[i].addr, true, false)) { if (i40e_del_mac_all_vlan(vsi, al->list[i].addr)) {
ret = I40E_ERR_INVALID_MAC_ADDR; ret = I40E_ERR_INVALID_MAC_ADDR;
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
goto error_param; goto error_param;
...@@ -2722,14 +2720,13 @@ int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac) ...@@ -2722,14 +2720,13 @@ int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
/* delete the temporary mac address */ /* delete the temporary mac address */
if (!is_zero_ether_addr(vf->default_lan_addr.addr)) if (!is_zero_ether_addr(vf->default_lan_addr.addr))
i40e_del_filter(vsi, vf->default_lan_addr.addr, i40e_del_filter(vsi, vf->default_lan_addr.addr,
vf->port_vlan_id ? vf->port_vlan_id : -1, vf->port_vlan_id ? vf->port_vlan_id : -1);
true, false);
/* Delete all the filters for this VSI - we're going to kill it /* Delete all the filters for this VSI - we're going to kill it
* anyway. * anyway.
*/ */
list_for_each_entry(f, &vsi->mac_filter_list, list) list_for_each_entry(f, &vsi->mac_filter_list, list)
i40e_del_filter(vsi, f->macaddr, f->vlan, true, false); i40e_del_filter(vsi, f->macaddr, f->vlan);
spin_unlock_bh(&vsi->mac_filter_list_lock); spin_unlock_bh(&vsi->mac_filter_list_lock);
......
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