diff options
Diffstat (limited to 'scripts/gdb/linux/modules.py')
-rw-r--r-- | scripts/gdb/linux/modules.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/gdb/linux/modules.py b/scripts/gdb/linux/modules.py index 25db8cff44a2..0a35d6dbfb80 100644 --- a/scripts/gdb/linux/modules.py +++ b/scripts/gdb/linux/modules.py | |||
@@ -73,10 +73,11 @@ class LxLsmod(gdb.Command): | |||
73 | " " if utils.get_long_type().sizeof == 8 else "")) | 73 | " " if utils.get_long_type().sizeof == 8 else "")) |
74 | 74 | ||
75 | for module in module_list(): | 75 | for module in module_list(): |
76 | layout = module['core_layout'] | ||
76 | gdb.write("{address} {name:<19} {size:>8} {ref}".format( | 77 | gdb.write("{address} {name:<19} {size:>8} {ref}".format( |
77 | address=str(module['module_core']).split()[0], | 78 | address=str(layout['base']).split()[0], |
78 | name=module['name'].string(), | 79 | name=module['name'].string(), |
79 | size=str(module['core_size']), | 80 | size=str(layout['size']), |
80 | ref=str(module['refcnt']['counter']))) | 81 | ref=str(module['refcnt']['counter']))) |
81 | 82 | ||
82 | source_list = module['source_list'] | 83 | source_list = module['source_list'] |