Hacker News new | ask | show | jobs
by O_H_E 2999 days ago
May I ask, how is it possible to prevent unloading the module?
1 comments

The module takes an extra reference count to itself upon initialization and never decrements it, so rmmod will fail because the module will be "in use".
Nice ;)