yifengyou / rpms / yum

Forked from rpms/yum 3 years ago
Clone

Blame SOURCES/BZ-1138205-needs-restarting.patch

d2a170
commit 7ef0f4ad556e3d4bfe0eeebd1f110de745adec3c
d2a170
Author: Valentina Mukhamedzhanova <vmukhame@redhat.com>
d2a170
Date:   Wed Mar 19 16:24:58 2014 +0100
d2a170
d2a170
    Make utils.get_process_info() respect executable names with spaces.
d2a170
d2a170
diff --git a/utils.py b/utils.py
d2a170
index 0b7191c..b00d312 100755
d2a170
--- a/utils.py
d2a170
+++ b/utils.py
d2a170
@@ -114,18 +114,20 @@ def get_process_info(pid):
d2a170
             break
d2a170
     if boot_time is None:
d2a170
         return
d2a170
-    ps_stat = open("/proc/%d/stat" % pid).read().split()
d2a170
-    ps['utime'] = jiffies_to_seconds(ps_stat[13])
d2a170
-    ps['stime'] = jiffies_to_seconds(ps_stat[14])
d2a170
-    ps['cutime'] = jiffies_to_seconds(ps_stat[15])
d2a170
-    ps['cstime'] = jiffies_to_seconds(ps_stat[16])
d2a170
-    ps['start_time'] = boot_time + jiffies_to_seconds(ps_stat[21])
d2a170
+    ps_stat = open("/proc/%d/stat" % pid).read().strip()
d2a170
+    # Filename of the executable might contain spaces, so we throw it away
d2a170
+    ps_stat = ps_stat[ps_stat.rfind(')') + 2:].split()
d2a170
+    ps['utime'] = jiffies_to_seconds(ps_stat[11])
d2a170
+    ps['stime'] = jiffies_to_seconds(ps_stat[12])
d2a170
+    ps['cutime'] = jiffies_to_seconds(ps_stat[13])
d2a170
+    ps['cstime'] = jiffies_to_seconds(ps_stat[14])
d2a170
+    ps['start_time'] = boot_time + jiffies_to_seconds(ps_stat[19])
d2a170
     ps['state'] = {'R' : _('Running'),
d2a170
                    'S' : _('Sleeping'),
d2a170
                    'D' : _('Uninterruptible'),
d2a170
                    'Z' : _('Zombie'),
d2a170
                    'T' : _('Traced/Stopped')
d2a170
-                   }.get(ps_stat[2], _('Unknown'))
d2a170
+                   }.get(ps_stat[0], _('Unknown'))
d2a170
                    
d2a170
     return ps
d2a170
 
d2a170
commit cf0464bea74f6e8d4650afee4e66d66bff2bc9a1
d2a170
Author: Valentina Mukhamedzhanova <vmukhame@redhat.com>
d2a170
Date:   Wed Mar 19 17:19:32 2014 +0100
d2a170
d2a170
    Refactored utils.get_process_info() to make parts of it reusable.
d2a170
d2a170
diff --git a/utils.py b/utils.py
d2a170
index b00d312..dbcd605 100755
d2a170
--- a/utils.py
d2a170
+++ b/utils.py
d2a170
@@ -107,13 +107,21 @@ def get_process_info(pid):
d2a170
         return
d2a170
     if 'vmsize' not in ps:
d2a170
         return
d2a170
-    boot_time = None
d2a170
-    for line in open("/proc/stat"):
d2a170
-        if line.startswith("btime "):
d2a170
-            boot_time = int(line[len("btime "):-1])
d2a170
-            break
d2a170
+    boot_time = get_boot_time()
d2a170
     if boot_time is None:
d2a170
         return
d2a170
+    ps.update(get_process_time(pid, boot_time))
d2a170
+    return ps
d2a170
+
d2a170
+
d2a170
+def get_boot_time():
d2a170
+    for line in open("/proc/stat"):
d2a170
+        if line.startswith("btime "):
d2a170
+            return int(line[len("btime "):-1])
d2a170
+
d2a170
+
d2a170
+def get_process_time(pid, boot_time):
d2a170
+    ps = {}
d2a170
     ps_stat = open("/proc/%d/stat" % pid).read().strip()
d2a170
     # Filename of the executable might contain spaces, so we throw it away
d2a170
     ps_stat = ps_stat[ps_stat.rfind(')') + 2:].split()