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

2013-10-01 Thread Jesse Gross
On Fri, Sep 27, 2013 at 3:04 PM, Ben Pfaff wrote: > On Wed, Sep 25, 2013 at 09:42:28AM -0700, 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 highe

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

2013-09-27 Thread Ben Pfaff
On Wed, Sep 25, 2013 at 09:42:28AM -0700, 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. > >

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

2013-09-25 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 --- v2: Address Ben's review comments: - da