diff options
| author | Linus Torvalds <[email protected]> | 2015-07-01 17:47:51 -0700 | 
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2015-07-01 17:47:51 -0700 | 
| commit | 2d01eedf1d14432f4db5388a49dc5596a8c5bd02 (patch) | |
| tree | 646525acc0475b2899827c1bfbd25f05ec1b8092 /scripts/gdb/linux/symbols.py | |
| parent | 6ac15baacb6ecd87c66209627753b96ded3b4515 (diff) | |
| parent | abdd4a7025282fbe3737e1bcb5f51afc8d8ea1b8 (diff) | |
Merge branch 'akpm' (patches from Andrew)
Merge third patchbomb from Andrew Morton:
 - the rest of MM
 - scripts/gdb updates
 - ipc/ updates
 - lib/ updates
 - MAINTAINERS updates
 - various other misc things
* emailed patches from Andrew Morton <[email protected]>: (67 commits)
  genalloc: rename of_get_named_gen_pool() to of_gen_pool_get()
  genalloc: rename dev_get_gen_pool() to gen_pool_get()
  x86: opt into HAVE_COPY_THREAD_TLS, for both 32-bit and 64-bit
  MAINTAINERS: add zpool
  MAINTAINERS: BCACHE: Kent Overstreet has changed email address
  MAINTAINERS: move Jens Osterkamp to CREDITS
  MAINTAINERS: remove unused nbd.h pattern
  MAINTAINERS: update brcm gpio filename pattern
  MAINTAINERS: update brcm dts pattern
  MAINTAINERS: update sound soc intel patterns
  MAINTAINERS: remove website for paride
  MAINTAINERS: update Emulex ocrdma email addresses
  bcache: use kvfree() in various places
  libcxgbi: use kvfree() in cxgbi_free_big_mem()
  target: use kvfree() in session alloc and free
  IB/ehca: use kvfree() in ipz_queue_{cd}tor()
  drm/nouveau/gem: use kvfree() in u_free()
  drm: use kvfree() in drm_free_large()
  cxgb4: use kvfree() in t4_free_mem()
  cxgb3: use kvfree() in cxgb_free_mem()
  ...
Diffstat (limited to 'scripts/gdb/linux/symbols.py')
| -rw-r--r-- | scripts/gdb/linux/symbols.py | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/scripts/gdb/linux/symbols.py b/scripts/gdb/linux/symbols.py index cd5bea965d4e..627750cb420d 100644 --- a/scripts/gdb/linux/symbols.py +++ b/scripts/gdb/linux/symbols.py @@ -14,9 +14,8 @@  import gdb  import os  import re -import string -from linux import modules, utils +from linux import modules  if hasattr(gdb, 'Breakpoint'): @@ -97,7 +96,7 @@ lx-symbols command."""              return ""          attrs = sect_attrs['attrs']          section_name_to_address = { -            attrs[n]['name'].string() : attrs[n]['address'] +            attrs[n]['name'].string(): attrs[n]['address']              for n in range(int(sect_attrs['nsections']))}          args = []          for section_name in [".data", ".data..read_mostly", ".rodata", ".bss"]: @@ -124,7 +123,7 @@ lx-symbols command."""                  addr=module_addr,                  sections=self._section_arguments(module))              gdb.execute(cmdline, to_string=True) -            if not module_name in self.loaded_modules: +            if module_name not in self.loaded_modules:                  self.loaded_modules.append(module_name)          else:              gdb.write("no module object found for '{0}'\n".format(module_name)) @@ -164,7 +163,7 @@ lx-symbols command."""          self.load_all_symbols()          if hasattr(gdb, 'Breakpoint'): -            if not self.breakpoint is None: +            if self.breakpoint is not None:                  self.breakpoint.delete()                  self.breakpoint = None              self.breakpoint = LoadModuleBreakpoint( |