mirror of https://gitee.com/openkylin/libvirt.git
qemu: Fix /proc/**/stat parsing
Since commit v1.3.2-119-g1e34a8f which enabled debug-threads in QEMU qemuGetProcessInfo would fail to parse stats for any thread with a space in its name. https://bugzilla.redhat.com/show_bug.cgi?id=1316803 Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
d40d18fb8f
commit
801a5f65fa
|
@ -1460,7 +1460,7 @@ qemuGetProcessInfo(unsigned long long *cpuTime, int *lastCpu, long *vm_rss,
|
||||||
if (!pidinfo ||
|
if (!pidinfo ||
|
||||||
fscanf(pidinfo,
|
fscanf(pidinfo,
|
||||||
/* pid -> stime */
|
/* pid -> stime */
|
||||||
"%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %llu %llu"
|
"%*d (%*[^)]) %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %llu %llu"
|
||||||
/* cutime -> endcode */
|
/* cutime -> endcode */
|
||||||
"%*d %*d %*d %*d %*d %*d %*u %*u %ld %*u %*u %*u"
|
"%*d %*d %*d %*d %*d %*d %*u %*u %ld %*u %*u %*u"
|
||||||
/* startstack -> processor */
|
/* startstack -> processor */
|
||||||
|
|
Loading…
Reference in New Issue