DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] doc: update TAP device features
@ 2024-09-04 15:42 Stephen Hemminger
  2024-10-04  1:48 ` Ferruh Yigit
  0 siblings, 1 reply; 15+ messages in thread
From: Stephen Hemminger @ 2024-09-04 15:42 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

The TAP device does have per-queue stats and handles multi-process.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 doc/guides/nics/features/tap.ini | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
index f26355e57f..f2ea5cd833 100644
--- a/doc/guides/nics/features/tap.ini
+++ b/doc/guides/nics/features/tap.ini
@@ -14,10 +14,12 @@ Basic stats          = Y
 L3 checksum offload  = Y
 L4 checksum offload  = Y
 MTU update           = Y
+Multiprocess aware   = Y
 Multicast MAC filter = Y
 Unicast MAC filter   = Y
 Packet type parsing  = Y
 Flow control         = Y
+Stats per queue      = Y
 Linux                = Y
 ARMv7                = Y
 ARMv8                = Y
-- 
2.45.2


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-09-04 15:42 [PATCH] doc: update TAP device features Stephen Hemminger
@ 2024-10-04  1:48 ` Ferruh Yigit
  2024-10-04  2:26   ` Stephen Hemminger
  2024-10-04 20:48   ` [PATCH] doc: update TAP device features Stephen Hemminger
  0 siblings, 2 replies; 15+ messages in thread
From: Ferruh Yigit @ 2024-10-04  1:48 UTC (permalink / raw)
  To: Stephen Hemminger, dev

On 9/4/2024 4:42 PM, Stephen Hemminger wrote:
> The TAP device does have per-queue stats and handles multi-process.
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  doc/guides/nics/features/tap.ini | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
> index f26355e57f..f2ea5cd833 100644
> --- a/doc/guides/nics/features/tap.ini
> +++ b/doc/guides/nics/features/tap.ini
> @@ -14,10 +14,12 @@ Basic stats          = Y
>  L3 checksum offload  = Y
>  L4 checksum offload  = Y
>  MTU update           = Y
> +Multiprocess aware   = Y
>

ack

>  Multicast MAC filter = Y
>  Unicast MAC filter   = Y
>  Packet type parsing  = Y
>  Flow control         = Y
> +Stats per queue      = Y
>

This feature name is misleading,
it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
indeed for covering limitation for some drivers.
Tap does support getting stats per queue, but doesn't support above
documented feature.

>  Linux                = Y
>  ARMv7                = Y
>  ARMv8                = Y


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04  1:48 ` Ferruh Yigit
@ 2024-10-04  2:26   ` Stephen Hemminger
  2024-10-04  4:09     ` Ferruh Yigit
  2024-10-04 20:48   ` [PATCH] doc: update TAP device features Stephen Hemminger
  1 sibling, 1 reply; 15+ messages in thread
From: Stephen Hemminger @ 2024-10-04  2:26 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

On Fri, 4 Oct 2024 02:48:21 +0100
Ferruh Yigit <ferruh.yigit@amd.com> wrote:

> On 9/4/2024 4:42 PM, Stephen Hemminger wrote:
> > The TAP device does have per-queue stats and handles multi-process.
> > 
> > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> > ---
> >  doc/guides/nics/features/tap.ini | 2 ++
> >  1 file changed, 2 insertions(+)
> > 
> > diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
> > index f26355e57f..f2ea5cd833 100644
> > --- a/doc/guides/nics/features/tap.ini
> > +++ b/doc/guides/nics/features/tap.ini
> > @@ -14,10 +14,12 @@ Basic stats          = Y
> >  L3 checksum offload  = Y
> >  L4 checksum offload  = Y
> >  MTU update           = Y
> > +Multiprocess aware   = Y
> >  
> 
> ack
> 
> >  Multicast MAC filter = Y
> >  Unicast MAC filter   = Y
> >  Packet type parsing  = Y
> >  Flow control         = Y
> > +Stats per queue      = Y
> >  
> 
> This feature name is misleading,
> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
> indeed for covering limitation for some drivers.
> Tap does support getting stats per queue, but doesn't support above
> documented feature.

The stats queue mapping was a feature that was hinted at being removed.
It only exists because of HW limitations on Intel ixgbe NIC and SW
limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.

