We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26776f commit cfc8260Copy full SHA for cfc8260
module/os/linux/zfs/zfs_ioctl_os.c
@@ -277,7 +277,7 @@ zfsdev_detach(void)
277
#endif
278
279
static int __init
280
-_init(void)
+openzfs_init(void)
281
{
282
int error;
283
@@ -303,7 +303,7 @@ _init(void)
303
}
304
305
static void __exit
306
-_fini(void)
+openzfs_fini(void)
307
308
zfs_sysfs_fini();
309
zfs_kmod_fini();
@@ -313,8 +313,8 @@ _fini(void)
313
314
315
#if defined(_KERNEL)
316
-module_init(_init);
317
-module_exit(_fini);
+module_init(openzfs_init);
+module_exit(openzfs_fini);
318
319
320
ZFS_MODULE_DESCRIPTION("ZFS");
0 commit comments