* [PATCH] i40e: print correct hw max rss count in kernel ring buffer
@ 2024-01-19 13:16 Suresh Kumar
2024-01-19 14:49 ` Simon Horman
0 siblings, 1 reply; 2+ messages in thread
From: Suresh Kumar @ 2024-01-19 13:16 UTC (permalink / raw)
To: jesse.brandeburg, anthony.l.nguyen, davem, edumazet, kuba, pabeni,
intel-wired-lan, netdev, linux-kernel
Cc: Suresh Kumar
The value printed for "HW max RSS count" is wrong in kernel dmesg for i40e
NICs:
... i40e 0000:63:00.0: User requested queue count/HW max RSS count: 48/64
whereas ethtool reports the correct value from "vsi->num_queue_pairs"
Channel parameters for eno33:
Pre-set maximums:
RX: n/a
TX: n/a
Other: 1
Combined: 96
Current hardware settings:
RX: n/a
TX: n/a
Other: 1
Combined: 96 <-------
and is misleading.
This value is printed from 'pf->rss_size_max' which seems hardcoded.
Below commit also removed this 64 limit:
Commit e56afa599609d3afe8b0ce24b553ab95e9782502
Author: Amritha Nambiar <amritha.nambiar@intel.com>
Date: Wed Nov 8 16:38:43 2017 -0800
i40e: Remove limit of 64 max queues per channel
Signed-off-by: Suresh Kumar <suresh2514@gmail.com>
---
drivers/net/ethernet/intel/i40e/i40e_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index d5519af34657..f5c1ec190f7e 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -12524,7 +12524,7 @@ int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
i40e_pf_config_rss(pf);
}
dev_info(&pf->pdev->dev, "User requested queue count/HW max RSS count: %d/%d\n",
- vsi->req_queue_pairs, pf->rss_size_max);
+ vsi->req_queue_pairs, vsi->num_queue_pairs);
return pf->alloc_rss_size;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] i40e: print correct hw max rss count in kernel ring buffer
2024-01-19 13:16 [PATCH] i40e: print correct hw max rss count in kernel ring buffer Suresh Kumar
@ 2024-01-19 14:49 ` Simon Horman
0 siblings, 0 replies; 2+ messages in thread
From: Simon Horman @ 2024-01-19 14:49 UTC (permalink / raw)
To: Suresh Kumar
Cc: jesse.brandeburg, anthony.l.nguyen, davem, edumazet, kuba, pabeni,
intel-wired-lan, netdev, linux-kernel
On Fri, Jan 19, 2024 at 06:46:52PM +0530, Suresh Kumar wrote:
> The value printed for "HW max RSS count" is wrong in kernel dmesg for i40e
> NICs:
>
> ... i40e 0000:63:00.0: User requested queue count/HW max RSS count: 48/64
>
> whereas ethtool reports the correct value from "vsi->num_queue_pairs"
>
> Channel parameters for eno33:
> Pre-set maximums:
> RX: n/a
> TX: n/a
> Other: 1
> Combined: 96
> Current hardware settings:
> RX: n/a
> TX: n/a
> Other: 1
> Combined: 96 <-------
>
> and is misleading.
>
> This value is printed from 'pf->rss_size_max' which seems hardcoded.
>
> Below commit also removed this 64 limit:
>
> Commit e56afa599609d3afe8b0ce24b553ab95e9782502
> Author: Amritha Nambiar <amritha.nambiar@intel.com>
> Date: Wed Nov 8 16:38:43 2017 -0800
>
> i40e: Remove limit of 64 max queues per channel
Hi Suresh,
I think it would be more normal to cite this commit something like this:
The limit of 64 was removed by
commit e56afa599609 ("i40e: Remove limit of 64 max queues per channel")
Also, it's not clear to me if this should be considered a fix or not.
If not, which I lean towards, then it should probably be targeted
at iwl-next.
Subject: [PATCH iwl-next] ...
If it is a fix, then it should have a Fixes tag and probably
be targeted at iwl.
Subject: [PATCH iwl] ...
...
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-19 14:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-19 13:16 [PATCH] i40e: print correct hw max rss count in kernel ring buffer Suresh Kumar
2024-01-19 14:49 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).