Perhaps there should be a generic SW emulation for this the mapping?

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04  2:26   ` Stephen Hemminger
@ 2024-10-04  4:09     ` Ferruh Yigit
  2024-10-04  7:54       ` Bruce Richardson
  0 siblings, 1 reply; 15+ messages in thread
From: Ferruh Yigit @ 2024-10-04  4:09 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev, Bruce Richardson

On 10/4/2024 3:26 AM, Stephen Hemminger wrote:
> On Fri, 4 Oct 2024 02:48:21 +0100
> Ferruh Yigit <ferruh.yigit@amd.com> wrote:
> 
>> On 9/4/2024 4:42 PM, Stephen Hemminger wrote:
>>> The TAP device does have per-queue stats and handles multi-process.
>>>
>>> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>>> ---
>>>  doc/guides/nics/features/tap.ini | 2 ++
>>>  1 file changed, 2 insertions(+)
>>>
>>> diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
>>> index f26355e57f..f2ea5cd833 100644
>>> --- a/doc/guides/nics/features/tap.ini
>>> +++ b/doc/guides/nics/features/tap.ini
>>> @@ -14,10 +14,12 @@ Basic stats          = Y
>>>  L3 checksum offload  = Y
>>>  L4 checksum offload  = Y
>>>  MTU update           = Y
>>> +Multiprocess aware   = Y
>>>  
>>
>> ack
>>
>>>  Multicast MAC filter = Y
>>>  Unicast MAC filter   = Y
>>>  Packet type parsing  = Y
>>>  Flow control         = Y
>>> +Stats per queue      = Y
>>>  
>>
>> This feature name is misleading,
>> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
>> indeed for covering limitation for some drivers.
>> Tap does support getting stats per queue, but doesn't support above
>> documented feature.
> 
> The stats queue mapping was a feature that was hinted at being removed.
> It only exists because of HW limitations on Intel ixgbe NIC and SW
> limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
> 


We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving queue
stats to xstats.

But ixgbe limitation is there.

> Perhaps there should be a generic SW emulation for this the mapping?
>

Ack, cc'ed Bruce.
But I am not sure ROI of the effort at this stage.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04  4:09     ` Ferruh Yigit
@ 2024-10-04  7:54       ` Bruce Richardson
  2024-10-04 15:24         ` Stephen Hemminger
  2024-10-04 17:26         ` Ferruh Yigit
  0 siblings, 2 replies; 15+ messages in thread
From: Bruce Richardson @ 2024-10-04  7:54 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Stephen Hemminger, dev

On Fri, Oct 04, 2024 at 05:09:21AM +0100, Ferruh Yigit wrote:
> On 10/4/2024 3:26 AM, Stephen Hemminger wrote:
> > On Fri, 4 Oct 2024 02:48:21 +0100
> > Ferruh Yigit <ferruh.yigit@amd.com> wrote:
> > 
> >> On 9/4/2024 4:42 PM, Stephen Hemminger wrote:
> >>> The TAP device does have per-queue stats and handles multi-process.
> >>>
> >>> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> >>> ---
> >>>  doc/guides/nics/features/tap.ini | 2 ++
> >>>  1 file changed, 2 insertions(+)
> >>>
> >>> diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
> >>> index f26355e57f..f2ea5cd833 100644
> >>> --- a/doc/guides/nics/features/tap.ini
> >>> +++ b/doc/guides/nics/features/tap.ini
> >>> @@ -14,10 +14,12 @@ Basic stats          = Y
> >>>  L3 checksum offload  = Y
> >>>  L4 checksum offload  = Y
> >>>  MTU update           = Y
> >>> +Multiprocess aware   = Y
> >>>  
> >>
> >> ack
> >>
> >>>  Multicast MAC filter = Y
> >>>  Unicast MAC filter   = Y
> >>>  Packet type parsing  = Y
> >>>  Flow control         = Y
> >>> +Stats per queue      = Y
> >>>  
> >>
> >> This feature name is misleading,
> >> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
> >> indeed for covering limitation for some drivers.
> >> Tap does support getting stats per queue, but doesn't support above
> >> documented feature.
> > 
> > The stats queue mapping was a feature that was hinted at being removed.
> > It only exists because of HW limitations on Intel ixgbe NIC and SW
> > limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
> > 
> 
> 
> We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving queue
> stats to xstats.
> 
> But ixgbe limitation is there.
> 
> > Perhaps there should be a generic SW emulation for this the mapping?
> >
> 
> Ack, cc'ed Bruce.
> But I am not sure ROI of the effort at this stage.

Not sure what the specific ask for me is here. :-) Overall, I think moving
queue stats to xstats is the best way to go.

/Bruce

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04  7:54       ` Bruce Richardson
@ 2024-10-04 15:24         ` Stephen Hemminger
  2024-10-04 17:26         ` Ferruh Yigit
  1 sibling, 0 replies; 15+ messages in thread
From: Stephen Hemminger @ 2024-10-04 15:24 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: Ferruh Yigit, dev

On Fri, 4 Oct 2024 08:54:43 +0100
Bruce Richardson <bruce.richardson@intel.com> wrote:

