Commit 7ac8ba55 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Pavel Emelyanov

prepare_pstree_ids(): improve an error message

I guess this is a followup to commit 59e80d4f.

1 s/determinate/figure out/ (there is no "determinate" verb in English)

2 moved 'with' to the end

Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 9301c5d6
......@@ -710,8 +710,8 @@ static int prepare_pstree_ids(void)
parent = item->parent;
while (parent && vpid(parent) != item->sid) {
if (parent->born_sid != -1 && parent->born_sid != item->sid) {
pr_err("Can't determinate with which sid (%d or %d)"
"the process %d was born\n",
pr_err("Can't figure out which sid (%d or %d)"
"the process %d was born with\n",
parent->born_sid, item->sid, vpid(parent));
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment