Commit 0f960261 authored by Pavel Emelyanov's avatar Pavel Emelyanov

mem: Lower messages severity for inability to reset dirty tracker

The _actual_ need for this is checked in other place.
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent f70859e2
...@@ -104,7 +104,7 @@ int kerndat_get_dirty_track(void) ...@@ -104,7 +104,7 @@ int kerndat_get_dirty_track(void)
pr_info("Dirty track supported on kernel\n"); pr_info("Dirty track supported on kernel\n");
kerndat_has_dirty_track = true; kerndat_has_dirty_track = true;
} else } else
pr_err("Dirty tracking support is OFF\n"); pr_info("Dirty tracking support is OFF\n");
return 0; return 0;
} }
......
...@@ -64,7 +64,7 @@ int do_task_reset_dirty_track(int pid) ...@@ -64,7 +64,7 @@ int do_task_reset_dirty_track(int pid)
close(fd); close(fd);
if (ret < 0) { if (ret < 0) {
pr_perror("Can't reset %d's dirty memory tracker", pid); pr_warn("Can't reset %d's dirty memory tracker (%d)", pid, errno);
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