mbox series

[net-next,0/2] flower add cfm support

Message ID 20230215192554.3126010-1-zahari.doychev@linux.com (mailing list archive)
Headers show
Series flower add cfm support | expand

Message

Zahari Doychev Feb. 15, 2023, 7:25 p.m. UTC
The first patch adds cfm support to the flower classifier. 
The second adds a selftest for the flower cfm functionality.

iproute2 changes will come in follow up patches.

rfc->v1:
 - add selftest to the makefile TEST_PROGS.

Zahari Doychev (2):
  net: flower: add support for matching cfm fields
  selftests: net: add tc flower cfm test

 include/net/flow_dissector.h                  |  11 ++
 include/uapi/linux/pkt_cls.h                  |  12 ++
 net/core/flow_dissector.c                     |  41 +++++
 net/sched/cls_flower.c                        | 118 +++++++++++-
 .../testing/selftests/net/forwarding/Makefile |   1 +
 .../selftests/net/forwarding/tc_flower_cfm.sh | 168 ++++++++++++++++++
 6 files changed, 350 insertions(+), 1 deletion(-)
 create mode 100755 tools/testing/selftests/net/forwarding/tc_flower_cfm.sh

Comments

Alexander Lobakin Feb. 16, 2023, 6:03 p.m. UTC | #1
From: Zahari Doychev <zahari.doychev@linux.com>
Date: Wed, 15 Feb 2023 20:25:52 +0100

> [PATCH net-next 0/2] flower add cfm support

Some badly formed subject here. You likely need this prefix:

net/sched: flower:

and then "add CFM support". i.e. smth like

[PATCH net-next 0/2] net/sched: flower: add cfm support

> The first patch adds cfm support to the flower classifier. 
> The second adds a selftest for the flower cfm functionality.
> 
> iproute2 changes will come in follow up patches.
> 
> rfc->v1:
>  - add selftest to the makefile TEST_PROGS.
> 
> Zahari Doychev (2):
>   net: flower: add support for matching cfm fields
>   selftests: net: add tc flower cfm test
> 
>  include/net/flow_dissector.h                  |  11 ++
>  include/uapi/linux/pkt_cls.h                  |  12 ++
>  net/core/flow_dissector.c                     |  41 +++++
>  net/sched/cls_flower.c                        | 118 +++++++++++-
>  .../testing/selftests/net/forwarding/Makefile |   1 +
>  .../selftests/net/forwarding/tc_flower_cfm.sh | 168 ++++++++++++++++++
>  6 files changed, 350 insertions(+), 1 deletion(-)
>  create mode 100755 tools/testing/selftests/net/forwarding/tc_flower_cfm.sh
> 

Thanks,
Olek