mbox series

[ovs-dev,0/2] Add extension for partial CT flush

Message ID 20221020105311.114842-1-amusil@redhat.com
Headers show
Series Add extension for partial CT flush | expand

Message

Ales Musil Oct. 20, 2022, 10:53 a.m. UTC
Add extension that will allow to flush
connection from CT specified by full
orig 5-tuple or partial match that combines
orig or reply direction.

Ales Musil (2):
  ofp, dpif: Allow CT flush based on partial match
  openflow: Add extension to flush CT by generic match

 NEWS                           |   5 +
 include/openflow/nicira-ext.h  |  26 +++
 include/openvswitch/ofp-msgs.h |   4 +
 include/openvswitch/ofp-util.h |  32 +++
 lib/automake.mk                |   2 +
 lib/ct-dpif.c                  | 201 ++++++++-----------
 lib/ct-dpif.h                  |   4 +-
 lib/dpctl.c                    |  14 +-
 lib/dpctl.man                  |   3 +-
 lib/ofp-bundle.c               |   1 +
 lib/ofp-ct-util.c              | 351 +++++++++++++++++++++++++++++++++
 lib/ofp-ct-util.h              |  37 ++++
 lib/ofp-print.c                |  16 ++
 lib/ofp-util.c                 |  36 ++++
 lib/rconn.c                    |   1 +
 ofproto/ofproto-dpif.c         |   8 +-
 ofproto/ofproto-provider.h     |   7 +-
 ofproto/ofproto.c              |  24 ++-
 tests/ofp-print.at             |  71 +++++++
 tests/system-traffic.at        |  80 ++++++++
 20 files changed, 796 insertions(+), 127 deletions(-)
 create mode 100644 lib/ofp-ct-util.c
 create mode 100644 lib/ofp-ct-util.h