mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 06:42:31 +00:00
rbd: add __init/__exit annotations
Add __init/__exit annotation to init/cleanup helpers which are only called once in the module. Signed-off-by: Chengguang Xu <cgxu519@gmx.com> Reviewed-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
parent
3167893ae6
commit
7d8dc53414
@ -6067,7 +6067,7 @@ static ssize_t rbd_remove_single_major(struct bus_type *bus,
|
|||||||
* create control files in sysfs
|
* create control files in sysfs
|
||||||
* /sys/bus/rbd/...
|
* /sys/bus/rbd/...
|
||||||
*/
|
*/
|
||||||
static int rbd_sysfs_init(void)
|
static int __init rbd_sysfs_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -6082,13 +6082,13 @@ static int rbd_sysfs_init(void)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rbd_sysfs_cleanup(void)
|
static void __exit rbd_sysfs_cleanup(void)
|
||||||
{
|
{
|
||||||
bus_unregister(&rbd_bus_type);
|
bus_unregister(&rbd_bus_type);
|
||||||
device_unregister(&rbd_root_dev);
|
device_unregister(&rbd_root_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rbd_slab_init(void)
|
static int __init rbd_slab_init(void)
|
||||||
{
|
{
|
||||||
rbd_assert(!rbd_img_request_cache);
|
rbd_assert(!rbd_img_request_cache);
|
||||||
rbd_img_request_cache = KMEM_CACHE(rbd_img_request, 0);
|
rbd_img_request_cache = KMEM_CACHE(rbd_img_request, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user