<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.2.3">
</HEAD>
<BODY>
Hi Rohan,<BR>
<BR>
On Tue, 2012-10-23 at 18:47 +0530, Rohan Puri wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
    On Tue, Oct 23, 2012 at 6:33 PM, Abhijit Chandrakant Pawar &lt;<A HREF="mailto:abhi.c.pawar@gmail.com">abhi.c.pawar@gmail.com</A>&gt; wrote:<BR>
    <BLOCKQUOTE>
        I am working on the layered file systems. I came across a function called set_super_anon. <BR>
        This is a callback to the sget function to compare the superblock . This function accepts two parameters. first is superblock * and second is void *.&nbsp; If you look at the definition of this function, the void* is never used. <BR>
        Many filesystem uses this function when they are mounting the superblock. Some pass NULL and some pass actual data.I have looked till 2.6.31 but there isnt any trace of the usage of second parameter. <BR>
        <BR>
        If it is never used then why its added to the function param list?&nbsp; Is there any historical reason during the older kernel days? <BR>
        <BR>
        Regards,<BR>
        Abhijit Pawar <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">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</A><BR>
        <BR>
    </BLOCKQUOTE>
    <BR>
    Hi Abhijit,<BR>
    <BR>
    See the issue is this function is passed as an argument to sget(), now their are many other file-systems that defined their own set_super function &amp; for that they need data argument where they usually pass mount-related data<BR>
    <BR>
    For eg. see the definition and usage of function nfs_set_super(). <BR>
    <BR>
    So, the prototype of the sget() should contain function ptr (set_super()) and this function ptr should have data argument also. Now one usage can imply NO USE of the data parameter, which is set_super_anon, but other file-systems may require, so the sget() prototype should be generic to support, both the cases.<BR>
    <BR>
</BLOCKQUOTE>
Yes... thats what I thought.&nbsp;&nbsp; many are passing data un-necessarily to this function wherein they already have captured the required information for their purpose in their own defined function. <BR>
<BR>
Wouldnt that cause stack to store the value un-necessarily? It would be good if everybody passes NULL as second param.<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
    - Rohan
</BLOCKQUOTE>
</BODY>
</HTML>