> On Fri, Oct 04, 2024 at 05:09:21AM +0100, Ferruh Yigit wrote:
> > On 10/4/2024 3:26 AM, Stephen Hemminger wrote:  
> > > On Fri, 4 Oct 2024 02:48:21 +0100
> > > Ferruh Yigit <ferruh.yigit@amd.com> wrote:
> > >   
> > >> On 9/4/2024 4:42 PM, Stephen Hemminger wrote:  
> > >>> The TAP device does have per-queue stats and handles multi-process.
> > >>>
> > >>> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> > >>> ---
> > >>>  doc/guides/nics/features/tap.ini | 2 ++
> > >>>  1 file changed, 2 insertions(+)
> > >>>
> > >>> diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
> > >>> index f26355e57f..f2ea5cd833 100644
> > >>> --- a/doc/guides/nics/features/tap.ini
> > >>> +++ b/doc/guides/nics/features/tap.ini
> > >>> @@ -14,10 +14,12 @@ Basic stats          = Y
> > >>>  L3 checksum offload  = Y
> > >>>  L4 checksum offload  = Y
> > >>>  MTU update           = Y
> > >>> +Multiprocess aware   = Y
> > >>>    
> > >>
> > >> ack
> > >>  
> > >>>  Multicast MAC filter = Y
> > >>>  Unicast MAC filter   = Y
> > >>>  Packet type parsing  = Y
> > >>>  Flow control         = Y
> > >>> +Stats per queue      = Y
> > >>>    
> > >>
> > >> This feature name is misleading,
> > >> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
> > >> indeed for covering limitation for some drivers.
> > >> Tap does support getting stats per queue, but doesn't support above
> > >> documented feature.  
> > > 
> > > The stats queue mapping was a feature that was hinted at being removed.
> > > It only exists because of HW limitations on Intel ixgbe NIC and SW
> > > limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
> > >   
> > 
> > 
> > We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving queue
> > stats to xstats.
> > 
> > But ixgbe limitation is there.
> >   
> > > Perhaps there should be a generic SW emulation for this the mapping?
> > >  
> > 
> > Ack, cc'ed Bruce.
> > But I am not sure ROI of the effort at this stage.  
> 
> Not sure what the specific ask for me is here. :-) Overall, I think moving
> queue stats to xstats is the best way to go.
> 
> /Bruce

The problem is that xstats are free form, so it is not possible for application
to use them in device independent manner.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04  7:54       ` Bruce Richardson
  2024-10-04 15:24         ` Stephen Hemminger
@ 2024-10-04 17:26         ` Ferruh Yigit
  2024-10-04 20:40           ` Per queue stats Stephen Hemminger
  1 sibling, 1 reply; 15+ messages in thread
From: Ferruh Yigit @ 2024-10-04 17:26 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: Stephen Hemminger, dev

On 10/4/2024 8:54 AM, Bruce Richardson wrote:
> On Fri, Oct 04, 2024 at 05:09:21AM +0100, Ferruh Yigit wrote:
>> On 10/4/2024 3:26 AM, Stephen Hemminger wrote:
>>> On Fri, 4 Oct 2024 02:48:21 +0100
>>> Ferruh Yigit <ferruh.yigit@amd.com> wrote:
>>>
>>>> On 9/4/2024 4:42 PM, Stephen Hemminger wrote:
>>>>> The TAP device does have per-queue stats and handles multi-process.
>>>>>
>>>>> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>>>>> ---
>>>>>  doc/guides/nics/features/tap.ini | 2 ++
>>>>>  1 file changed, 2 insertions(+)
>>>>>
>>>>> diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/features/tap.ini
>>>>> index f26355e57f..f2ea5cd833 100644
>>>>> --- a/doc/guides/nics/features/tap.ini
>>>>> +++ b/doc/guides/nics/features/tap.ini
>>>>> @@ -14,10 +14,12 @@ Basic stats          = Y
>>>>>  L3 checksum offload  = Y
>>>>>  L4 checksum offload  = Y
>>>>>  MTU update           = Y
>>>>> +Multiprocess aware   = Y
>>>>>  
>>>>
>>>> ack
>>>>
>>>>>  Multicast MAC filter = Y
>>>>>  Unicast MAC filter   = Y
>>>>>  Packet type parsing  = Y
>>>>>  Flow control         = Y
>>>>> +Stats per queue      = Y
>>>>>  
>>>>
>>>> This feature name is misleading,
>>>> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
>>>> indeed for covering limitation for some drivers.
>>>> Tap does support getting stats per queue, but doesn't support above
>>>> documented feature.
>>>
>>> The stats queue mapping was a feature that was hinted at being removed.
>>> It only exists because of HW limitations on Intel ixgbe NIC and SW
>>> limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
>>>
>>
>>
>> We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving queue
>> stats to xstats.
>>
>> But ixgbe limitation is there.
>>
>>> Perhaps there should be a generic SW emulation for this the mapping?
>>>
>>
>> Ack, cc'ed Bruce.
>> But I am not sure ROI of the effort at this stage.
> 
> Not sure what the specific ask for me is here. :-) Overall, I think moving
> queue stats to xstats is the best way to go.
> 

