[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20210506040019.1322778-3-jim.cromie@gmail.com>
Date: Wed, 5 May 2021 22:00:17 -0600
From: Jim Cromie <jim.cromie@...il.com>
To: Jessica Yu <jeyu@...nel.org>, linux-kernel@...r.kernel.org
Cc: Jim Cromie <jim.cromie@...il.com>
Subject: [PATCH 2/4] module: add symbol-name to pr_debug Absolute symbol
Symbol name is likely to be at least as useful as the value (which is
written, and is usually 0), if one is looking at these messages.
no functional changes
Signed-off-by: Jim Cromie <jim.cromie@...il.com>
---
kernel/module.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/module.c b/kernel/module.c
index af2641b28d73..ab16b8da2555 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2300,8 +2300,8 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
case SHN_ABS:
/* Don't need to do anything */
- pr_debug("Absolute symbol: 0x%08lx\n",
- (long)sym[i].st_value);
+ pr_debug("Absolute symbol: 0x%08lx %s\n",
+ (long)sym[i].st_value, name);
break;
case SHN_LIVEPATCH:
--
2.30.2
Powered by blists - more mailing lists