From 2575df07f6410c7b2903e38c0a2cd29fa402303f Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Tue, 18 Jul 2017 22:55:35 -0700 Subject: [PATCH] dpif-netdev: Indicate support for various ct features. The userspace datapath uses a structure to indicate supported features that affects debug output. This commit updates that structure to indicate that "ct_state_nat", "ct_orig_tuple", and "ct_orig_tuple6" are supported. Signed-off-by: Justin Pettit Acked-by: Darrell Ball --- lib/dpif-netdev.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c index 8d909dea5..47a9fa0c5 100644 --- a/lib/dpif-netdev.c +++ b/lib/dpif-netdev.c @@ -112,6 +112,9 @@ static struct odp_support dp_netdev_support = { .ct_zone = true, .ct_mark = true, .ct_label = true, + .ct_state_nat = true, + .ct_orig_tuple = true, + .ct_orig_tuple6 = true, }; /* Stores a miniflow with inline values */