cc'ed because of "generic SW emulation" comment.

I was thinking if this mapping can be done transparent to the user by
driver mapping queue <-> stats_register before reading stats, but @Bruce
let me know this won't work because the stats tracking only happens
after the mapping.

@Stephen, do you have something specific in your mind for SW emulation
for mapping?


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Per queue stats
  2024-10-04 17:26         ` Ferruh Yigit
@ 2024-10-04 20:40           ` Stephen Hemminger
  2024-10-06 20:51             ` Ferruh Yigit
  0 siblings, 1 reply; 15+ messages in thread
From: Stephen Hemminger @ 2024-10-04 20:40 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Bruce Richardson, dev

...
> >>> The stats queue mapping was a feature that was hinted at being removed.
> >>> It only exists because of HW limitations on Intel ixgbe NIC and SW
> >>> limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
> >>>  
> >>
> >>
> >> We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving queue
> >> stats to xstats.
> >>
> >> But ixgbe limitation is there.
> >>  
> >>> Perhaps there should be a generic SW emulation for this the mapping?
> >>>  
> >>
> >> Ack, cc'ed Bruce.
> >> But I am not sure ROI of the effort at this stage.  
> > 
> > Not sure what the specific ask for me is here. :-) Overall, I think moving
> > queue stats to xstats is the best way to go.
> >   
> 
> cc'ed because of "generic SW emulation" comment.
> 
> I was thinking if this mapping can be done transparent to the user by
> driver mapping queue <-> stats_register before reading stats, but @Bruce
> let me know this won't work because the stats tracking only happens
> after the mapping.
> 
> @Stephen, do you have something specific in your mind for SW emulation
> for mapping?

Probably not worth doing mapping tables for SW drivers.

My preference would be something like:
	1. Introduce new API's rte_ethdev_get_queue_stats() and rte_ethdev_reset_queue_stats().
           with callbacks in ethdev ops.
           if driver does not support this, then do a shim in ethdev that uses old stats fields.
        2. Mark the stats mapping API's as deprecated and always return error.
           Making special case for ixgbe at this point really is not worth maintaining.
        3. After all drivers converted over, drop the fields in ethdev stats for queues.
           And fix the examples, etc. Yes this would be a big API change.

Would take a year to get done (ie 25.11).

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04  1:48 ` Ferruh Yigit
  2024-10-04  2:26   ` Stephen Hemminger
@ 2024-10-04 20:48   ` Stephen Hemminger
  2024-10-06 20:36     ` Ferruh Yigit
  1 sibling, 1 reply; 15+ messages in thread
From: Stephen Hemminger @ 2024-10-04 20:48 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

On Fri, 4 Oct 2024 02:48:21 +0100
Ferruh Yigit <ferruh.yigit@amd.com> wrote:

> > +Stats per queue      = Y
> >  
> 
> This feature name is misleading,
> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
> indeed for covering limitation for some drivers.
> Tap does support getting stats per queue, but doesn't support above
> documented feature.

Just looked and the current state of the feature matrix is not correct
for this part of the table. Although the feature intro says it is
stats per queue mapping, that is not what other drivers are doing.

Only these drivers have queue_stats_mapping_set:
  cnxk, enic, igc, ixgbe, txgbe, virtio

These drivers claim to have 'Stats per queue' but do not have stats mapping:
  af_xdp, ark, atlantic, avp, bnxt, cxgbe, failsafe, fm10, hinic, hns3,
  ionic, mlx4, mlx5, netvsc, nfb, nfp, ngbe, qede, thunderx, vmxnet3

So the overwhelming practice is that the features.rst description is wrong!

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-04 20:48   ` [PATCH] doc: update TAP device features Stephen Hemminger
@ 2024-10-06 20:36     ` Ferruh Yigit
  2024-10-09 16:53       ` Stephen Hemminger
  0 siblings, 1 reply; 15+ messages in thread
From: Ferruh Yigit @ 2024-10-06 20:36 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

