summaryrefslogtreecommitdiff
path: root/scripts/qemugdb
diff options
context:
space:
mode:
authorYang Wei <w90p710@gmail.com>2015-12-05 19:52:20 +0800
committerStefan Hajnoczi <stefanha@redhat.com>2015-12-22 16:01:08 +0800
commitd6b6913276535bc0bc0d519d94ba0c908d8cfed8 (patch)
tree15a0e9f0ad1d4286f3010e0fbe67a1a8f8081f6f /scripts/qemugdb
parentb4a9e25b7b8f258f0692d273e59e3e20347cdf28 (diff)
downloadqemu-d6b6913276535bc0bc0d519d94ba0c908d8cfed8.tar.gz
scripts/gdb: Fix a python exception in mtree.py
The following exception is threw: Python Exception <class 'NameError'> name 'long' is not defined: Error occurred in Python command: name 'long' is not defined Python 2.4+, int()/long() have been unified, so replace long with int. Signed-off-by: Yang Wei <w90p710@gmail.com> Message-id: 1449316340-4030-1-git-send-email-w90p710@gmail.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'scripts/qemugdb')
-rw-r--r--scripts/qemugdb/mtree.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/qemugdb/mtree.py b/scripts/qemugdb/mtree.py
index 06011c30cc..cc8131c2e7 100644
--- a/scripts/qemugdb/mtree.py
+++ b/scripts/qemugdb/mtree.py
@@ -21,7 +21,7 @@ def isnull(ptr):
return ptr == gdb.Value(0).cast(ptr.type)
def int128(p):
- return long(p['lo']) + (long(p['hi']) << 64)
+ return int(p['lo']) + (int(p['hi']) << 64)
class MtreeCommand(gdb.Command):
'''Display the memory tree hierarchy'''
@@ -40,11 +40,11 @@ class MtreeCommand(gdb.Command):
def process_queue(self):
while self.queue:
ptr = self.queue.pop(0)
- if long(ptr) in self.seen:
+ if int(ptr) in self.seen:
continue
self.print_item(ptr)
def print_item(self, ptr, offset = gdb.Value(0), level = 0):
- self.seen.add(long(ptr))
+ self.seen.add(int(ptr))
addr = ptr['addr']
addr += offset
size = int128(ptr['size'])
@@ -58,8 +58,8 @@ class MtreeCommand(gdb.Command):
klass = ' (RAM)'
gdb.write('%s%016x-%016x %s%s (@ %s)\n'
% (' ' * level,
- long(addr),
- long(addr + (size - 1)),
+ int(addr),
+ int(addr + (size - 1)),
ptr['name'].string(),
klass,
ptr,