module: add symbol-name to pr_debug Absolute symbol
authorJim Cromie <jim.cromie@gmail.com>
Wed, 22 Mar 2023 01:36:21 +0000 (19:36 -0600)
committerLuis Chamberlain <mcgrof@kernel.org>
Fri, 24 Mar 2023 18:33:09 +0000 (11:33 -0700)
The pr_debug("Absolute symbol" ..) reports value, (which is usually
0), but not the name, which is more informative.  So add it.

no functional changes

Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
kernel/module/main.c

index 3bea679837e0697ff27ca59aa7f25b6d346ad5fa..6567d5a156ae74c98ec75cc1142375a10338a64c 100644 (file)
@@ -1394,8 +1394,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: