On Fri, 21 Mar 2025 15:32:00 +0800 Bingbin Chen <chen.bingbin at zte.com.cn> wrote: > + > +#define BUILD_BUG_ON(condition) do { \ > + if (condition) \ > + __builtin_unreachable(); \ > + } while (0) > + This should be using static_assert() please send a follow up patch.