1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-18 17:57:27 +03:00

oom: Cleanup of information dump code after kill

This is a follow up to 29f4185a9cdc ("oomd: Dump top offenders after a
kill action") to clean up the code a bit for review comments that
happened after the code had been merged already.
This commit is contained in:
Benjamin Berg 2022-02-07 17:34:21 +01:00 committed by Luca Boccassi
parent 8eb0c7917d
commit 100abbc650

View File

@ -227,7 +227,7 @@ static int dump_kill_candidates(OomdCGroupContext **sorted, int n, int dump_unti
f = open_memstream_unlocked(&dump, &size);
if (!f)
return -errno;;
return -errno;
fprintf(f, "Considered %d cgroups for killing, top candidates were:\n", n);
for (int i = 0; i < dump_until; i++)
@ -237,8 +237,6 @@ static int dump_kill_candidates(OomdCGroupContext **sorted, int n, int dump_unti
if (r < 0)
return r;
f = safe_fclose(f);
return log_dump(LOG_INFO, dump);
}