All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] scripts/gdb: Fix gdb 'lx-symbols' command
@ 2022-07-03  8:46 ` Khalid Masum
  0 siblings, 0 replies; 2+ messages in thread
From: Khalid Masum @ 2022-07-03  8:46 UTC (permalink / raw)
  To: linux-kernel-mentees, linux-fbdev, linux-kernel
  Cc: Pavel Skripkin, Helge Deller, Jan Kiszka, Kieran Bingham

Currently the command 'lx-symbols' in gdb exits with the error`Function
"do_init_module" not defined in "kernel/module.c"`. This occurs because
the file kernel/module.c was moved to kernel/module/main.c.

Fix this breakage by changing the path to "kernel/module/main.c" in
LoadModuleBreakpoint.

Signed-off-by: Khalid Masum <khalid.masum.92@gmail.com>
---
 scripts/gdb/linux/symbols.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/gdb/linux/symbols.py b/scripts/gdb/linux/symbols.py
index 46f7542db08c..dc07b6d12e30 100644
--- a/scripts/gdb/linux/symbols.py
+++ b/scripts/gdb/linux/symbols.py
@@ -180,7 +180,7 @@ lx-symbols command."""
                 self.breakpoint.delete()
                 self.breakpoint = None
             self.breakpoint = LoadModuleBreakpoint(
-                "kernel/module.c:do_init_module", self)
+                "kernel/module/main.c:do_init_module", self)
         else:
             gdb.write("Note: symbol update on module loading not supported "
                       "with this gdb version\n")
-- 
2.36.1

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [RFC PATCH] scripts/gdb: Fix gdb 'lx-symbols' command
@ 2022-07-03  8:46 ` Khalid Masum
  0 siblings, 0 replies; 2+ messages in thread
From: Khalid Masum @ 2022-07-03  8:46 UTC (permalink / raw)
  To: linux-kernel-mentees, linux-fbdev, linux-kernel
  Cc: Shuah Khan, Pavel Skripkin, Helge Deller, Jan Kiszka,
	Kieran Bingham, khalid.masum.92

Currently the command 'lx-symbols' in gdb exits with the error`Function
"do_init_module" not defined in "kernel/module.c"`. This occurs because
the file kernel/module.c was moved to kernel/module/main.c.

Fix this breakage by changing the path to "kernel/module/main.c" in
LoadModuleBreakpoint.

Signed-off-by: Khalid Masum <khalid.masum.92@gmail.com>
---
 scripts/gdb/linux/symbols.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/gdb/linux/symbols.py b/scripts/gdb/linux/symbols.py
index 46f7542db08c..dc07b6d12e30 100644
--- a/scripts/gdb/linux/symbols.py
+++ b/scripts/gdb/linux/symbols.py
@@ -180,7 +180,7 @@ lx-symbols command."""
                 self.breakpoint.delete()
                 self.breakpoint = None
             self.breakpoint = LoadModuleBreakpoint(
-                "kernel/module.c:do_init_module", self)
+                "kernel/module/main.c:do_init_module", self)
         else:
             gdb.write("Note: symbol update on module loading not supported "
                       "with this gdb version\n")
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-07-03  8:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-03  8:46 [RFC PATCH] scripts/gdb: Fix gdb 'lx-symbols' command Khalid Masum
2022-07-03  8:46 ` Khalid Masum

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.