mbox series

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

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

Message

Ales Musil Dec. 15, 2022, 7:29 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                           |   5 +
 include/openflow/nicira-ext.h  |  30 +++
 include/openvswitch/ofp-msgs.h |   4 +
 include/openvswitch/ofp-util.h |  32 +++
 lib/automake.mk                |   2 +
 lib/ct-dpif.c                  | 208 +++++++--------
 lib/ct-dpif.h                  |   4 +-
 lib/dpctl.c                    |  42 ++-
 lib/dpctl.man                  |   3 +-
 lib/ofp-bundle.c               |   1 +
 lib/ofp-ct-util.c              | 472 +++++++++++++++++++++++++++++++++
 lib/ofp-ct-util.h              |  45 ++++
 lib/ofp-print.c                |  20 ++
 lib/ofp-util.c                 |  25 ++
 lib/rconn.c                    |   1 +
 ofproto/ofproto-dpif.c         |   8 +-
 ofproto/ofproto-provider.h     |   7 +-
 ofproto/ofproto.c              |  30 ++-
 tests/ofp-print.at             |  93 +++++++
 tests/ovs-ofctl.at             |  26 ++
 tests/system-traffic.at        | 132 +++++++--
 utilities/ovs-ofctl.c          |  38 +++
 22 files changed, 1056 insertions(+), 172 deletions(-)
 create mode 100644 lib/ofp-ct-util.c
 create mode 100644 lib/ofp-ct-util.h