Add support for conntrack states in OVS flow #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Linux 4.3.0 introduces support for conntrack states in OVS flow. It
breaks compatibility with weave causing errors and lack of connectivity
between containers:
Error while listening on ODP datapath: unknown flow key type 22 (value
[0 0 0 0])
Missing flow key is OVS_KEY_ATTR_CT_STATE, which in fact is 32-bit
value representing connection state pulled from conntrack. More details
are available at lkml commit topic https://lkml.org/lkml/2015/7/30/661
Although this patch solved problems for me, I'm not 100% convinced
whether this is proper solution, as spent only little time on research.
It may be treated as reminder about upcoming changes though.