Port range struct is currently union so the last min/max port assignment
wins, and kernel doesn't receive the range.
Change it to struct type.
Fixes: 2bf6ffb76ac6 ("netdev-offload-tc: Add conntrack nat support")
Signed-off-by: Paul Blakey <[email protected]>
---
lib/tc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/tc.h b/lib/tc.h
index d31c095..24a4994 100644
--- a/lib/tc.h
+++ b/lib/tc.h
@@ -235,7 +235,7 @@ struct tc_action {
} ipv6;
};
- union {
+ struct {
ovs_be16 min;
ovs_be16 max;
} port;
--
1.8.3.1
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev