From aac51fce90d9007b4ff9c9b5bb3c3969cdb2b01b Mon Sep 17 00:00:00 2001 From: Petr Oros Date: Thu, 15 Aug 2013 11:15:45 +0200 Subject: [PATCH 3/4] CLI: fix ps_show_thread call with bad args count Signed-off-by: Petr Oros (cherry picked from commit a97f70eb407f3ec2972740ca5ab976f5f06ce0bb) Signed-off-by: John Kacur --- tuna-cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuna-cmd.py b/tuna-cmd.py index 64e3ad1..5dcc181 100755 --- a/tuna-cmd.py +++ b/tuna-cmd.py @@ -227,7 +227,7 @@ def ps_show_thread(pid, affect_children, ps, for tid in ps[pid]["threads"].keys(): ps_show_thread(tid, False, ps[pid]["threads"], has_ctxt_switch_info, - sock_inodes, sock_inode_re) + sock_inodes, sock_inode_re, cgroups) def ps_show(ps, affect_children, thread_list, cpu_list, -- 1.8.1.4