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 7457b02 commit ef0ecd4Copy full SHA for ef0ecd4
module/os/linux/zfs/zfs_ioctl_os.c
@@ -228,7 +228,7 @@ zfsdev_detach(void)
228
#endif
229
230
static int __init
231
-_init(void)
+openzfs_init(void)
232
{
233
int error;
234
@@ -254,7 +254,7 @@ _init(void)
254
}
255
256
static void __exit
257
-_fini(void)
+openzfs_fini(void)
258
259
zfs_sysfs_fini();
260
zfs_kmod_fini();
@@ -264,8 +264,8 @@ _fini(void)
264
265
266
#if defined(_KERNEL)
267
-module_init(_init);
268
-module_exit(_fini);
+module_init(openzfs_init);
+module_exit(openzfs_fini);
269
270
271
ZFS_MODULE_DESCRIPTION("ZFS");
0 commit comments