<div dir="ltr"><div><div>returning NULL means you are fairly welcoming the supplied dentry and attach it to your inode.<br></div>returning a dentry means it is a dentry which filesystem figured out was already associated with its inode. When can this happen? lookup process builds up a chain from parent to child dentry. In case of NFS export, lookup is done from file handle which can result in dentries which are disconnected from their parent, but are associated with inode. So, when you return such dentries from this operation, VFS will change their disconnected status.<br>
<br></div>-Rajat<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, May 27, 2013 at 11:38 PM, Sankar P <span dir="ltr">&lt;<a href="mailto:sankar.curiosity@gmail.com" target="_blank">sankar.curiosity@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
What is the return value of the lookup function under the<br>
inode_operations struct ? I see that the function gets a dentry as a<br>
parameter, which can be used to associate an inode. For example:<br>
<br>
If we have:<br>
<br>
struct dentry * somefs_lookup(struct inode *parent_inode,<br>
      struct dentry *child_dentry, unsigned int flags)<br>
{<br>
    d_add(child_dentry, inode);<br>
}<br>
<br>
so, what is the meaning of the return &quot;struct dentry&quot; in this lookup<br>
function ? In some simple filesystems that I saw, they return NULL<br>
here and it seem to work just fine. So what is that the lookup<br>
function should do if we are implementing our own filesystem ?<br>
<br>
Thanks.<br>
<br>
--<br>
Sankar P<br>
<a href="http://psankar.blogspot.com" target="_blank">http://psankar.blogspot.com</a><br>
<br>
_______________________________________________<br>
Kernelnewbies mailing list<br>
<a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
<a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
</blockquote></div><br></div>