Commit 56f4679d authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

fsnotify: Fix typo in get_mark_path debug output

@path is always nil here, we actually need @remap->path
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent a1fd4119
......@@ -204,7 +204,7 @@ static char *get_mark_path(const char *who, struct file_remap *remap,
if (remap) {
pr_debug("\t\tRestore %s watch for 0x%08x:0x%016lx (via %s)\n",
who, s_dev, i_ino, path);
who, s_dev, i_ino, remap->path);
return remap->path;
}
......
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