On 11/16/21 15:02, Andrey Konovalov wrote: >> --- a/mm/kasan/report.c >> +++ b/mm/kasan/report.c >> @@ -249,7 +249,7 @@ static void print_address_description(void *addr, u8 tag) >> >> if (page && PageSlab(page)) { >> struct kmem_cache *cache = page->slab_cache; >> - void *object = nearest_obj(cache, page, addr); >> + void *object = nearest_obj(cache, page_slab(page), addr); > > The tab before addr should be a space. checkpatch should probably report this. Good catch, thanks. Note the tab is there already before this patch, it just happened to appear identical to a single space before.