* Initialize a cursor at the beginning of the ZAP object. The entire * ZAP object will be prefetched. */
| 1496 | * ZAP object will be prefetched. |
| 1497 | */ |
| 1498 | void |
| 1499 | zap_cursor_init(zap_cursor_t *zc, objset_t *os, uint64_t zapobj) |
| 1500 | { |
| 1501 | zap_cursor_init_impl(zc, os, zapobj, 0, B_TRUE); |
| 1502 | } |
| 1503 | |
| 1504 | /* |
| 1505 | * Initialize a cursor at the beginning, but request that we not prefetch |
no test coverage detected