summaryrefslogtreecommitdiffstats
path: root/module/zfs/vdev_trim.c
diff options
context:
space:
mode:
authorJorgen Lundman <[email protected]>2020-05-15 07:58:09 +0900
committerGitHub <[email protected]>2020-05-14 15:58:09 -0700
commiteeb8fae9c7dc9a116f061ee8b266f0a51fd6c8ad (patch)
treed5d9e1e4c617a75150bf76a0e3180ce0fcecde11 /module/zfs/vdev_trim.c
parent8b240f14f93822129ab9fb0674fc27f6353b0a2d (diff)
Upstream: add missing thread_exit()
Undo FreeBSD wrapper for thread_create() added to call thread_exit. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Ryan Moeller <[email protected]> Signed-off-by: Jorgen Lundman <[email protected]> Closes #10314
Diffstat (limited to 'module/zfs/vdev_trim.c')
-rw-r--r--module/zfs/vdev_trim.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/module/zfs/vdev_trim.c b/module/zfs/vdev_trim.c
index 137ba83df..b0cd40f68 100644
--- a/module/zfs/vdev_trim.c
+++ b/module/zfs/vdev_trim.c
@@ -896,6 +896,8 @@ vdev_trim_thread(void *arg)
vd->vdev_trim_thread = NULL;
cv_broadcast(&vd->vdev_trim_cv);
mutex_exit(&vd->vdev_trim_lock);
+
+ thread_exit();
}
/*