On 10/4/2024 9:48 PM, Stephen Hemminger wrote:
> On Fri, 4 Oct 2024 02:48:21 +0100
> Ferruh Yigit <ferruh.yigit@amd.com> wrote:
> 
>>> +Stats per queue      = Y
>>>  
>>
>> This feature name is misleading,
>> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
>> indeed for covering limitation for some drivers.
>> Tap does support getting stats per queue, but doesn't support above
>> documented feature.
> 
> Just looked and the current state of the feature matrix is not correct
> for this part of the table. Although the feature intro says it is
> stats per queue mapping, that is not what other drivers are doing.
> 
> Only these drivers have queue_stats_mapping_set:
>   cnxk, enic, igc, ixgbe, txgbe, virtio
> 
> These drivers claim to have 'Stats per queue' but do not have stats mapping:
>   af_xdp, ark, atlantic, avp, bnxt, cxgbe, failsafe, fm10, hinic, hns3,
>   ionic, mlx4, mlx5, netvsc, nfb, nfp, ngbe, qede, thunderx, vmxnet3
> 
> So the overwhelming practice is that the features.rst description is wrong!
>

You are right.

What about update the 'features.rst', and extend the definition of
'Stats per queue' mapping + queue stats in basic stats or extended stats.
This will be make name of the feature more intuitive.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Per queue stats
  2024-10-04 20:40           ` Per queue stats Stephen Hemminger
@ 2024-10-06 20:51             ` Ferruh Yigit
  2024-10-08  9:58               ` Morten Brørup
  0 siblings, 1 reply; 15+ messages in thread
From: Ferruh Yigit @ 2024-10-06 20:51 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Bruce Richardson, dev, Thomas Monjalon

On 10/4/2024 9:40 PM, Stephen Hemminger wrote:
> ...
>>>>> The stats queue mapping was a feature that was hinted at being removed.
>>>>> It only exists because of HW limitations on Intel ixgbe NIC and SW
>>>>> limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
>>>>>  
>>>>
>>>>
>>>> We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving queue
>>>> stats to xstats.
>>>>
>>>> But ixgbe limitation is there.
>>>>  
>>>>> Perhaps there should be a generic SW emulation for this the mapping?
>>>>>  
>>>>
>>>> Ack, cc'ed Bruce.
>>>> But I am not sure ROI of the effort at this stage.  
>>>
>>> Not sure what the specific ask for me is here. :-) Overall, I think moving
>>> queue stats to xstats is the best way to go.
>>>   
>>
>> cc'ed because of "generic SW emulation" comment.
>>
>> I was thinking if this mapping can be done transparent to the user by
>> driver mapping queue <-> stats_register before reading stats, but @Bruce
>> let me know this won't work because the stats tracking only happens
>> after the mapping.
>>
>> @Stephen, do you have something specific in your mind for SW emulation
>> for mapping?
> 
> Probably not worth doing mapping tables for SW drivers.
> 
> My preference would be something like:
> 	1. Introduce new API's rte_ethdev_get_queue_stats() and rte_ethdev_reset_queue_stats().
>            with callbacks in ethdev ops.
>            if driver does not support this, then do a shim in ethdev that uses old stats fields.
>         2. Mark the stats mapping API's as deprecated and always return error.
>            Making special case for ixgbe at this point really is not worth maintaining.
>         3. After all drivers converted over, drop the fields in ethdev stats for queues.
>            And fix the examples, etc. Yes this would be a big API change.
> 
> Would take a year to get done (ie 25.11).
>

The problem with existing a API, 'rte_eth_stats_get()', is it has queue
stats fixed sized array which limits us also for some cases causes
unnecessary memory consumption.

Our solution for now is move queue stats to xstats, as it is flexible
this solves the problem, but as you said in other thread xstats is free
form and may be hard for the application to use it.

One option is we can add some more data to the xstats, to help
application to consume it easier, like number of queues just before the
queue stats and define queue stats formatting syntax.

But if we will go with API option, instead of adding new queue stats
('rte_ethdev_get_queue_stats()'), we can update the existing
'rte_eth_stats_get()' to return dynamic number of queue stats.

And we need to find someone to own this task.


Above is for queue stats, it does not solve the mapping issue, as we
need it for a few drivers and we already have the APIs, I am for just
keeping them as it is, they are not causing any burden to us.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* RE: Per queue stats
  2024-10-06 20:51             ` Ferruh Yigit
@ 2024-10-08  9:58               ` Morten Brørup
  2024-10-08 10:04                 ` Bruce Richardson
  0 siblings, 1 reply; 15+ messages in thread
From: Morten Brørup @ 2024-10-08  9:58 UTC (permalink / raw)
  To: Ferruh Yigit, Stephen Hemminger; +Cc: Bruce Richardson, dev, Thomas Monjalon

