<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Jul 16, 2014 at 9:51 PM, Greg KH <span dir="ltr">&lt;<a href="mailto:greg@kroah.com" target="_blank">greg@kroah.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Wed, Jul 16, 2014 at 08:57:38PM +0530, Chetan Nanda wrote:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda &lt;<a href="mailto:chetannanda@gmail.com">chetannanda@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;     On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza &lt;<a href="mailto:john@jjdev.com">john@jjdev.com</a>&gt; wrote:<br>
&gt;<br>
&gt;         On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda wrote:<br>
&gt;         &gt; A depends on B, so B is automatically loaded when A is loaded.<br>
&gt;         &gt; B module is also directly being used by the user side code via misc<br>
&gt;         &gt; interface.<br>
&gt;         &gt;.<br>
&gt;         &gt; Now when I am unloading module A, via &quot;modprobe -r A&quot; it is also<br>
&gt;         unloading<br>
&gt;         &gt; the module B which is being used by the application and resulting in<br>
&gt;         the<br>
&gt;         &gt; kernel crash.<br>
&gt;<br>
&gt;         You said that A depends on B, right?  Why do you have A dependng on B?<br>
&gt;         If it A needs to have B then it makes sense that you can not remove A<br>
&gt;         while<br>
&gt;         B is in use.  If A doesn&#39;t need B, why not remove the dependency.<br>
&gt;<br>
&gt;  <br>
&gt; A is calling few APIs defined by B. <br>
&gt;<br>
&gt; But why when user space application is already using  module B. (it has already<br>
&gt; open its device fd) kernel allows to remove it.<br>
&gt;<br>
&gt; I tried with doing try_module_get() in the module&#39;s open function, it prevent<br>
&gt; module B unloading but cause thread doing modprobe -r to hang<br>
&gt; Is there any other way to mark module as busy when being used by user<br>
&gt; application?<br>
<br>
</div></div>Never use try_module_get(), that is racy.<br>
<br>
What is the user/kernel interface you are using, and why doesn&#39;t it<br>
automatically increase the module count when userspace opens the<br>
interface?  It should all be done in a way that your module doesn&#39;t need<br>
to do anything special.<br>
<br></blockquote><div>Hi Greg, </div><div><br></div><div>Thanks for your mail.</div><div> </div><div>Module is using misc driver interface to export its functionality to userspace, </div><div><br></div><div>Need to debug further why module count is not getting incremented automatically when module is open by userspace application via open system call.</div>
<div> </div><div>Thanks</div><div>Chetan Nanda</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
thanks,<br>
<br>
greg k-h<br>
<br>
</blockquote></div><br></div></div>