On Thu, 11 Aug 2022 13:20:52 -0700 Luiz Augusto von Dentz wrote: > > +static inline int ba_is_any(const bdaddr_t *ba) > > +{ > > + return memchr_inv(ba, sizeof(*ba), 0); > > +} > > So we can't use something like BDADDR_ANY to compare? Anyway afaik > these were already present before the patch so I do wonder what had > trigger it show now or perhaps it was being suppressed before and > since we change it now start showing again? Yeah, I mentioned that in my previous reply as well, a quick grep counts 70 instances, IDK what makes the l2cap code different :S Then again I don't know how the compiler deals with passing a pointer to a constant to an inline function.... so I figured memchr_inv() could help us avoid hitting compiler bugs.