Re: [PATCH 00/15] fix packing of structs when building with MSVC

2024-03-21 Thread Tyler Retzlaff
On Thu, Mar 21, 2024 at 08:32:19AM -0700, Stephen Hemminger wrote: > On Wed, 20 Mar 2024 14:05:56 -0700 > Tyler Retzlaff wrote: > > > MSVC struct packing is not compatible with GCC provide a macro that can > > be used to push existing pack value and sets packing to 1-byte. The > > existing __rte_

Re: [PATCH 00/15] fix packing of structs when building with MSVC

2024-03-21 Thread Stephen Hemminger
On Wed, 20 Mar 2024 14:05:56 -0700 Tyler Retzlaff wrote: > MSVC struct packing is not compatible with GCC provide a macro that can > be used to push existing pack value and sets packing to 1-byte. The > existing __rte_packed macro is then used to restore the pack value > prior to the push. > > I