Skip to content

Commit 7359608

Browse files
stefano-garzarellatorvalds
authored andcommitted
scripts/gdb: fix lx-symbols 'gdb.error' while loading modules
Commit ed66f99 ("module: Refactor section attr into bin attribute") removed the 'name' field from 'struct module_sect_attr' triggering the following error when invoking lx-symbols: (gdb) lx-symbols loading vmlinux scanning for modules in linux/build loading @0xffffffffc014f000: linux/build/drivers/net/tun.ko Python Exception <class 'gdb.error'> There is no member named name.: Error occurred in Python: There is no member named name. This patch fixes the issue taking the module name from the 'struct attribute'. Fixes: ed66f99 ("module: Refactor section attr into bin attribute") Signed-off-by: Stefano Garzarella <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Reviewed-by: Jan Kiszka <[email protected]> Reviewed-by: Kieran Bingham <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Linus Torvalds <[email protected]>
1 parent bb97153 commit 7359608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gdb/linux/symbols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _section_arguments(self, module):
9696
return ""
9797
attrs = sect_attrs['attrs']
9898
section_name_to_address = {
99-
attrs[n]['name'].string(): attrs[n]['address']
99+
attrs[n]['battr']['attr']['name'].string(): attrs[n]['address']
100100
for n in range(int(sect_attrs['nsections']))}
101101
args = []
102102
for section_name in [".data", ".data..read_mostly", ".rodata", ".bss",

0 commit comments

Comments
 (0)