mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 13:23:35 -04:00
i40e/i40evf: fix poll weight
Fix a coding error where during the registration for NAPI the driver requested 256 budget. The max recommended value for this is NAPI_POLL_WEIGHT or 64. Change-ID: I03ea1e2934a84ff1b5d572988b18315d6d91c5c6 Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
committed by
Jeff Kirsher
parent
980093ebf7
commit
eefeacee77
@@ -6255,7 +6255,7 @@ static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
|
||||
cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
|
||||
if (vsi->netdev)
|
||||
netif_napi_add(vsi->netdev, &q_vector->napi,
|
||||
i40e_napi_poll, vsi->work_limit);
|
||||
i40e_napi_poll, NAPI_POLL_WEIGHT);
|
||||
|
||||
q_vector->rx.latency_range = I40E_LOW_LATENCY;
|
||||
q_vector->tx.latency_range = I40E_LOW_LATENCY;
|
||||
|
||||
@@ -1169,7 +1169,7 @@ static int i40evf_alloc_q_vectors(struct i40evf_adapter *adapter)
|
||||
q_vector->vsi = &adapter->vsi;
|
||||
q_vector->v_idx = q_idx;
|
||||
netif_napi_add(adapter->netdev, &q_vector->napi,
|
||||
i40evf_napi_poll, 64);
|
||||
i40evf_napi_poll, NAPI_POLL_WEIGHT);
|
||||
adapter->q_vector[q_idx] = q_vector;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user