Skip to content

Commit d30ff89

Browse files
stefanhaRHMiklos Szeredi
authored andcommitted
virtiofs: drop __exit from virtio_fs_sysfs_exit()
virtio_fs_sysfs_exit() is called by: - static int __init virtio_fs_init(void) - static void __exit virtio_fs_exit(void) Remove __exit from virtio_fs_sysfs_exit() since virtio_fs_init() is not an __exit function. Reported-by: kernel test robot <[email protected]> Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ Signed-off-by: Stefan Hajnoczi <[email protected]> Reviewed-by: Randy Dunlap <[email protected]> Tested-by: Randy Dunlap <[email protected]> # build-tested Signed-off-by: Miklos Szeredi <[email protected]>
1 parent fda0b98 commit d30ff89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/fuse/virtio_fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ static int __init virtio_fs_sysfs_init(void)
15881588
return 0;
15891589
}
15901590

1591-
static void __exit virtio_fs_sysfs_exit(void)
1591+
static void virtio_fs_sysfs_exit(void)
15921592
{
15931593
kset_unregister(virtio_fs_kset);
15941594
virtio_fs_kset = NULL;

0 commit comments

Comments
 (0)