ERROR: Removing '': Device or resource busy


     今天调试内核模块编程时,出现了ERROR: Removing  '': Device or resource busy 的错误。主要是我rmmod模块的时候出现的错误。

后来上google查了下。是因为我的模块中没有exit函数或者cleanup_module()函数。


 解决办法:改了下void cleanup_module(void)函数。就OK 了。

你可能感兴趣的:(编程,Module,Google)