> From: Ferruh Yigit [mailto:ferruh.yigit@amd.com]
> Sent: Sunday, 6 October 2024 22.51
> 
> On 10/4/2024 9:40 PM, Stephen Hemminger wrote:
> > ...
> >>>>> The stats queue mapping was a feature that was hinted at being
> removed.
> >>>>> It only exists because of HW limitations on Intel ixgbe NIC and
> SW
> >>>>> limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
> >>>>>
> >>>>
> >>>>
> >>>> We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving
> queue
> >>>> stats to xstats.
> >>>>
> >>>> But ixgbe limitation is there.
> >>>>
> >>>>> Perhaps there should be a generic SW emulation for this the
> mapping?
> >>>>>
> >>>>
> >>>> Ack, cc'ed Bruce.
> >>>> But I am not sure ROI of the effort at this stage.
> >>>
> >>> Not sure what the specific ask for me is here. :-) Overall, I think
> moving
> >>> queue stats to xstats is the best way to go.
> >>>
> >>
> >> cc'ed because of "generic SW emulation" comment.
> >>
> >> I was thinking if this mapping can be done transparent to the user
> by
> >> driver mapping queue <-> stats_register before reading stats, but
> @Bruce
> >> let me know this won't work because the stats tracking only happens
> >> after the mapping.
> >>
> >> @Stephen, do you have something specific in your mind for SW
> emulation
> >> for mapping?
> >
> > Probably not worth doing mapping tables for SW drivers.
> >
> > My preference would be something like:
> > 	1. Introduce new API's rte_ethdev_get_queue_stats() and
> rte_ethdev_reset_queue_stats().
> >            with callbacks in ethdev ops.
> >            if driver does not support this, then do a shim in ethdev
> that uses old stats fields.
> >         2. Mark the stats mapping API's as deprecated and always
> return error.
> >            Making special case for ixgbe at this point really is not
> worth maintaining.
> >         3. After all drivers converted over, drop the fields in
> ethdev stats for queues.
> >            And fix the examples, etc. Yes this would be a big API
> change.
> >
> > Would take a year to get done (ie 25.11).
> >
> 
> The problem with existing a API, 'rte_eth_stats_get()', is it has queue
> stats fixed sized array which limits us also for some cases causes
> unnecessary memory consumption.
> 
> Our solution for now is move queue stats to xstats, as it is flexible
> this solves the problem, but as you said in other thread xstats is free
> form and may be hard for the application to use it.
> 
> One option is we can add some more data to the xstats, to help
> application to consume it easier, like number of queues just before the
> queue stats and define queue stats formatting syntax.
> 
> But if we will go with API option, instead of adding new queue stats
> ('rte_ethdev_get_queue_stats()'), we can update the existing
> 'rte_eth_stats_get()' to return dynamic number of queue stats.

Some users might not care about queue stats, so let's remove them entirely from rte_eth_stats_get(), and put them elsewhere.

> 
> And we need to find someone to own this task.
> 
> 
> Above is for queue stats, it does not solve the mapping issue, as we
> need it for a few drivers and we already have the APIs, I am for just
> keeping them as it is, they are not causing any burden to us.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Per queue stats
  2024-10-08  9:58               ` Morten Brørup
@ 2024-10-08 10:04                 ` Bruce Richardson
  0 siblings, 0 replies; 15+ messages in thread
From: Bruce Richardson @ 2024-10-08 10:04 UTC (permalink / raw)
  To: Morten Brørup; +Cc: Ferruh Yigit, Stephen Hemminger, dev, Thomas Monjalon

