On Tue, Jan 18, 2022 at 01:52:51PM +0100, Paolo Bonzini wrote: > On 1/7/22 10:31, Yang Zhong wrote: > >- uint32_t need_align; > >+ uint32_t need_align, support_xfd; > > These can be replaced by a single field "uint32_t ecx". > > You can add also macros like > > #define ESA_FEATURE_ALIGN64_BIT (1) > #define ESA_FEATURE_XFD_BIT (2) > > to simplify access. Thanks Paolo, this is a more simplified solution, thanks!
Yang > Paolo