diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c index 97a759a8eb02..39e4f35ef0af 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_main.c +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c | |||
@@ -9356,8 +9356,10 @@ static void i40e_print_features(struct i40e_pf *pf) | |||
9356 | #ifdef CONFIG_PCI_IOV | 9356 | #ifdef CONFIG_PCI_IOV |
9357 | buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs); | 9357 | buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs); |
9358 | #endif | 9358 | #endif |
9359 | buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis, | 9359 | buf += sprintf(buf, "VSIs: %d QP: %d RX: %s ", |
9360 | pf->vsi[pf->lan_vsi]->num_queue_pairs); | 9360 | pf->hw.func_caps.num_vsis, |
9361 | pf->vsi[pf->lan_vsi]->num_queue_pairs, | ||
9362 | pf->flags & I40E_FLAG_RX_PS_ENABLED ? "PS" : "1BUF"); | ||
9361 | 9363 | ||
9362 | if (pf->flags & I40E_FLAG_RSS_ENABLED) | 9364 | if (pf->flags & I40E_FLAG_RSS_ENABLED) |
9363 | buf += sprintf(buf, "RSS "); | 9365 | buf += sprintf(buf, "RSS "); |