On Tue, Oct 08, 2024 at 11:58:37AM +0200, Morten Brørup wrote:
> > From: Ferruh Yigit [mailto:ferruh.yigit@amd.com]
> > Sent: Sunday, 6 October 2024 22.51
> > 
> > On 10/4/2024 9:40 PM, Stephen Hemminger wrote:
> > > ...
> > >>>>> The stats queue mapping was a feature that was hinted at being
> > removed.
> > >>>>> It only exists because of HW limitations on Intel ixgbe NIC and
> > SW
> > >>>>> limitations from RTE_ETHDEV_QUEUE_STAT_CNTRS.
> > >>>>>
> > >>>>
> > >>>>
> > >>>> We have a plan to remove 'RTE_ETHDEV_QUEUE_STAT_CNTRS', by moving
> > queue
> > >>>> stats to xstats.
> > >>>>
> > >>>> But ixgbe limitation is there.
> > >>>>
> > >>>>> Perhaps there should be a generic SW emulation for this the
> > mapping?
> > >>>>>
> > >>>>
> > >>>> Ack, cc'ed Bruce.
> > >>>> But I am not sure ROI of the effort at this stage.
> > >>>
> > >>> Not sure what the specific ask for me is here. :-) Overall, I think
> > moving
> > >>> queue stats to xstats is the best way to go.
> > >>>
> > >>
> > >> cc'ed because of "generic SW emulation" comment.
> > >>
> > >> I was thinking if this mapping can be done transparent to the user
> > by
> > >> driver mapping queue <-> stats_register before reading stats, but
> > @Bruce
> > >> let me know this won't work because the stats tracking only happens
> > >> after the mapping.
> > >>
> > >> @Stephen, do you have something specific in your mind for SW
> > emulation
> > >> for mapping?
> > >
> > > Probably not worth doing mapping tables for SW drivers.
> > >
> > > My preference would be something like:
> > > 	1. Introduce new API's rte_ethdev_get_queue_stats() and
> > rte_ethdev_reset_queue_stats().
> > >            with callbacks in ethdev ops.
> > >            if driver does not support this, then do a shim in ethdev
> > that uses old stats fields.
> > >         2. Mark the stats mapping API's as deprecated and always
> > return error.
> > >            Making special case for ixgbe at this point really is not
> > worth maintaining.
> > >         3. After all drivers converted over, drop the fields in
> > ethdev stats for queues.
> > >            And fix the examples, etc. Yes this would be a big API
> > change.
> > >
> > > Would take a year to get done (ie 25.11).
> > >
> > 
> > The problem with existing a API, 'rte_eth_stats_get()', is it has queue
> > stats fixed sized array which limits us also for some cases causes
> > unnecessary memory consumption.
> > 
> > Our solution for now is move queue stats to xstats, as it is flexible
> > this solves the problem, but as you said in other thread xstats is free
> > form and may be hard for the application to use it.
> > 
> > One option is we can add some more data to the xstats, to help
> > application to consume it easier, like number of queues just before the
> > queue stats and define queue stats formatting syntax.
> > 
> > But if we will go with API option, instead of adding new queue stats
> > ('rte_ethdev_get_queue_stats()'), we can update the existing
> > 'rte_eth_stats_get()' to return dynamic number of queue stats.
> 
> Some users might not care about queue stats, so let's remove them entirely from rte_eth_stats_get(), and put them elsewhere.
> 
+1 for this. I think separate APIs for queue stats would make more sense.

/Bruce

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-06 20:36     ` Ferruh Yigit
@ 2024-10-09 16:53       ` Stephen Hemminger
  2024-10-09 23:21         ` Ferruh Yigit
  0 siblings, 1 reply; 15+ messages in thread
From: Stephen Hemminger @ 2024-10-09 16:53 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

On Sun, 6 Oct 2024 21:36:31 +0100
Ferruh Yigit <ferruh.yigit@amd.com> wrote:

> On 10/4/2024 9:48 PM, Stephen Hemminger wrote:
> > On Fri, 4 Oct 2024 02:48:21 +0100
> > Ferruh Yigit <ferruh.yigit@amd.com> wrote:
> >   
> >>> +Stats per queue      = Y
> >>>    
> >>
> >> This feature name is misleading,
> >> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
> >> indeed for covering limitation for some drivers.
> >> Tap does support getting stats per queue, but doesn't support above
> >> documented feature.  
> > 
> > Just looked and the current state of the feature matrix is not correct
> > for this part of the table. Although the feature intro says it is
> > stats per queue mapping, that is not what other drivers are doing.
> > 
> > Only these drivers have queue_stats_mapping_set:
> >   cnxk, enic, igc, ixgbe, txgbe, virtio
> > 
> > These drivers claim to have 'Stats per queue' but do not have stats mapping:
> >   af_xdp, ark, atlantic, avp, bnxt, cxgbe, failsafe, fm10, hinic, hns3,
> >   ionic, mlx4, mlx5, netvsc, nfb, nfp, ngbe, qede, thunderx, vmxnet3
> > 
> > So the overwhelming practice is that the features.rst description is wrong!
> >  
> 
> You are right.
> 
> What about update the 'features.rst', and extend the definition of
> 'Stats per queue' mapping + queue stats in basic stats or extended stats.
> This will be make name of the feature more intuitive.

Like this?

diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst
index cd0115ffb3..a351d7b3b5 100644
--- a/doc/guides/nics/features.rst
+++ b/doc/guides/nics/features.rst
@@ -727,8 +727,6 @@ Basic stats
 Support basic statistics such as: ipackets, opackets, ibytes, obytes,
 imissed, ierrors, oerrors, rx_nombuf.
 
-And per queue stats: q_ipackets, q_opackets, q_ibytes, q_obytes, q_errors.
-
 These apply to all drivers.
 
 * **[implements] eth_dev_ops**: ``stats_get``, ``stats_reset``.
@@ -754,7 +752,8 @@ Supports Extended Statistics, changes from driver to driver.
 Stats per queue
 ---------------
 
-Supports configuring per-queue stat counter mapping.
+Supports per queue stats: q_ipackets, q_opackets, q_ibytes, q_obytes, q_errors.
+May also support configuring per-queue stat counter mapping.
 
 * **[implements] eth_dev_ops**: ``queue_stats_mapping_set``.
 * **[related]    API**: ``rte_eth_dev_set_rx_queue_stats_mapping()``,

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH] doc: update TAP device features
  2024-10-09 16:53       ` Stephen Hemminger
