Commit db33a144 authored by Pavel Emelyanov's avatar Pavel Emelyanov

mount: Fix the mi we print info about

The t and m match there, but strictly speaking we're working on the m.
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent dcd68072
...@@ -326,7 +326,7 @@ static int validate_mounts(struct mount_info *info) ...@@ -326,7 +326,7 @@ static int validate_mounts(struct mount_info *info)
} }
if (&t->mnt_bind == &m->mnt_bind) { if (&t->mnt_bind == &m->mnt_bind) {
pr_err("%d:%s doesn't have a proper root mount\n", pr_err("%d:%s doesn't have a proper root mount\n",
t->mnt_id, t->mountpoint); m->mnt_id, m->mountpoint);
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