summaryrefslogtreecommitdiff
path: root/kernel/module/main.c
diff options
context:
space:
mode:
authorJim Cromie <jim.cromie@gmail.com>2023-03-21 19:36:20 -0600
committerLuis Chamberlain <mcgrof@kernel.org>2023-03-24 11:33:09 -0700
commit6ed81802d4d1b037ad2d1657511ff0c2e9aeda14 (patch)
treed5168b1844bb661e2c85519de1bb2a4058438ce2 /kernel/module/main.c
parent25be451aa4c0e9a96c59a626ab0e93d5cb7f6f48 (diff)
module: in layout_sections, move_module: add the modname
layout_sections() and move_module() each issue ~50 messages for each module loaded. Add mod-name into their 2 header lines, to help the reader find his module. no functional changes. Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/module/main.c')
-rw-r--r--kernel/module/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/module/main.c b/kernel/module/main.c
index 929644d79d38..3bea679837e0 100644
--- a/kernel/module/main.c
+++ b/kernel/module/main.c
@@ -1567,10 +1567,10 @@ static void layout_sections(struct module *mod, struct load_info *info)
for (i = 0; i < info->hdr->e_shnum; i++)
info->sechdrs[i].sh_entsize = ~0UL;
- pr_debug("Core section allocation order:\n");
+ pr_debug("Core section allocation order for %s:\n", mod->name);
__layout_sections(mod, info, false);
- pr_debug("Init section allocation order:\n");
+ pr_debug("Init section allocation order for %s:\n", mod->name);
__layout_sections(mod, info, true);
}
@@ -2249,7 +2249,7 @@ static int move_module(struct module *mod, struct load_info *info)
}
/* Transfer each section which specifies SHF_ALLOC */
- pr_debug("final section addresses:\n");
+ pr_debug("Final section addresses for %s:\n", mod->name);
for (i = 0; i < info->hdr->e_shnum; i++) {
void *dest;
Elf_Shdr *shdr = &info->sechdrs[i];