flow: Make size of flow struct a multiple of 8.
authorJesse Gross <jesse@nicira.com>
Sun, 12 Dec 2010 01:31:36 +0000 (17:31 -0800)
committerJesse Gross <jesse@nicira.com>
Mon, 13 Dec 2010 19:07:15 +0000 (11:07 -0800)
commitdd2cb550e56ddc937b917e29a5ccdb920787c7ef
tree53e755fdc1be1f271bba1fc52530171a5237a113
parent40796b34abcf5ecda6b5283961ed26e28f7ae32e
flow: Make size of flow struct a multiple of 8.

The compiler wants to pad structures to a multiple of the native
datatype for the architecture, so a multiple of 4 on 32-bit platforms
and a multiple of 8 on 64-bit.  Currently the size struct flow is
a multiple of 4, so the total size with padding varies depending on
the architecture, causing build asserts to fail.  This explicitly pads
it out to a multiple of 8 for consistency.
lib/flow.h