Re: [ovs-dev] [PATCHv2 2/2] ofproto-dpif-xlate: Fix bitwise ops on ct_labels.

2016-03-30 Thread Ben Pfaff
On Thu, Mar 31, 2016 at 12:21:14AM +1300, Joe Stringer wrote: > Using the action ct(commit,set_field:0x1/0x1->ct_label), ie, specifying > a mask, would previously overwrite the entire ct_labels field rather than > modifying only the specified bits. Fix the issue. > > Fixes: 9daf23484fb1 ("Add conn

[ovs-dev] [PATCHv2 2/2] ofproto-dpif-xlate: Fix bitwise ops on ct_labels.

2016-03-30 Thread Joe Stringer
Using the action ct(commit,set_field:0x1/0x1->ct_label), ie, specifying a mask, would previously overwrite the entire ct_labels field rather than modifying only the specified bits. Fix the issue. Fixes: 9daf23484fb1 ("Add connection tracking label support.") Signed-off-by: Joe Stringer --- v2: Re