vote up 6 vote down star
3

If I load a kernel module and list the loaded modules with lsmod, I can get the "use count" of the module (number of other modules with a reference to the module). Is there a way to figure out what is using a module, though?

The issue is that a module I am developing insists its use count is 1 and thus I cannot use rmmod to unload it, but its "by" column is empty. This means that every time I want to re-compile and re-load the module, I have to reboot the machine (or, at least, I can't figure out any other way to unload it).

flag

"what" in which terms? what code? what module? what user? what program? tho i slightly get the feeling this is not programming related :) interesting none-the-less – Johannes Schaub - litb Jan 16 at 1:18
Well, it is programming related, since I'm asking because I'm writing a kernel module. – mipadi Jan 16 at 1:21
please clarify the question to show the programming problem you are trying to solve. – Norman Ramsey Jan 16 at 1:23
The question is pretty clear to me, Norman: how can he find out what's keeping rmmod from removing his experimental module?; how can avoid having to reboot every time he compiles a new version? – Die in Sente Jan 16 at 3:29

4 Answers

vote up 2 vote down check

rmmod has a --force parameter. If you know the stuff your module does, and have a kernel configured to support forcing unload, that might work. That's to save you from having to restart until you fixed the problem with the ref-counting), but it won't show you the cause of the load of your module. I think it's not possible to get why the module was loaded in the first place (i.e which exact code-path). Maybe dmesg has logged something useful or you can add some useful logging into your module code.

link|flag
vote up 1 vote down

All you get are a list of which modules depend on which other modules (the Used by column in lsmod). You can't write a program to tell why the module was loaded, if it is still needed for anything, or what might break if you unload it and everything that depends on it.

link|flag
vote up 0 vote down

It says on the Linux Kernel Module Programming Guide that the use count of a module is controlled by the functions try_module_get and try_module_put. Perhaps you can find where these functions are called for your module.

link|flag
vote up -1 vote down

You might try lsof or fuser.

link|flag
Did you actually try this? – Robert Gamble Jan 16 at 1:24
I thought of that initially, but it does't work. – mipadi Jan 16 at 1:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.