mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 08:33:17 +02:00
ice: Change number of XDP TxQ to 0 when destroying rings
When XDP Tx rings are destroyed the number of XDP Tx queues is not changing. This patch is changing this number to 0. Signed-off-by: Marta Plantykow <marta.a.plantykow@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
b5c7f857e5
commit
c8f135c6ee
|
|
@ -1899,6 +1899,9 @@ int ice_destroy_xdp_rings(struct ice_vsi *vsi)
|
|||
for (i = 0; i < vsi->tc_cfg.numtc; i++)
|
||||
max_txqs[i] = vsi->num_txq;
|
||||
|
||||
/* change number of XDP Tx queues to 0 */
|
||||
vsi->num_xdp_txq = 0;
|
||||
|
||||
return ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
|
||||
max_txqs);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user