]> git.baikalelectronics.ru Git - kernel.git/commit
ipv6: ioam: Support for Queue depth data field
authorJustin Iurman <justin.iurman@uliege.be>
Thu, 30 Dec 2021 17:10:04 +0000 (18:10 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sun, 2 Jan 2022 12:15:13 +0000 (12:15 +0000)
commit326259c56d241f2b25f99417a62b889fb74d909f
tree22410c8686e4ee68979570674380cad64f90f99c
parent0ec3ca706fab2d146e38dda89de0afc89c194583
ipv6: ioam: Support for Queue depth data field

v3:
 - Report 'backlog' (bytes) instead of 'qlen' (number of packets)

v2:
 - Fix sparse warning (use rcu_dereference)

This patch adds support for the queue depth in IOAM trace data fields.

The draft [1] says the following:

   The "queue depth" field is a 4-octet unsigned integer field.  This
   field indicates the current length of the egress interface queue of
   the interface from where the packet is forwarded out.  The queue
   depth is expressed as the current amount of memory buffers used by
   the queue (a packet could consume one or more memory buffers,
   depending on its size).

An existing function (i.e., qdisc_qstats_qlen_backlog) is used to
retrieve the current queue length without reinventing the wheel.

Note: it was tested and qlen is increasing when an artificial delay is
added on the egress with tc.

  [1] https://datatracker.ietf.org/doc/html/draft-ietf-ippm-ioam-data#section-5.4.2.7

Signed-off-by: Justin Iurman <justin.iurman@uliege.be>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ioam6.c