diff options
author | Mitch Williams <mitch.a.williams@intel.com> | 2015-02-06 03:52:17 -0500 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2015-02-25 01:40:24 -0500 |
commit | aba237d12473bb99414fe383ed762272eb900c94 (patch) | |
tree | 58bbdd2c727ede9a93e22350d64bea7943076fee /drivers/net/ethernet/intel/i40e/i40e_main.c | |
parent | ccafbce41b55e6c3726b5b2ee561e1bf6659d279 (diff) |
i40e: print Rx packet split status
Add the RX routine in use to the features log message.
Change-ID: Ifbbf28fb7f42b9a3d2828586488e9e6331107dd5
Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Tested-by: Jim Young <james.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/i40e/i40e_main.c')
-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 "); |