* Zero out the abd from a particular offset to the end. */
| 902 | * Zero out the abd from a particular offset to the end. |
| 903 | */ |
| 904 | void |
| 905 | abd_zero_off(abd_t *abd, size_t off, size_t size) |
| 906 | { |
| 907 | (void) abd_iterate_func(abd, off, size, abd_zero_off_cb, NULL); |
| 908 | } |
| 909 | |
| 910 | /* |
| 911 | * Iterate over two ABDs and call func incrementally on the two ABDs' data in |
no test coverage detected