Searched refs:txgoff (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/uts/common/fs/zfs/ |
H A D | dnode_sync.c | 43 int txgoff = tx->tx_txg & TXG_MASK; in dnode_increase_indirection() local 46 int new_level = dn->dn_next_nlevels[txgoff]; in dnode_increase_indirection() 487 int txgoff = tx->tx_txg & TXG_MASK; in dnode_sync_free() local 498 dnode_undirty_dbufs(&dn->dn_dirty_records[txgoff]); in dnode_sync_free() 512 dn->dn_next_nlevels[txgoff] = 0; in dnode_sync_free() 513 dn->dn_next_indblkshift[txgoff] = 0; in dnode_sync_free() 514 dn->dn_next_blksz[txgoff] = 0; in dnode_sync_free() 549 int txgoff = tx->tx_txg & TXG_MASK; in dnode_sync() local 550 list_t *list = &dn->dn_dirty_records[txgoff]; in dnode_sync() 598 if (dn->dn_next_type[txgoff] != 0) { in dnode_sync() [all …]
|
H A D | dnode.c | 1338 int txgoff = tx->tx_txg & TXG_MASK; in dnode_free() local 1358 if (list_link_active(&dn->dn_dirty_link[txgoff])) { in dnode_free() 1359 list_remove(&dn->dn_objset->os_dirty_dnodes[txgoff], dn); in dnode_free() 1360 list_insert_tail(&dn->dn_objset->os_free_dnodes[txgoff], dn); in dnode_free() 1440 uint64_t txgoff = tx->tx_txg & TXG_MASK; in dnode_new_blkid() local 1486 ASSERT3U(new_nlevels, >, dn->dn_next_nlevels[txgoff]); in dnode_new_blkid() 1487 dn->dn_next_nlevels[txgoff] = new_nlevels; in dnode_new_blkid() 1498 list = &dn->dn_dirty_records[txgoff]; in dnode_new_blkid() 1500 dr_next = list_next(&dn->dn_dirty_records[txgoff], dr); in dnode_new_blkid() 1505 list_remove(&dn->dn_dirty_records[txgoff], dr); in dnode_new_blkid() [all …]
|
H A D | dmu_objset.c | 1121 int txgoff; in dmu_objset_sync() local 1176 txgoff = tx->tx_txg & TXG_MASK; in dmu_objset_sync() 1185 offsetof(dnode_t, dn_dirty_link[txgoff])); in dmu_objset_sync() 1188 dmu_objset_sync_dnodes(&os->os_free_dnodes[txgoff], newlist, tx); in dmu_objset_sync() 1189 dmu_objset_sync_dnodes(&os->os_dirty_dnodes[txgoff], newlist, tx); in dmu_objset_sync() 1191 list = &DMU_META_DNODE(os)->dn_dirty_records[txgoff]; in dmu_objset_sync()
|
H A D | dmu_send.c | 1873 int txgoff = dmu_tx_get_txg(tx) & TXG_MASK; in save_resume_state() local 1895 ASSERT3U(object, >=, rwa->os->os_dsl_dataset->ds_resume_object[txgoff]); in save_resume_state() 1896 ASSERT(object != rwa->os->os_dsl_dataset->ds_resume_object[txgoff] || in save_resume_state() 1897 offset >= rwa->os->os_dsl_dataset->ds_resume_offset[txgoff]); in save_resume_state() 1899 rwa->os->os_dsl_dataset->ds_resume_bytes[txgoff]); in save_resume_state() 1901 rwa->os->os_dsl_dataset->ds_resume_object[txgoff] = object; in save_resume_state() 1902 rwa->os->os_dsl_dataset->ds_resume_offset[txgoff] = offset; in save_resume_state() 1903 rwa->os->os_dsl_dataset->ds_resume_bytes[txgoff] = rwa->bytes_read; in save_resume_state()
|
H A D | dbuf.c | 1147 int txgoff = tx->tx_txg & TXG_MASK; in dbuf_dirty() local 1235 dn->dn_next_nlevels[txgoff] > db->db_level || in dbuf_dirty() 1316 if (dn->dn_free_ranges[txgoff] != NULL) { in dbuf_dirty() 1317 range_tree_clear(dn->dn_free_ranges[txgoff], in dbuf_dirty() 1337 list_insert_tail(&dn->dn_dirty_records[txgoff], dr); in dbuf_dirty() 1409 list_insert_tail(&dn->dn_dirty_records[txgoff], dr); in dbuf_dirty()
|