MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vdev_dirty_leaves

Function vdev_dirty_leaves

freebsd/contrib/openzfs/module/zfs/vdev.c:2580–2588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2578}
2579
2580void
2581vdev_dirty_leaves(vdev_t *vd, int flags, uint64_t txg)
2582{
2583 for (int c = 0; c < vd->vdev_children; c++)
2584 vdev_dirty_leaves(vd->vdev_child[c], flags, txg);
2585
2586 if (vd->vdev_ops->vdev_op_leaf)
2587 vdev_dirty(vd->vdev_top, flags, vd, txg);
2588}
2589
2590/*
2591 * DTLs.

Callers 2

spa_vdev_remove_logFunction · 0.85
spa_vdev_remove_topFunction · 0.85

Calls 1

vdev_dirtyFunction · 0.85

Tested by

no test coverage detected