Skip to content

Commit 5e2d62d

Browse files
committed
macOS: zfs_kmod_fini() calls taskq_cancel_id()
so we must unload system_taskq_fini() after the call to zfs_kmod_fini()
1 parent 23c233f commit 5e2d62d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

module/os/macos/zfs/zfs_osx.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,12 @@ org_openzfsonosx_zfs_zvol::stop(IOService *provider)
282282

283283
super::stop(provider);
284284

285-
system_taskq_fini();
286-
287285
zfs_vfsops_fini();
288286

289287
zfs_kmod_fini();
290288

289+
system_taskq_fini();
290+
291291
ldi_fini();
292292

293293
sysctl_unregister_oid(&sysctl__zfs_kext_version);

0 commit comments

Comments
 (0)