Blame SOURCES/CLI-fix-ps_show_thread-call-with-bad-args-count.patch
|
 |
d2f14d |
From 3a54bb485a3a73023314e21b417fbaeb13aa4bd5 Mon Sep 17 00:00:00 2001
|
|
 |
273c50 |
From: Petr Oros <poros@redhat.com>
|
|
 |
273c50 |
Date: Thu, 15 Aug 2013 11:15:45 +0200
|
|
 |
d2f14d |
Subject: [PATCH 02/15] CLI: fix ps_show_thread call with bad args count
|
|
 |
273c50 |
|
|
 |
d2f14d |
Tested-By: Jiri Kastner <jkastner@redhat.com>
|
|
 |
273c50 |
Signed-off-by: Petr Oros <poros@redhat.com>
|
|
 |
d2f14d |
Signed-off-by: Jiri Kastner <jkastner@redhat.com>
|
|
 |
273c50 |
Signed-off-by: John Kacur <jkacur@redhat.com>
|
|
 |
273c50 |
---
|
|
 |
273c50 |
tuna-cmd.py | 2 +-
|
|
 |
273c50 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
 |
273c50 |
|
|
 |
273c50 |
diff --git a/tuna-cmd.py b/tuna-cmd.py
|
|
 |
d2f14d |
index 64e3ad109d54..5dcc18167d17 100755
|
|
 |
273c50 |
--- a/tuna-cmd.py
|
|
 |
273c50 |
+++ b/tuna-cmd.py
|
|
 |
273c50 |
@@ -227,7 +227,7 @@ def ps_show_thread(pid, affect_children, ps,
|
|
 |
273c50 |
for tid in ps[pid]["threads"].keys():
|
|
 |
273c50 |
ps_show_thread(tid, False, ps[pid]["threads"],
|
|
 |
273c50 |
has_ctxt_switch_info,
|
|
 |
273c50 |
- sock_inodes, sock_inode_re)
|
|
 |
273c50 |
+ sock_inodes, sock_inode_re, cgroups)
|
|
 |
273c50 |
|
|
 |
273c50 |
|
|
 |
273c50 |
def ps_show(ps, affect_children, thread_list, cpu_list,
|
|
 |
273c50 |
--
|
|
 |
d2f14d |
1.8.3.1
|
|
 |
273c50 |
|