kmod.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Kmod: The Kernel Module Loader
  2. Kirk Petersen
  3. Kmod is a simple replacement for kerneld.  It consists of a 
  4. request_module() replacement and a kernel thread called kmod.  When the
  5. kernel requests a module, the kmod wakes up and execve()s modprobe,
  6. passing it the name that was requested.
  7. If you have the /proc filesystem mounted, you can set the path of
  8. modprobe (where the kernel looks for it) by doing:
  9. echo "/sbin/modprobe" > /proc/sys/kernel/modprobe
  10. To periodically unload unused modules, put something like the following
  11. in root's crontab entry:
  12. 0-59/5 * * * * /sbin/rmmod -a
  13. Kmod only loads modules.  Kerneld could do more (although
  14. nothing in the standard kernel used its other features).  If you
  15. require features such as request_route, we suggest that you take
  16. a similar approach.  A simple request_route function could be called,
  17. and a kroute kernel thread could be sent off to do the work.  But
  18. we should probably keep this to a minimum.
  19. Kerneld also had a mechanism for storing device driver settings.  This
  20. can easily be done with modprobe.  When a module is unloaded, modprobe
  21. could look at a per-driver-configurable location (/proc/sys/drivers/blah)
  22. for device driver settings and save them to a file.  When a module
  23. is loaded, simply cat that file back to that location in the proc
  24. filesystem.  Or perhaps a script could be a setting in /etc/modules.conf.
  25. There are many user-land methods that will work (I prefer using /proc,
  26. myself).
  27. If kerneld worked, why replace it?
  28. - kerneld used SysV IPC, which can now be made into a module.  Besides,
  29.   SysV IPC is ugly and should therefore be avoided (well, certainly for
  30.   kernel level stuff)
  31. - both kmod and kerneld end up doing the same thing (calling modprobe),
  32.   so why not skip the middle man?
  33. - removing kerneld related stuff from ipc/msg.c made it 40% smaller
  34. - kmod reports errors through the normal kernel mechanisms, which avoids
  35.   the chicken and egg problem of kerneld and modular Unix domain sockets
  36. Keith Owens <kaos@ocs.com.au> December 1999
  37. The combination of kmod and modprobe can loop, especially if modprobe uses a
  38. system call that requires a module.  If modules.dep does not exist and modprobe
  39. was started with the -s option (kmod does this), modprobe tries to syslog() a
  40. message.  syslog() needs Unix sockets, if Unix sockets are modular then kmod
  41. runs "modprobe -s net-pf-1".  This runs a second copy of modprobe which
  42. complains that modules.dep does not exist, tries to use syslog() and starts yet
  43. another copy of modprobe.  This is not the only possible kmod/modprobe loop,
  44. just the most common.
  45. To detect loops caused by "modprobe needs a service which is in a module", kmod
  46. limits the number of concurrent kmod issued modprobes.  See MAX_KMOD_CONCURRENT
  47. in kernel/kmod.c.  When this limit is exceeded, the kernel issues message "kmod:
  48. runaway modprobe loop assumed and stopped".
  49. Note for users building a heavily modularised system.  It is a good idea to
  50. create modules.dep after installing the modules and before booting a kernel for
  51. the first time.  "depmod -ae m.n.p" where m.n.p is the new kernel version.