* Compares the contents of two ABDs. */
| 997 | * Compares the contents of two ABDs. |
| 998 | */ |
| 999 | int |
| 1000 | abd_cmp(abd_t *dabd, abd_t *sabd) |
| 1001 | { |
| 1002 | ASSERT3U(dabd->abd_size, ==, sabd->abd_size); |
| 1003 | return (abd_iterate_func2(dabd, sabd, 0, 0, dabd->abd_size, |
| 1004 | abd_cmp_cb, NULL)); |
| 1005 | } |
| 1006 | |
| 1007 | /* |
| 1008 | * Iterate over code ABDs and a data ABD and call @func_raidz_gen. |