| 1530 | } |
| 1531 | |
| 1532 | static void |
| 1533 | ztest_object_lock(ztest_ds_t *zd, uint64_t object, rl_type_t type) |
| 1534 | { |
| 1535 | rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)]; |
| 1536 | |
| 1537 | ztest_rll_lock(rll, type); |
| 1538 | } |
| 1539 | |
| 1540 | static void |
| 1541 | ztest_object_unlock(ztest_ds_t *zd, uint64_t object) |
no test coverage detected