mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-17 22:16:18 +00:00
Merge branch 'upstream-fixes' into debian
This commit is contained in:
commit
ea71cb4b7f
17
src/cgtop.c
17
src/cgtop.c
@ -340,17 +340,22 @@ static int refresh(Hashmap *a, Hashmap *b, unsigned iteration) {
|
||||
|
||||
r = refresh_one("name=systemd", "/", a, b, iteration, 0);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
if (r != -ENOENT)
|
||||
return r;
|
||||
r = refresh_one("cpuacct", "/", a, b, iteration, 0);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
if (r != -ENOENT)
|
||||
return r;
|
||||
r = refresh_one("memory", "/", a, b, iteration, 0);
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r != -ENOENT)
|
||||
return r;
|
||||
|
||||
return refresh_one("blkio", "/", a, b, iteration, 0);
|
||||
r = refresh_one("blkio", "/", a, b, iteration, 0);
|
||||
if (r < 0)
|
||||
if (r != -ENOENT)
|
||||
return r;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int group_compare(const void*a, const void *b) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user