| 1538 | } |
| 1539 | |
| 1540 | static void |
| 1541 | ztest_object_unlock(ztest_ds_t *zd, uint64_t object) |
| 1542 | { |
| 1543 | rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)]; |
| 1544 | |
| 1545 | ztest_rll_unlock(rll); |
| 1546 | } |
| 1547 | |
| 1548 | static rl_t * |
| 1549 | ztest_range_lock(ztest_ds_t *zd, uint64_t object, uint64_t offset, |
no test coverage detected