* How to prevent a module from unloading when in used [not found] <CAPrYoTHfEqU_8QRJKzY3gwF50JHB_b+QRc=u9MCM_A+mAsRw1A@mail.gmail.com> @ 2014-07-16 10:30 ` Chetan Nanda 2014-07-16 13:09 ` John de la Garza 2014-07-16 17:10 ` Abhishek Sharma 0 siblings, 2 replies; 12+ messages in thread From: Chetan Nanda @ 2014-07-16 10:30 UTC (permalink / raw) To: kernelnewbies Hi, I am facing an issues with module unloading, I have two modules say A, B A depends on B, so B is automatically loaded when A is loaded. B module is also directly being used by the user side code via misc interface. Now when I am unloading module A, via "modprobe -r A" it is also unloading the module B which is being used by the application and resulting in the kernel crash. Also, lsmod ouput shows driver B is not used by anybody. Seems "Used By" of lsmod output is not getting updated. How to prevent unloading of module B in used. When unloading module 'A' via modprobe -r Thanks, Chetan Nanda -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140716/d16fb71b/attachment.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-16 10:30 ` How to prevent a module from unloading when in used Chetan Nanda @ 2014-07-16 13:09 ` John de la Garza [not found] ` <CAPrYoTHQFqqbskarb6RJjzZdcBiDCSFvc3uZwhOyzi5Y0a82NA@mail.gmail.com> 2014-07-16 17:10 ` Abhishek Sharma 1 sibling, 1 reply; 12+ messages in thread From: John de la Garza @ 2014-07-16 13:09 UTC (permalink / raw) To: kernelnewbies On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda wrote: > A depends on B, so B is automatically loaded when A is loaded. > B module is also directly being used by the user side code via misc > interface. >. > Now when I am unloading module A, via "modprobe -r A" it is also unloading > the module B which is being used by the application and resulting in the > kernel crash. You said that A depends on B, right? Why do you have A dependng on B? If it A needs to have B then it makes sense that you can not remove A while B is in use. If A doesn't need B, why not remove the dependency. ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAPrYoTHQFqqbskarb6RJjzZdcBiDCSFvc3uZwhOyzi5Y0a82NA@mail.gmail.com>]
* How to prevent a module from unloading when in used [not found] ` <CAPrYoTHQFqqbskarb6RJjzZdcBiDCSFvc3uZwhOyzi5Y0a82NA@mail.gmail.com> @ 2014-07-16 15:27 ` Chetan Nanda 2014-07-16 16:21 ` Greg KH 0 siblings, 1 reply; 12+ messages in thread From: Chetan Nanda @ 2014-07-16 15:27 UTC (permalink / raw) To: kernelnewbies On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda <chetannanda@gmail.com> wrote: > > > On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza <john@jjdev.com> wrote: > >> On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda wrote: >> > A depends on B, so B is automatically loaded when A is loaded. >> > B module is also directly being used by the user side code via misc >> > interface. >> >. >> > Now when I am unloading module A, via "modprobe -r A" it is also >> unloading >> > the module B which is being used by the application and resulting in the >> > kernel crash. >> >> You said that A depends on B, right? Why do you have A dependng on B? >> If it A needs to have B then it makes sense that you can not remove A >> while >> B is in use. If A doesn't need B, why not remove the dependency. > > A is calling few APIs defined by B. But why when user space application is already using module B. (it has already open its device fd) kernel allows to remove it. I tried with doing try_module_get() in the module's open function, it prevent module B unloading but cause thread doing modprobe -r to hang Is there any other way to mark module as busy when being used by user application? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140716/9399133f/attachment.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-16 15:27 ` Chetan Nanda @ 2014-07-16 16:21 ` Greg KH 2014-07-18 4:13 ` Chetan Nanda 0 siblings, 1 reply; 12+ messages in thread From: Greg KH @ 2014-07-16 16:21 UTC (permalink / raw) To: kernelnewbies On Wed, Jul 16, 2014 at 08:57:38PM +0530, Chetan Nanda wrote: > > > > On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda <chetannanda@gmail.com> wrote: > > > > On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza <john@jjdev.com> wrote: > > On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda wrote: > > A depends on B, so B is automatically loaded when A is loaded. > > B module is also directly being used by the user side code via misc > > interface. > >. > > Now when I am unloading module A, via "modprobe -r A" it is also > unloading > > the module B which is being used by the application and resulting in > the > > kernel crash. > > You said that A depends on B, right? ?Why do you have A dependng on B? > If it A needs to have B then it makes sense that you can not remove A > while > B is in use. ?If A doesn't need B, why not remove the dependency. > > ? > A is calling few APIs defined by B.? > > But why when user space application is already using ?module B. (it has already > open its device fd) kernel allows to remove it. > > I tried with doing try_module_get() in the module's open function, it prevent > module B unloading but cause thread doing modprobe -r to hang > Is there any other way to mark module as busy when being used by user > application? Never use try_module_get(), that is racy. What is the user/kernel interface you are using, and why doesn't it automatically increase the module count when userspace opens the interface? It should all be done in a way that your module doesn't need to do anything special. thanks, greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-16 16:21 ` Greg KH @ 2014-07-18 4:13 ` Chetan Nanda 2014-07-18 4:17 ` Greg KH 0 siblings, 1 reply; 12+ messages in thread From: Chetan Nanda @ 2014-07-18 4:13 UTC (permalink / raw) To: kernelnewbies On Wed, Jul 16, 2014 at 9:51 PM, Greg KH <greg@kroah.com> wrote: > On Wed, Jul 16, 2014 at 08:57:38PM +0530, Chetan Nanda wrote: > > > > > > > > On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda <chetannanda@gmail.com> > wrote: > > > > > > > > On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza <john@jjdev.com> > wrote: > > > > On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda wrote: > > > A depends on B, so B is automatically loaded when A is loaded. > > > B module is also directly being used by the user side code via > misc > > > interface. > > >. > > > Now when I am unloading module A, via "modprobe -r A" it is > also > > unloading > > > the module B which is being used by the application and > resulting in > > the > > > kernel crash. > > > > You said that A depends on B, right? Why do you have A dependng > on B? > > If it A needs to have B then it makes sense that you can not > remove A > > while > > B is in use. If A doesn't need B, why not remove the dependency. > > > > > > A is calling few APIs defined by B. > > > > But why when user space application is already using module B. (it has > already > > open its device fd) kernel allows to remove it. > > > > I tried with doing try_module_get() in the module's open function, it > prevent > > module B unloading but cause thread doing modprobe -r to hang > > Is there any other way to mark module as busy when being used by user > > application? > > Never use try_module_get(), that is racy. > > What is the user/kernel interface you are using, and why doesn't it > automatically increase the module count when userspace opens the > interface? It should all be done in a way that your module doesn't need > to do anything special. > > Hi Greg, Thanks for your mail. Module is using misc driver interface to export its functionality to userspace, Need to debug further why module count is not getting incremented automatically when module is open by userspace application via open system call. Thanks Chetan Nanda thanks, > > greg k-h > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140718/2b89b52e/attachment.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-18 4:13 ` Chetan Nanda @ 2014-07-18 4:17 ` Greg KH 2014-07-18 6:29 ` Chetan Nanda 0 siblings, 1 reply; 12+ messages in thread From: Greg KH @ 2014-07-18 4:17 UTC (permalink / raw) To: kernelnewbies On Fri, Jul 18, 2014 at 09:43:48AM +0530, Chetan Nanda wrote: > > > > On Wed, Jul 16, 2014 at 9:51 PM, Greg KH <greg@kroah.com> wrote: > > On Wed, Jul 16, 2014 at 08:57:38PM +0530, Chetan Nanda wrote: > > > > > > > > On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda <chetannanda@gmail.com> > wrote: > > > > > > > > ? ? On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza <john@jjdev.com> > wrote: > > > > ? ? ? ? On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda wrote: > > ? ? ? ? > A depends on B, so B is automatically loaded when A is loaded. > > ? ? ? ? > B module is also directly being used by the user side code via > misc > > ? ? ? ? > interface. > > ? ? ? ? >. > > ? ? ? ? > Now when I am unloading module A, via "modprobe -r A" it is > also > > ? ? ? ? unloading > > ? ? ? ? > the module B which is being used by the application and > resulting in > > ? ? ? ? the > > ? ? ? ? > kernel crash. > > > > ? ? ? ? You said that A depends on B, right? ?Why do you have A dependng > on B? > > ? ? ? ? If it A needs to have B then it makes sense that you can not > remove A > > ? ? ? ? while > > ? ? ? ? B is in use. ?If A doesn't need B, why not remove the dependency. > > > > ? > > A is calling few APIs defined by B.? > > > > But why when user space application is already using ?module B. (it has > already > > open its device fd) kernel allows to remove it. > > > > I tried with doing try_module_get() in the module's open function, it > prevent > > module B unloading but cause thread doing modprobe -r to hang > > Is there any other way to mark module as busy when being used by user > > application? > > Never use try_module_get(), that is racy. > > What is the user/kernel interface you are using, and why doesn't it > automatically increase the module count when userspace opens the > interface? ?It should all be done in a way that your module doesn't need > to do anything special. > > > Hi Greg,? > > Thanks for your mail. > ? > Module is using misc driver interface to export its functionality to > userspace,? > > Need to debug further why module count is not getting incremented automatically > when module is open by userspace application via open system call. Are you properly setting the .owner field of your file operations structure to be THIS_MODULE? If not, try fixing that up. If you are, try posting your code for review. greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-18 4:17 ` Greg KH @ 2014-07-18 6:29 ` Chetan Nanda 2014-07-21 3:39 ` Chetan Nanda 0 siblings, 1 reply; 12+ messages in thread From: Chetan Nanda @ 2014-07-18 6:29 UTC (permalink / raw) To: kernelnewbies On Fri, Jul 18, 2014 at 9:47 AM, Greg KH <greg@kroah.com> wrote: > On Fri, Jul 18, 2014 at 09:43:48AM +0530, Chetan Nanda wrote: > > > > > > > > On Wed, Jul 16, 2014 at 9:51 PM, Greg KH <greg@kroah.com> wrote: > > > > On Wed, Jul 16, 2014 at 08:57:38PM +0530, Chetan Nanda wrote: > > > > > > > > > > > > On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda < > chetannanda at gmail.com> > > wrote: > > > > > > > > > > > > On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza < > john at jjdev.com> > > wrote: > > > > > > On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda > wrote: > > > > A depends on B, so B is automatically loaded when A is > loaded. > > > > B module is also directly being used by the user side > code via > > misc > > > > interface. > > > >. > > > > Now when I am unloading module A, via "modprobe -r A" it > is > > also > > > unloading > > > > the module B which is being used by the application and > > resulting in > > > the > > > > kernel crash. > > > > > > You said that A depends on B, right? Why do you have A > dependng > > on B? > > > If it A needs to have B then it makes sense that you can > not > > remove A > > > while > > > B is in use. If A doesn't need B, why not remove the > dependency. > > > > > > > > > A is calling few APIs defined by B. > > > > > > But why when user space application is already using module B. > (it has > > already > > > open its device fd) kernel allows to remove it. > > > > > > I tried with doing try_module_get() in the module's open function, > it > > prevent > > > module B unloading but cause thread doing modprobe -r to hang > > > Is there any other way to mark module as busy when being used by > user > > > application? > > > > Never use try_module_get(), that is racy. > > > > What is the user/kernel interface you are using, and why doesn't it > > automatically increase the module count when userspace opens the > > interface? It should all be done in a way that your module doesn't > need > > to do anything special. > > > > > > Hi Greg, > > > > Thanks for your mail. > > > > Module is using misc driver interface to export its functionality to > > userspace, > > > > Need to debug further why module count is not getting incremented > automatically > > when module is open by userspace application via open system call. > > Are you properly setting the .owner field of your file operations > structure to be THIS_MODULE? If not, try fixing that up. If you are, > try posting your code for review. > > greg k-h > Hi Greg, Thanks for the hint, indeed that was the issue, .owner field was not set in file operation structure. After setting that, 'modprobe -r A' is hanging. As the module B in use and can't be removed. I am using busybox on embedded Linux, I think this could be a modprobe utility issue. Ideally modprobe should not try to remove the module in used. Thanks, Chetan Nanda -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140718/a2c662f5/attachment.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-18 6:29 ` Chetan Nanda @ 2014-07-21 3:39 ` Chetan Nanda 2014-07-21 4:22 ` Greg KH 0 siblings, 1 reply; 12+ messages in thread From: Chetan Nanda @ 2014-07-21 3:39 UTC (permalink / raw) To: kernelnewbies On Fri, Jul 18, 2014 at 11:59 AM, Chetan Nanda <chetannanda@gmail.com> wrote: > > > > On Fri, Jul 18, 2014 at 9:47 AM, Greg KH <greg@kroah.com> wrote: > >> On Fri, Jul 18, 2014 at 09:43:48AM +0530, Chetan Nanda wrote: >> > >> > >> > >> > On Wed, Jul 16, 2014 at 9:51 PM, Greg KH <greg@kroah.com> wrote: >> > >> > On Wed, Jul 16, 2014 at 08:57:38PM +0530, Chetan Nanda wrote: >> > > >> > > >> > > >> > > On Wed, Jul 16, 2014 at 8:49 PM, Chetan Nanda < >> chetannanda at gmail.com> >> > wrote: >> > > >> > > >> > > >> > > On Wed, Jul 16, 2014 at 6:39 PM, John de la Garza < >> john at jjdev.com> >> > wrote: >> > > >> > > On Wed, Jul 16, 2014 at 04:00:18PM +0530, Chetan Nanda >> wrote: >> > > > A depends on B, so B is automatically loaded when A is >> loaded. >> > > > B module is also directly being used by the user side >> code via >> > misc >> > > > interface. >> > > >. >> > > > Now when I am unloading module A, via "modprobe -r A" >> it is >> > also >> > > unloading >> > > > the module B which is being used by the application and >> > resulting in >> > > the >> > > > kernel crash. >> > > >> > > You said that A depends on B, right? Why do you have A >> dependng >> > on B? >> > > If it A needs to have B then it makes sense that you can >> not >> > remove A >> > > while >> > > B is in use. If A doesn't need B, why not remove the >> dependency. >> > > >> > > >> > > A is calling few APIs defined by B. >> > > >> > > But why when user space application is already using module B. >> (it has >> > already >> > > open its device fd) kernel allows to remove it. >> > > >> > > I tried with doing try_module_get() in the module's open >> function, it >> > prevent >> > > module B unloading but cause thread doing modprobe -r to hang >> > > Is there any other way to mark module as busy when being used by >> user >> > > application? >> > >> > Never use try_module_get(), that is racy. >> > >> > What is the user/kernel interface you are using, and why doesn't it >> > automatically increase the module count when userspace opens the >> > interface? It should all be done in a way that your module doesn't >> need >> > to do anything special. >> > >> > >> > Hi Greg, >> > >> > Thanks for your mail. >> > >> > Module is using misc driver interface to export its functionality to >> > userspace, >> > >> > Need to debug further why module count is not getting incremented >> automatically >> > when module is open by userspace application via open system call. >> >> Are you properly setting the .owner field of your file operations >> structure to be THIS_MODULE? If not, try fixing that up. If you are, >> try posting your code for review. >> >> greg k-h >> > > Hi Greg, > > Thanks for the hint, indeed that was the issue, .owner field was not set > in file operation structure. > After setting that, 'modprobe -r A' is hanging. As the module B in use and > can't be removed. > > I am using busybox on embedded Linux, I think this could be a modprobe > utility issue. > Ideally modprobe should not try to remove the module in used. > > I try to debug the hang when unloading of driver. I am using kernel v3.10 and it hangs in 'wait_for_zero_refcount'. I checked that this function has been removed in kernel 3.13. But I am not able to find the patch for this change. Is there an easy way to find the patch which cause removal of wait from module unloading in v3.13. > Thanks, > Chetan Nanda > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140721/fc29fd72/attachment.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-21 3:39 ` Chetan Nanda @ 2014-07-21 4:22 ` Greg KH 2014-07-21 4:50 ` Chetan Nanda 0 siblings, 1 reply; 12+ messages in thread From: Greg KH @ 2014-07-21 4:22 UTC (permalink / raw) To: kernelnewbies On Mon, Jul 21, 2014 at 09:09:02AM +0530, Chetan Nanda wrote: > I try to debug the hang when unloading of driver. I am using kernel v3.10 > and it hangs in 'wait_for_zero_refcount'. > I checked that this function has been removed in kernel 3.13. > But I am not able to find the patch for this change. > > Is there an easy way to find the patch which cause removal of wait from > module unloading in v3.13. You have the full git tree, it should be very easy to find, you don't need help from me. good luck, greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-21 4:22 ` Greg KH @ 2014-07-21 4:50 ` Chetan Nanda 2014-07-21 18:42 ` Greg KH 0 siblings, 1 reply; 12+ messages in thread From: Chetan Nanda @ 2014-07-21 4:50 UTC (permalink / raw) To: kernelnewbies On Mon, Jul 21, 2014 at 9:52 AM, Greg KH <greg@kroah.com> wrote: > On Mon, Jul 21, 2014 at 09:09:02AM +0530, Chetan Nanda wrote: > > I try to debug the hang when unloading of driver. I am using kernel v3.10 > > and it hangs in 'wait_for_zero_refcount'. > > I checked that this function has been removed in kernel 3.13. > > But I am not able to find the patch for this change. > > > > Is there an easy way to find the patch which cause removal of wait from > > module unloading in v3.13. > > You have the full git tree, it should be very easy to find, you don't > need help from me. > > Hi Greg, Thanks for your mail, I have found a thread with the discussion and a patch for removing the wait_for_zero_refcount from module unloading, But not able to find this patch being merged on v3.13. (have checked all patches between 3.12 and 3.13) http://www.gossamer-threads.com/lists/linux/kernel/1783584?do=post_view_threaded#1783584 Thanks, Chetan Nanda > good luck, > > greg k-h > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140721/3417ff46/attachment.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-21 4:50 ` Chetan Nanda @ 2014-07-21 18:42 ` Greg KH 0 siblings, 0 replies; 12+ messages in thread From: Greg KH @ 2014-07-21 18:42 UTC (permalink / raw) To: kernelnewbies On Mon, Jul 21, 2014 at 10:20:48AM +0530, Chetan Nanda wrote: > On Mon, Jul 21, 2014 at 9:52 AM, Greg KH <greg@kroah.com> wrote: > > > On Mon, Jul 21, 2014 at 09:09:02AM +0530, Chetan Nanda wrote: > > > I try to debug the hang when unloading of driver. I am using kernel v3.10 > > > and it hangs in 'wait_for_zero_refcount'. > > > I checked that this function has been removed in kernel 3.13. > > > But I am not able to find the patch for this change. > > > > > > Is there an easy way to find the patch which cause removal of wait from > > > module unloading in v3.13. > > > > You have the full git tree, it should be very easy to find, you don't > > need help from me. > > > > Hi Greg, > > Thanks for your mail, > > I have found a thread with the discussion and a patch for removing the > wait_for_zero_refcount from module unloading, But not able to find this > patch being merged on v3.13. (have checked all patches between 3.12 and > 3.13) > http://www.gossamer-threads.com/lists/linux/kernel/1783584?do=post_view_threaded#1783584 This email tells you the exact name of the patch to search for, and the files in which it modifies, making it even easier to search for it. How are you searching the git log that you are not seeing this patch, which ended up being in the 3.13-rc1 kernel release? Finding the git commit id is an exercise left for the reader... greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* How to prevent a module from unloading when in used 2014-07-16 10:30 ` How to prevent a module from unloading when in used Chetan Nanda 2014-07-16 13:09 ` John de la Garza @ 2014-07-16 17:10 ` Abhishek Sharma 1 sibling, 0 replies; 12+ messages in thread From: Abhishek Sharma @ 2014-07-16 17:10 UTC (permalink / raw) To: kernelnewbies Hi, Is their some special reason for not using "rmmod" to unload module? rmmod will remove only the module which it is told to remove. Regards, Abhishek Sharma On Wednesday 16 July 2014 04:00 PM, Chetan Nanda wrote: > Hi, > > I am facing an issues with module unloading, > I have two modules say A, B > > A depends on B, so B is automatically loaded when A is loaded. > B module is also directly being used by the user side code via misc > interface. > > Now when I am unloading module A, via "modprobe -r A" it is also > unloading the module B which is being used by the application and > resulting in the kernel crash. > > Also, lsmod ouput shows driver B is not used by anybody. Seems "Used > By" of lsmod output is not getting updated. > > How to prevent unloading of module B in used. When unloading module > 'A' via modprobe -r > > Thanks, > Chetan Nanda > > > > _______________________________________________ > Kernelnewbies mailing list > Kernelnewbies at kernelnewbies.org > http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2014-07-21 18:42 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CAPrYoTHfEqU_8QRJKzY3gwF50JHB_b+QRc=u9MCM_A+mAsRw1A@mail.gmail.com>
2014-07-16 10:30 ` How to prevent a module from unloading when in used Chetan Nanda
2014-07-16 13:09 ` John de la Garza
[not found] ` <CAPrYoTHQFqqbskarb6RJjzZdcBiDCSFvc3uZwhOyzi5Y0a82NA@mail.gmail.com>
2014-07-16 15:27 ` Chetan Nanda
2014-07-16 16:21 ` Greg KH
2014-07-18 4:13 ` Chetan Nanda
2014-07-18 4:17 ` Greg KH
2014-07-18 6:29 ` Chetan Nanda
2014-07-21 3:39 ` Chetan Nanda
2014-07-21 4:22 ` Greg KH
2014-07-21 4:50 ` Chetan Nanda
2014-07-21 18:42 ` Greg KH
2014-07-16 17:10 ` Abhishek Sharma
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).