Commit 41a1b2da authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

dump: collect_mappings -- Fix message text

@vma_area_list::longest is in pages not bytes.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent a0053823
...@@ -135,7 +135,7 @@ int collect_mappings(pid_t pid, struct vm_area_list *vma_area_list) ...@@ -135,7 +135,7 @@ int collect_mappings(pid_t pid, struct vm_area_list *vma_area_list)
if (ret < 0) if (ret < 0)
goto err; goto err;
pr_info("Collected, longest ares %lu bytes\n", vma_area_list->longest); pr_info("Collected, longest area occupies %lu pages\n", vma_area_list->longest);
pr_info_vma_list(&vma_area_list->h); pr_info_vma_list(&vma_area_list->h);
pr_info("----------------------------------------\n"); pr_info("----------------------------------------\n");
......
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