mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 22:53:55 +08:00
net: hns3: Resume promisc mode and vlan filter status after loopback test
This patch resumes promisc mode and vlan filter status after
loopback test.
Fixes: 3b75c3df59
("net: hns3: net: hns3: Add support for IFF_ALLMULTI flag")
Signed-off-by: Jian Shen <shenjian15@huawei.com>
Signed-off-by: Salil Mehta <salil.mehta@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7325523ab6
commit
829edbd8d4
@ -71,6 +71,7 @@ struct hns3_link_mode_mapping {
|
||||
static int hns3_lp_setup(struct net_device *ndev, enum hnae3_loop loop, bool en)
|
||||
{
|
||||
struct hnae3_handle *h = hns3_get_handle(ndev);
|
||||
bool vlan_filter_enable;
|
||||
int ret;
|
||||
|
||||
if (!h->ae_algo->ops->set_loopback ||
|
||||
@ -91,7 +92,14 @@ static int hns3_lp_setup(struct net_device *ndev, enum hnae3_loop loop, bool en)
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
h->ae_algo->ops->set_promisc_mode(h, en, en);
|
||||
if (en) {
|
||||
h->ae_algo->ops->set_promisc_mode(h, true, true);
|
||||
} else {
|
||||
/* recover promisc mode before loopback test */
|
||||
hns3_update_promisc_mode(ndev, h->netdev_flags);
|
||||
vlan_filter_enable = ndev->flags & IFF_PROMISC ? false : true;
|
||||
hns3_enable_vlan_filter(ndev, vlan_filter_enable);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user