<br><br><div class="gmail_quote">On Wed, Feb 15, 2012 at 10:15 AM, Ezequiel García <span dir="ltr">&lt;<a href="mailto:elezegarcia@gmail.com">elezegarcia@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">
El día 14 de febrero de 2012 19:42, Greg KH &lt;<a href="mailto:greg@kroah.com">greg@kroah.com</a>&gt; escribió:<br>
<div class="im">&gt; On Tue, Feb 14, 2012 at 07:05:48PM -0300, Ezequiel García wrote:<br>
</div><div class="im">&gt;&gt; I noticed that after registering a video driver with<br>
&gt;&gt; &quot;video_register_device&quot; the &quot;open&quot; function gets called.<br>
&gt;&gt; The registration is like:<br>
&gt;&gt;<br>
&gt;&gt;         peasycap-&gt;video_device.fops = &amp;v4l2_fops;<br>
&gt;&gt;         peasycap-&gt;video_device.minor = -1;<br>
&gt;&gt;         peasycap-&gt;video_device.release = (void *)(&amp;videodev_release);<br>
&gt;&gt;<br>
&gt;&gt;         video_set_drvdata(&amp;(peasycap-&gt;video_device), (void *)peasycap);<br>
&gt;&gt;<br>
&gt;&gt; First question: who calls it and why does it open the device?<br>
&gt;<br>
&gt; Userspace probably.<br>
&gt;<br>
<br>
</div>I find hard that userspace is who opens the device in this particular case,<br>
because I get the &quot;open&quot; call just by plugging in the usb, right after<br>
usb_probe.<br>
(unless there is a daemon, or udev opens the device for module<br>
insertion or something).<br>
<br>
I will investigate this further.<br></blockquote><div><br>Although it doesn&#39;t easily click, but very simple. Implement open fop and put following print in it:<br><br>printk(&quot;%s: My caller is %s\n&quot;, __func__, current-&gt;comm);<br>
<br>You will get to know the user space daemon name. I have seen a daemon on some linux distributions, called &#39;hald&#39; (Hardware Abstraction Layer Daemon) doing these sort of activities when it detects hardware changes. Even in case of new mount point, it stats every mounted filesystem.<br>
<br>-Rajat <br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Thanks,<br>
Ezequiel.<br>
<div class="HOEnZb"><div class="h5"><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>
</div></div></blockquote></div><br>