| 2104 | } |
| 2105 | |
| 2106 | int |
| 2107 | sa_bulk_update(sa_handle_t *hdl, sa_bulk_attr_t *attrs, int count, dmu_tx_t *tx) |
| 2108 | { |
| 2109 | int error; |
| 2110 | |
| 2111 | ASSERT(hdl); |
| 2112 | mutex_enter(&hdl->sa_lock); |
| 2113 | error = sa_bulk_update_impl(hdl, attrs, count, tx); |
| 2114 | mutex_exit(&hdl->sa_lock); |
| 2115 | return (error); |
| 2116 | } |
| 2117 | |
| 2118 | int |
| 2119 | sa_remove(sa_handle_t *hdl, sa_attr_type_t attr, dmu_tx_t *tx) |
no test coverage detected