mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-17 06:17:35 +00:00
i40e: Bug fix for FDIR replay logic
The FDIR replay logic was being run a little too soon (before the queues were enabled) and hence the tail bump was not effective till a later transaction happened on the queue. Change-ID: Icfd7cd2e79fc3cae3cbd3f703a2b3a148b4e7bf6 Signed-off-by: Anjali Singhai Jain <anjali.singhai@intel.com> Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com> Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
55a5e60b9f
commit
ca64fa4e7e
@ -2456,8 +2456,6 @@ static int i40e_vsi_configure(struct i40e_vsi *vsi)
|
||||
i40e_set_vsi_rx_mode(vsi);
|
||||
i40e_restore_vlan(vsi);
|
||||
i40e_vsi_config_dcb_rings(vsi);
|
||||
if (vsi->type == I40E_VSI_FDIR)
|
||||
i40e_fdir_filter_restore(vsi);
|
||||
err = i40e_vsi_configure_tx(vsi);
|
||||
if (!err)
|
||||
err = i40e_vsi_configure_rx(vsi);
|
||||
@ -4088,6 +4086,10 @@ static int i40e_up_complete(struct i40e_vsi *vsi)
|
||||
} else if (vsi->netdev) {
|
||||
netdev_info(vsi->netdev, "NIC Link is Down\n");
|
||||
}
|
||||
|
||||
/* replay FDIR SB filters */
|
||||
if (vsi->type == I40E_VSI_FDIR)
|
||||
i40e_fdir_filter_restore(vsi);
|
||||
i40e_service_event_schedule(pf);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user