| 1936 | } |
| 1937 | |
| 1938 | static void |
| 1939 | dnode_dirty_l1(dnode_t *dn, uint64_t l1blkid, dmu_tx_t *tx) |
| 1940 | { |
| 1941 | dmu_buf_impl_t *db = dbuf_hold_level(dn, 1, l1blkid, FTAG); |
| 1942 | if (db != NULL) { |
| 1943 | dmu_buf_will_dirty(&db->db, tx); |
| 1944 | dbuf_rele(db, FTAG); |
| 1945 | } |
| 1946 | } |
| 1947 | |
| 1948 | /* |
| 1949 | * Dirty all the in-core level-1 dbufs in the range specified by start_blkid |
no test coverage detected