Commit f220e298 authored by Andrey Vagin's avatar Andrey Vagin Committed by Pavel Emelyanov

pie: add EOL in the error message

Signed-off-by: 's avatarAndrey Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7b6a92c2
...@@ -72,7 +72,7 @@ static int dump_pages(struct parasite_dump_pages_args *args) ...@@ -72,7 +72,7 @@ static int dump_pages(struct parasite_dump_pages_args *args)
SPLICE_F_GIFT | SPLICE_F_NONBLOCK); SPLICE_F_GIFT | SPLICE_F_NONBLOCK);
if (ret != PAGE_SIZE * args->nr_pages) { if (ret != PAGE_SIZE * args->nr_pages) {
sys_close(p); sys_close(p);
pr_err("Can't splice pages to pipe (%d/%d)", ret, args->nr_pages); pr_err("Can't splice pages to pipe (%d/%d)\n", ret, args->nr_pages);
return -1; 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