Re: [PATCH v2 0/6] Reduce scope address-of-packed-member warning

2024-10-30 Thread David Marchand
On Fri, Oct 25, 2024 at 6:51 PM Bruce Richardson wrote: > > The warning for address-of-packed-member was being disabled globally in > DPDK. While for drivers which need to access hardware-defined > data-structures the use of packed may make sense, for normal libs and > applications the use of pac

Re: [PATCH v2 0/6] Reduce scope address-of-packed-member warning

2024-10-28 Thread fengchengwen
LGTM Series-acked-by: Chengwen Feng On 2024/10/26 0:50, Bruce Richardson wrote: > The warning for address-of-packed-member was being disabled globally in > DPDK. While for drivers which need to access hardware-defined > data-structures the use of packed may make sense, for normal libs and > appl

[PATCH v2 0/6] Reduce scope address-of-packed-member warning

2024-10-25 Thread Bruce Richardson
The warning for address-of-packed-member was being disabled globally in DPDK. While for drivers which need to access hardware-defined data-structures the use of packed may make sense, for normal libs and applications the use of packed data should be generally avoided. This patchset initially appl