On Wed, Nov 11, 2020 at 7:29 PM Marco Elver <elver@xxxxxxxxxx> wrote: > > > +#include <linux/init.h> > > +#include <linux/jump_label.h> > > This should include <linux/static_key.h> -- although the rest of the > kernel seems to also inconsistently use on or the other. Since the name, > as referred to also by macros are "static keys", perhaps the > static_key.h header is more appropriate... Will fix. > > +enum kasan_arg_stacktrace { > > + KASAN_ARG_STACKTRACE_DEFAULT, > > It seems KASAN_ARG_STACKTRACE_DEFAULT is never used explicitly. Could > the switch statements just be changed to not have a 'default' but > instead refer to *DEFAULT where appropriate? We need to either cover all cases explicitly, or use default in each switch, otherwise there's a warning. I guess covering everything explicitly is a better approach, in case more values are added in the future, as we'll get warnings for those if they aren't covered in switches. Will do.