| 1127 | } |
| 1128 | |
| 1129 | static arc_buf_t * |
| 1130 | dbuf_alloc_arcbuf(dmu_buf_impl_t *db) |
| 1131 | { |
| 1132 | spa_t *spa = db->db_objset->os_spa; |
| 1133 | |
| 1134 | return (arc_alloc_buf(spa, db, DBUF_GET_BUFC_TYPE(db), db->db.db_size)); |
| 1135 | } |
| 1136 | |
| 1137 | /* |
| 1138 | * Loan out an arc_buf for read. Return the loaned arc_buf. |
no test coverage detected