diff mbox series

[ovs-dev,2/3] system-common-macros: Check for ct_clear action in datapath

Message ID 20171020182312.12888-3-e@erig.me
State Superseded
Headers show
Series Add dpif support for ct_clear action | expand

Commit Message

Eric Garver Oct. 20, 2017, 6:23 p.m. UTC
New macro OVS_CHECK_CT_CLEAR() to check if ct_clear action is supported
by the datapath.

Signed-off-by: Eric Garver <e@erig.me>
---
 tests/system-common-macros.at | 4 ++++
 1 file changed, 4 insertions(+)

Comments

William Tu Oct. 24, 2017, 7:42 p.m. UTC | #1
On Fri, Oct 20, 2017 at 11:23 AM, Eric Garver <e@erig.me> wrote:
> New macro OVS_CHECK_CT_CLEAR() to check if ct_clear action is supported
> by the datapath.
>
> Signed-off-by: Eric Garver <e@erig.me>
> ---

Looks good to me,
Tested-by: William Tu <u9012063@gmail.com>
diff mbox series

Patch

diff --git a/tests/system-common-macros.at b/tests/system-common-macros.at
index 73ae4829dac4..f7d4adb947a0 100644
--- a/tests/system-common-macros.at
+++ b/tests/system-common-macros.at
@@ -319,3 +319,7 @@  m4_define([OVS_CHECK_8021AD],
 # OVS_CHECK_IPROUTE_ENCAP()
 m4_define([OVS_CHECK_IPROUTE_ENCAP],
     [AT_SKIP_IF([! ip route help 2>&1 |grep encap >/dev/null])])
+
+# OVS_CHECK_CT_CLEAR()
+m4_define([OVS_CHECK_CT_CLEAR],
+    [AT_SKIP_IF([! grep -q "Datapath supports ct_clear action" ovs-vswitchd.log])])