Support both Python 2 and Python 3 in mem-phys-addr.py. ``print`` is now a
function rather than a statement. This should have no functional change.

Fix lambda syntax error.

Signed-off-by: Seeteena Thoufeek <s1see...@linux.vnet.ibm.com>
Reviewed-by: Ravi Bangoria <ravi.bango...@linux.ibm.com>
---
 tools/perf/scripts/python/mem-phys-addr.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools/perf/scripts/python/mem-phys-addr.py 
b/tools/perf/scripts/python/mem-phys-addr.py
index ebee2c5..52fe9bd 100644
--- a/tools/perf/scripts/python/mem-phys-addr.py
+++ b/tools/perf/scripts/python/mem-phys-addr.py
@@ -38,14 +38,14 @@ def parse_iomem():
                        pmem.append(long(m[1], 16))
 
 def print_memory_type():
-       print "Event: %s" % (event_name)
-       print "%-40s  %10s  %10s\n" % ("Memory type", "count", "percentage"),
-       print "%-40s  %10s  %10s\n" % 
("----------------------------------------", \
-                                       "-----------", "-----------"),
+       print("Event: %s" % (event_name))
+       print("%-40s  %10s  %10s\n" % ("Memory type", "count", "percentage")),
+       print("%-40s  %10s  %10s\n" % 
("----------------------------------------", \
+                                       "-----------", "-----------")),
        total = sum(load_mem_type_cnt.values())
        for mem_type, count in sorted(load_mem_type_cnt.most_common(), \
-                                       key = lambda(k, v): (v, k), reverse = 
True):
-               print "%-40s  %10d  %10.1f%%\n" % (mem_type, count, 100 * count 
/ total),
+                                       key = lambda k_v: (k_v[1], k_v[0]), 
reverse = True):
+               print("%-40s  %10d  %10.1f%%\n" % (mem_type, count, 100 * count 
/ total)),
 
 def trace_begin():
        parse_iomem()
-- 
1.8.3.1

Reply via email to