diff options
author | Vijayabhaskar Katamreddy <vkatamre@cisco.com> | 2019-06-28 12:59:23 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-06-28 23:07:40 +0000 |
commit | e3bbf5b565132515800dc4e7a137875d9865a5a6 (patch) | |
tree | 2e07e229c4690311f77f04fd4074596b5be635d2 /src/vnet/interface.h | |
parent | cb54e3cd7f0a2a6c61852bcef104c5e732f270a5 (diff) |
interface: fixes for buliding for 32bit targets
* structure alignment and padding issues
Type: fix
Change-Id: Ic7c2a8cb5a5526902463f3b4d2d93284b454ab6f
Signed-off-by: Vijayabhaskar Katamreddy <vkatamre@cisco.com>
Diffstat (limited to 'src/vnet/interface.h')
-rw-r--r-- | src/vnet/interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/interface.h b/src/vnet/interface.h index 72a93269175..d5497f5cc91 100644 --- a/src/vnet/interface.h +++ b/src/vnet/interface.h @@ -805,8 +805,8 @@ typedef struct typedef struct { + CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); u32 *split_buffers; - u32 padding[14]; } vnet_interface_per_thread_data_t; typedef struct |