Re: [ovs-dev] [PATCH v5 1/2] Widen TCP flags handling.

2013-10-24 Thread Jarno Rajahalme
On Oct 23, 2013, at 6:27 PM, Jesse Gross wrote: > On Wed, Oct 23, 2013 at 10:24 AM, Jarno Rajahalme > wrote: >> Widen TCP flags handling from 7 bits (uint8_t) to 12 bits (uint16_t). >> The kernel interface remains at 8 bits, which makes no functional >> difference now, as none of the higher bit

Re: [ovs-dev] [PATCH v5 1/2] Widen TCP flags handling.

2013-10-23 Thread Jesse Gross
On Wed, Oct 23, 2013 at 10:24 AM, Jarno Rajahalme wrote: > Widen TCP flags handling from 7 bits (uint8_t) to 12 bits (uint16_t). > The kernel interface remains at 8 bits, which makes no functional > difference now, as none of the higher bits is currently of interest > to the userspace. > > Signed-

[ovs-dev] [PATCH v5 1/2] Widen TCP flags handling.

2013-10-23 Thread Jarno Rajahalme
Widen TCP flags handling from 7 bits (uint8_t) to 12 bits (uint16_t). The kernel interface remains at 8 bits, which makes no functional difference now, as none of the higher bits is currently of interest to the userspace. Signed-off-by: Jarno Rajahalme --- v3-v5: Rebase v2: Address Ben's review