mbox series

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

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

Message

Ales Musil Jan. 12, 2023, 5:17 p.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                           |   9 +
 include/openflow/nicira-ext.h  |  41 +++
 include/openvswitch/ofp-msgs.h |   4 +
 include/openvswitch/ofp-util.h |  32 +++
 lib/automake.mk                |   2 +
 lib/ct-dpif.c                  | 210 +++++++--------
 lib/ct-dpif.h                  |   4 +-
 lib/dpctl.c                    |  43 ++-
 lib/dpctl.man                  |  15 +-
 lib/ofp-bundle.c               |   1 +
 lib/ofp-ct-util.c              | 477 +++++++++++++++++++++++++++++++++
 lib/ofp-ct-util.h              |  49 ++++
 lib/ofp-print.c                |  20 ++
 lib/ofp-util.c                 |  24 ++
 lib/rconn.c                    |   1 +
 ofproto/ofproto-dpif.c         |   8 +-
 ofproto/ofproto-provider.h     |   7 +-
 ofproto/ofproto.c              |  30 ++-
 tests/ofp-print.at             | 108 ++++++++
 tests/ovs-ofctl.at             |  38 +++
 tests/system-traffic.at        | 120 ++++++++-
 utilities/ovs-ofctl.8.in       |  22 ++
 utilities/ovs-ofctl.c          |  51 ++++
 23 files changed, 1165 insertions(+), 151 deletions(-)
 create mode 100644 lib/ofp-ct-util.c
 create mode 100644 lib/ofp-ct-util.h