flow: Fix struct flow size build assertion failure.
authorJesse Gross <jesse@nicira.com>
Wed, 3 Oct 2012 18:29:05 +0000 (11:29 -0700)
committerJesse Gross <jesse@nicira.com>
Wed, 3 Oct 2012 18:29:05 +0000 (11:29 -0700)
commitc97a72ea2ed78ad87b471447e498f7e09c6f7c85
treec3fcae09db9a981c4204bb0d3a83c82367002847
parent296e07ace0ff2d5819ce760d6018ba82d14aa2a8
flow: Fix struct flow size build assertion failure.

The new struct flow_tnl contains an extra four bytes of padding on
64-bit machines but we currently assert that the total struct flow
is a fixed size.  The size difference isn't actually a problem
because both are multiples of 4 and the build assertion is only
intended to remind people to update FLOW_WC_SEQ when new fields are
added.  This changes the assertion to fix just the non-tunnel field
size.

Suggested-by: Ben Pfaff <blp@nicira.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
lib/flow.h