The structure "efd_online_group_entry" only consists of values which are typedefs of "uint16_t", so packing the structure has no effect. The "efd_online_chunk" structure has a mix of "uint8_t" and the "efd_online_group_entry" struct, i.e. uint16_t values, but since the first, uint8_t, member array is of even size, the packed attribute does not affect the structure layout.
Removing these packed attributes allows the library to compile cleanly without "-Wno-address-of-packed-member" compiler flag. Signed-off-by: Bruce Richardson <bruce.richard...@intel.com> Acked-by: Stephen Hemminger <step...@networkplumber.org> Acked-by: Morten Brørup <m...@smartsharesystems.com> --- lib/efd/rte_efd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/efd/rte_efd.c b/lib/efd/rte_efd.c index d3b732f2e8..3cbb3c2719 100644 --- a/lib/efd/rte_efd.c +++ b/lib/efd/rte_efd.c @@ -212,7 +212,7 @@ struct efd_offline_chunk_rules { struct efd_online_group_entry { efd_hashfunc_t hash_idx[RTE_EFD_VALUE_NUM_BITS]; efd_lookuptbl_t lookup_table[RTE_EFD_VALUE_NUM_BITS]; -} __rte_packed; +}; /** * A single chunk record, containing EFD_TARGET_CHUNK_NUM_RULES rules. @@ -228,7 +228,7 @@ struct efd_online_chunk { struct efd_online_group_entry groups[EFD_CHUNK_NUM_GROUPS]; /**< Array of all the groups in the chunk. */ -} __rte_packed; +}; /** * EFD table structure -- 2.43.0