@ 2024-10-09 23:21         ` Ferruh Yigit
  0 siblings, 0 replies; 15+ messages in thread
From: Ferruh Yigit @ 2024-10-09 23:21 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

On 10/9/2024 5:53 PM, Stephen Hemminger wrote:
> On Sun, 6 Oct 2024 21:36:31 +0100
> Ferruh Yigit <ferruh.yigit@amd.com> wrote:
> 
>> On 10/4/2024 9:48 PM, Stephen Hemminger wrote:
>>> On Fri, 4 Oct 2024 02:48:21 +0100
>>> Ferruh Yigit <ferruh.yigit@amd.com> wrote:
>>>   
>>>>> +Stats per queue      = Y
>>>>>    
>>>>
>>>> This feature name is misleading,
>>>> it is for 'rte_eth_dev_set_[rt]x_queue_stats_mapping()' API, which is
>>>> indeed for covering limitation for some drivers.
>>>> Tap does support getting stats per queue, but doesn't support above
>>>> documented feature.  
>>>
>>> Just looked and the current state of the feature matrix is not correct
>>> for this part of the table. Although the feature intro says it is
>>> stats per queue mapping, that is not what other drivers are doing.
>>>
>>> Only these drivers have queue_stats_mapping_set:
>>>   cnxk, enic, igc, ixgbe, txgbe, virtio
>>>
>>> These drivers claim to have 'Stats per queue' but do not have stats mapping:
>>>   af_xdp, ark, atlantic, avp, bnxt, cxgbe, failsafe, fm10, hinic, hns3,
>>>   ionic, mlx4, mlx5, netvsc, nfb, nfp, ngbe, qede, thunderx, vmxnet3
>>>
>>> So the overwhelming practice is that the features.rst description is wrong!
>>>  
>>
>> You are right.
>>
>> What about update the 'features.rst', and extend the definition of
>> 'Stats per queue' mapping + queue stats in basic stats or extended stats.
>> This will be make name of the feature more intuitive.
> 
> Like this?
> 
> diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst
> index cd0115ffb3..a351d7b3b5 100644
> --- a/doc/guides/nics/features.rst
> +++ b/doc/guides/nics/features.rst
> @@ -727,8 +727,6 @@ Basic stats
>  Support basic statistics such as: ipackets, opackets, ibytes, obytes,
>  imissed, ierrors, oerrors, rx_nombuf.
>  
> -And per queue stats: q_ipackets, q_opackets, q_ibytes, q_obytes, q_errors.
> -
>  These apply to all drivers.
>  
>  * **[implements] eth_dev_ops**: ``stats_get``, ``stats_reset``.
> @@ -754,7 +752,8 @@ Supports Extended Statistics, changes from driver to driver.
>  Stats per queue
>  ---------------
>  
> -Supports configuring per-queue stat counter mapping.
> +Supports per queue stats: q_ipackets, q_opackets, q_ibytes, q_obytes, q_errors.
> +May also support configuring per-queue stat counter mapping.
>  
>  * **[implements] eth_dev_ops**: ``queue_stats_mapping_set``.
>  * **[related]    API**: ``rte_eth_dev_set_rx_queue_stats_mapping()``,
>

Yes, plus 'implements' & 'related' fields needs to be extended.

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2024-10-09 23:21 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-04 15:42 [PATCH] doc: update TAP device features Stephen Hemminger
2024-10-04  1:48 ` Ferruh Yigit
2024-10-04  2:26   ` Stephen Hemminger
2024-10-04  4:09     ` Ferruh Yigit
2024-10-04  7:54       ` Bruce Richardson
2024-10-04 15:24         ` Stephen Hemminger
2024-10-04 17:26         ` Ferruh Yigit
2024-10-04 20:40           ` Per queue stats Stephen Hemminger
2024-10-06 20:51             ` Ferruh Yigit
2024-10-08  9:58               ` Morten Brørup
2024-10-08 10:04                 ` Bruce Richardson
2024-10-04 20:48   ` [PATCH] doc: update TAP device features Stephen Hemminger
2024-10-06 20:36     ` Ferruh Yigit
2024-10-09 16:53       ` Stephen Hemminger
2024-10-09 23:21         ` Ferruh Yigit

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).