fuse: add __exit to fuse_ctl_cleanup
fuse_ctl_cleanup is only called by __exit fuse_exit Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
This commit is contained in:
Родитель
d1db0eea85
Коммит
7736e8cc51
|
@ -348,7 +348,7 @@ int __init fuse_ctl_init(void)
|
||||||
return register_filesystem(&fuse_ctl_fs_type);
|
return register_filesystem(&fuse_ctl_fs_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fuse_ctl_cleanup(void)
|
void __exit fuse_ctl_cleanup(void)
|
||||||
{
|
{
|
||||||
unregister_filesystem(&fuse_ctl_fs_type);
|
unregister_filesystem(&fuse_ctl_fs_type);
|
||||||
}
|
}
|
||||||
|
|
|
@ -725,7 +725,7 @@ int fuse_dev_init(void);
|
||||||
void fuse_dev_cleanup(void);
|
void fuse_dev_cleanup(void);
|
||||||
|
|
||||||
int fuse_ctl_init(void);
|
int fuse_ctl_init(void);
|
||||||
void fuse_ctl_cleanup(void);
|
void __exit fuse_ctl_cleanup(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate a request
|
* Allocate a request
|
||||||
|
|
Загрузка…
Ссылка в новой задаче