Hi, On Mon, Jan 24, 2022 at 1:22 AM Christophe Leroy <christophe.leroy@xxxxxxxxxx> wrote: > > --- a/kernel/debug/kdb/kdb_main.c > +++ b/kernel/debug/kdb/kdb_main.c > @@ -2022,8 +2022,11 @@ static int kdb_lsmod(int argc, const char **argv) > if (mod->state == MODULE_STATE_UNFORMED) > continue; > > - kdb_printf("%-20s%8u 0x%px ", mod->name, > - mod->core_layout.size, (void *)mod); > + kdb_printf("%-20s%8u", mod->name, mod->core_layout.size); > +#ifdef CONFIG_ARCH_WANTS_MODULES_DATA_IN_VMALLOC > + kdb_printf("/%8u 0x%px ", mod->data_layout.size); Just counting percentages and arguments, it seems like something's wrong in the above print statement. -Doug