-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to rmmod redirfs.ko #9
Comments
Hi I am currently a little busy. I will research on this issue in my spare time. Generally it is not an easy task to unload a file system filter (independent of OS - Windows, Linux etc). As an interim measure you can disable module unloading for your project thus requiring a reload to update. |
HI, |
HI, |
[root@localhost bak]# ./rfsctl -f roflt -c The roflt.ko can not unload, but I also hope to unload the redirfs.ko and roflt.ko. |
Dear wangchuanfang, |
Sorry, I can't find a solution either |
@wangchuanfang |
HI, I want ro rmmod redirfs.ko, and add the code:
"
static void __exit rfs_exit(void)
{
rfs_sysfs_delete();
rfs_file_cache_destory();
rfs_inode_cache_destroy();
rfs_dentry_cache_destory();
if (rfs_info_none)
rfs_info_put(rfs_info_none);
}
module_exit(rfs_exit);
"
/rfsctl/rfsctl -f roflt -i /home/test
/rfsctl/rfsctl -f roflt -R /home/test
/rfsctl/rfsctl -f roflt -u
rmmod roflt.ko
rmmod redirfs.ko
The system has been restarted, How can i rmmod redirfs.ko
The text was updated successfully, but these errors were encountered: