Commit aba237d1 authored by Mitch Williams's avatar Mitch Williams Committed by Jeff Kirsher

i40e: print Rx packet split status

Add the RX routine in use to the features log message.

Change-ID: Ifbbf28fb7f42b9a3d2828586488e9e6331107dd5
Signed-off-by: default avatarMitch Williams <mitch.a.williams@intel.com>
Tested-by: default avatarJim Young <james.m.young@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent ccafbce4
...@@ -9356,8 +9356,10 @@ static void i40e_print_features(struct i40e_pf *pf) ...@@ -9356,8 +9356,10 @@ static void i40e_print_features(struct i40e_pf *pf)
#ifdef CONFIG_PCI_IOV #ifdef CONFIG_PCI_IOV
buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs); buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
#endif #endif
buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis, buf += sprintf(buf, "VSIs: %d QP: %d RX: %s ",
pf->vsi[pf->lan_vsi]->num_queue_pairs); pf->hw.func_caps.num_vsis,
pf->vsi[pf->lan_vsi]->num_queue_pairs,
pf->flags & I40E_FLAG_RX_PS_ENABLED ? "PS" : "1BUF");
if (pf->flags & I40E_FLAG_RSS_ENABLED) if (pf->flags & I40E_FLAG_RSS_ENABLED)
buf += sprintf(buf, "RSS "); buf += sprintf(buf, "RSS ");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment