On Fri, Apr 21, 2023, at 11:19, Marco Elver wrote: > > Does it work with Clang? I tested successfully with clang-16, but did not try other versions so far. > I don't mind either way, but the custom kasan_size_t change seems to > just be needed to workaround the subtle inconsistency in type > definition, but in reality there should never be a problem. I'd rather > the KASAN code just uses normal kernel types and we just make the > compiler be quiet about it. Let me double-check, I think I may have made a mistake here, and using the normal ssize_t (but not size_t) just works right. It looks like I confused the size_t definition with something else, so this hack may not be needed after all. I've changed it again now and will give it another overnight test run on the randconfig setup. > To do that, another option is -Wno-builtin-declaration-mismatch for > mm/kasan/ which just shuts up the compiler, and allows us to keep the > code as-is. Does it have any downsides? I think the warning is useful in principle, at least it makes it more likely to catch bugs if the prototypes ever change, and to validate that things like __asan_allocas_unpoison() that I mentioned are actually intentional. Arnd