<div dir="ltr"><p dir="ltr"><br>
On Mar 26, 2015 7:10 PM, &quot;Oleg Nesterov&quot; &lt;<a href="mailto:oleg@redhat.com" target="_blank">oleg@redhat.com</a>&gt; wrote:<br>
&gt;<br>
&gt; validate_mounts() prints -&gt;mnt_id in hex when it reports the failure.<br>
&gt; This complicates the understanding because this -&gt;mnt_id is printed as<br>
&gt; decimal elsewhere, including /proc/$pid/mountinfo.<br>
&gt;<br>
&gt; parse_mountinfo() adds &quot;0x&quot; at least and this is just pr_info(), but<br>
&gt; lets change it too.<br>
&gt;</p>
<p dir="ltr">Acked-by: Andrew Vagin &lt;<a href="mailto:avagin@openvz.org">avagin@openvz.org</a>&gt;</p><p dir="ltr">Thanks.</p><p dir="ltr"><br>
&gt; Signed-off-by: Oleg Nesterov &lt;<a href="mailto:oleg@redhat.com" target="_blank">oleg@redhat.com</a>&gt;<br>
&gt; ---<br>
&gt;  mount.c      |    2 +-<br>
&gt;  proc_parse.c |    2 +-<br>
&gt;  2 files changed, 2 insertions(+), 2 deletions(-)<br>
&gt;<br>
&gt; diff --git a/mount.c b/mount.c<br>
&gt; index e59cb0d..021c6e3 100644<br>
&gt; --- a/mount.c<br>
&gt; +++ b/mount.c<br>
&gt; @@ -591,7 +591,7 @@ static int validate_mounts(struct mount_info *info, bool for_dump)<br>
&gt;<br>
&gt;                 if (fsroot_mounted(m)) {<br>
&gt;                         if (m-&gt;fstype-&gt;code == FSTYPE__UNSUPPORTED) {<br>
&gt; -                               pr_err(&quot;FS mnt %s dev %#x root %s unsupported id %x\n&quot;,<br>
&gt; +                               pr_err(&quot;FS mnt %s dev %#x root %s unsupported id %d\n&quot;,<br>
&gt;                                                 m-&gt;mountpoint, m-&gt;s_dev, m-&gt;root, m-&gt;mnt_id);<br>
&gt;                                 return -1;<br>
&gt;                         }<br>
&gt; diff --git a/proc_parse.c b/proc_parse.c<br>
&gt; index 8ad9d21..3009905 100644<br>
&gt; --- a/proc_parse.c<br>
&gt; +++ b/proc_parse.c<br>
&gt; @@ -1009,7 +1009,7 @@ struct mount_info *parse_mountinfo(pid_t pid, struct ns_id *nsid)<br>
&gt;                         goto err;<br>
&gt;                 }<br>
&gt;<br>
&gt; -               pr_info(&quot;\ttype %s source %s mnt_id %#x s_dev %#x %s @ %s flags %#x options %s\n&quot;,<br>
&gt; +               pr_info(&quot;\ttype %s source %s mnt_id %d s_dev %#x %s @ %s flags %#x options %s\n&quot;,<br>
&gt;                                 fst ? : new-&gt;fstype-&gt;name, new-&gt;source,<br>
&gt;                                 new-&gt;mnt_id, new-&gt;s_dev, new-&gt;root, new-&gt;mountpoint,<br>
&gt;                                 new-&gt;flags, new-&gt;options);<br>
&gt; --<br>
&gt; 1.5.5.1<br>
&gt;<br>
&gt;<br>
</p>
</div>