{
        u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
        struct i40e_netdev_priv *np = netdev_priv(netdev);
+       bool allmulti = false, alluni = false;
        struct i40e_pf *pf = np->vsi->back;
        struct i40e_vsi *vsi;
        struct i40e_vf *vf;
        }
 
        spin_unlock_bh(&vsi->mac_filter_hash_lock);
+
+       /* disable promisc modes in case they were enabled */
+       ret = i40e_config_vf_promiscuous_mode(vf, vf->lan_vsi_id,
+                                             allmulti, alluni);
+       if (ret) {
+               dev_err(&pf->pdev->dev, "Unable to config VF promiscuous mode\n");
+               goto error_pvid;
+       }
+
        if (vlan_id || qos)
                ret = i40e_vsi_add_pvid(vsi, vlanprio);
        else
 
        spin_unlock_bh(&vsi->mac_filter_hash_lock);
 
+       if (test_bit(I40E_VF_STATE_UC_PROMISC, &vf->vf_states))
+               alluni = true;
+
+       if (test_bit(I40E_VF_STATE_MC_PROMISC, &vf->vf_states))
+               allmulti = true;
+
        /* Schedule the worker thread to take care of applying changes */
        i40e_service_event_schedule(vsi->back);
 
         * default LAN MAC address.
         */
        vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
+
+       ret = i40e_config_vf_promiscuous_mode(vf, vsi->id, allmulti, alluni);
+       if (ret) {
+               dev_err(&pf->pdev->dev, "Unable to config vf promiscuous mode\n");
+               goto error_pvid;
+       }
+
        ret = 0;
 
 error_pvid: