On (21/10/01 09:47), Sergey Senozhatsky wrote: > On (21/09/30 14:21), akpm@xxxxxxxxxxxxxxxxxxxx wrote: > > +++ a/include/linux/kallsyms.h > > @@ -34,8 +34,7 @@ static inline int is_kernel_inittext(uns > > > > static inline int is_kernel_text(unsigned long addr) > > { > > - if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext) || > > - arch_is_kernel_text(addr)) > > + if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext)) > > return 1; > > Does this need to include _etext or should it be '< _etext'? Oh, this is fixed in the next patch.