<div dir="ltr"><span style="font-size:14px">Hi all,</span><div style="font-size:14px">    I&#39;m reading the code of 3.6.9 version and got a question.And I&#39;m not very familiar with the code,so I have to confirm it(I checked the master branch,it&#39;s same with 3.6.9).</div><div style="font-size:14px"><br></div><div style="font-size:14px">    The question is about the &#39;lookup&#39; operation of NFS.And i&#39;m with this code flow:</div><div style="font-size:14px"><br></div><div style="font-size:14px">    nfs3_lookup (nfs3.c) ==&gt; nfs3_fh_resolve_and_resume ==&gt; nfs3_fh_resolve_root ==&gt; nfs3_fh_resolve_resume ==&gt; nfs3_fh_resolve_entry ==&gt; nfs3_fh_resolve_entry_<wbr>hard.</div><div style="font-size:14px"><br></div><div style="font-size:14px">Now enter the &quot;nfs_entry_loc_fill&quot; and return with -1 which means the &quot;parent&quot; not found,so we have to do hard resolve about the parent. After doing a hard resolve,we get into the callback &quot;nfs3_fh_resolve_inode_lookup_<wbr>cbk&quot;.And the callback has the following code:</div><div style="font-size:14px"><br></div><div style="font-size:14px"><div>&gt;&gt;&gt; memcpy (&amp;cs-&gt;stbuf, buf, sizeof(*buf));</div><div>&gt;&gt;&gt; memcpy (&amp;cs-&gt;postparent, buf, sizeof(*postparent))</div></div><div style="font-size:14px"><br></div><div style="font-size:14px">I think we&#39;ve just done a parent resolve,how could we assign the parent result into the &quot;stbuf&quot; and &quot;postparent&quot;.The later two should be the information of the child file/directory.Do i made a misunderstand?</div><div style="font-size:14px"><br></div><div style="font-size:14px">Thanks advance for your help.</div></div>