aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_packet_internal.h
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2014-06-25 17:35:00 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-06-26 21:43:15 +0400
commit17317a758132ac9996eeed2c90c1b2477da99d57 (patch)
tree9b9ba1198af53207ef2ce1a1a7e6eecca5017619 /platform/linux-generic/include/odp_packet_internal.h
parent0e683f99047f78f78202b2bc54326c4a500e86ab (diff)
Buffer header C99 compliance and cleanup
Fixed C99 compliance bug in buffer header (removed the empty array). Cleaned and harmonized buffer pool implementation for different buffer types. Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org>
Diffstat (limited to 'platform/linux-generic/include/odp_packet_internal.h')
-rw-r--r--platform/linux-generic/include/odp_packet_internal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/platform/linux-generic/include/odp_packet_internal.h b/platform/linux-generic/include/odp_packet_internal.h
index eb978a3e9..45ed41254 100644
--- a/platform/linux-generic/include/odp_packet_internal.h
+++ b/platform/linux-generic/include/odp_packet_internal.h
@@ -115,11 +115,10 @@ typedef struct {
odp_pktio_t input;
uint32_t pad;
- uint8_t payload[];
-
+ uint8_t buf_data[]; /* start of buffer data area */
} odp_packet_hdr_t;
-ODP_ASSERT(sizeof(odp_packet_hdr_t) == ODP_OFFSETOF(odp_packet_hdr_t, payload),
+ODP_ASSERT(sizeof(odp_packet_hdr_t) == ODP_OFFSETOF(odp_packet_hdr_t, buf_data),
ODP_PACKET_HDR_T__SIZE_ERR);
ODP_ASSERT(sizeof(odp_packet_hdr_t) % sizeof(uint64_t) == 0,
ODP_PACKET_HDR_T__SIZE_ERR2);