* Copy from sabd to dabd starting from soff and doff. */
| 980 | * Copy from sabd to dabd starting from soff and doff. |
| 981 | */ |
| 982 | void |
| 983 | abd_copy_off(abd_t *dabd, abd_t *sabd, size_t doff, size_t soff, size_t size) |
| 984 | { |
| 985 | (void) abd_iterate_func2(dabd, sabd, doff, soff, size, |
| 986 | abd_copy_off_cb, NULL); |
| 987 | } |
| 988 | |
| 989 | /*ARGSUSED*/ |
| 990 | static int |
no test coverage detected