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 28efcbf commit 2ccf4d3Copy full SHA for 2ccf4d3
module/os/linux/zfs/zfs_ioctl_os.c
@@ -283,7 +283,7 @@ zfsdev_detach(void)
283
#endif
284
285
static int __init
286
-_init(void)
+openzfs_init(void)
287
{
288
int error;
289
@@ -309,7 +309,7 @@ _init(void)
309
}
310
311
static void __exit
312
-_fini(void)
+openzfs_fini(void)
313
314
zfs_sysfs_fini();
315
zfs_kmod_fini();
@@ -319,8 +319,8 @@ _fini(void)
319
320
321
#if defined(_KERNEL)
322
-module_init(_init);
323
-module_exit(_fini);
+module_init(openzfs_init);
+module_exit(openzfs_fini);
324
325
326
ZFS_MODULE_DESCRIPTION("ZFS");
0 commit comments