ahrens commented on this pull request.


> +     for (uint64_t i = 0; i < spa->spa_root_vdev->vdev_children; i++) {
+               vdev_t *vd = spa->spa_root_vdev->vdev_child[i];
+               vdev_trim_info_t *vti = kmem_zalloc(sizeof (*vti), KM_SLEEP);
+               vti->vti_vdev = vd;
+               vti->vti_done_cb = (void (*)(void *))spa_vdev_man_trim_done;
+               vti->vti_done_arg = spa;
+               spa->spa_num_man_trimming++;
+
+               vd->vdev_trim_prog = 0;
+               (void) taskq_dispatch(spa->spa_man_trim_taskq,
+                   (void (*)(void *))vdev_man_trim, vti, TQ_SLEEP);
+       }
+       spa_config_exit(spa, SCL_CONFIG, FTAG);
+       time_update_tx = spa_trim_update_time(spa, gethrestime_sec(), 0);
+       mutex_exit(&spa->spa_man_trim_lock);
+       /* mustn't hold spa_man_trim_lock to prevent deadlock /w syncing ctx */

dmu_tx_commit() never waits for spa_sync().

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/openzfs/openzfs/pull/172#discussion_r116150300
------------------------------------------
openzfs-developer
Archives: https://openzfs.topicbox.com/groups/developer/
Powered by Topicbox: https://topicbox.com

Reply via email to