Searched refs:txgoff (Results 1 – 5 of 5) sorted by relevance
/titanic_50/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 | 1337 int txgoff = tx->tx_txg & TXG_MASK; in dnode_free() local 1357 if (list_link_active(&dn->dn_dirty_link[txgoff])) { in dnode_free() 1358 list_remove(&dn->dn_objset->os_dirty_dnodes[txgoff], dn); in dnode_free() 1359 list_insert_tail(&dn->dn_objset->os_free_dnodes[txgoff], dn); in dnode_free() 1439 uint64_t txgoff = tx->tx_txg & TXG_MASK; in dnode_new_blkid() local 1485 ASSERT3U(new_nlevels, >, dn->dn_next_nlevels[txgoff]); in dnode_new_blkid() 1486 dn->dn_next_nlevels[txgoff] = new_nlevels; in dnode_new_blkid() 1497 list = &dn->dn_dirty_records[txgoff]; in dnode_new_blkid() 1499 dr_next = list_next(&dn->dn_dirty_records[txgoff], dr); in dnode_new_blkid() 1504 list_remove(&dn->dn_dirty_records[txgoff], dr); in dnode_new_blkid() [all …]
|
H A D | dmu_objset.c | 1090 int txgoff; in dmu_objset_sync() local 1145 txgoff = tx->tx_txg & TXG_MASK; in dmu_objset_sync() 1154 offsetof(dnode_t, dn_dirty_link[txgoff])); in dmu_objset_sync() 1157 dmu_objset_sync_dnodes(&os->os_free_dnodes[txgoff], newlist, tx); in dmu_objset_sync() 1158 dmu_objset_sync_dnodes(&os->os_dirty_dnodes[txgoff], newlist, tx); in dmu_objset_sync() 1160 list = &DMU_META_DNODE(os)->dn_dirty_records[txgoff]; in dmu_objset_sync()
|
H A D | dmu_send.c | 1893 int txgoff = dmu_tx_get_txg(tx) & TXG_MASK; in save_resume_state() local 1915 ASSERT3U(object, >=, rwa->os->os_dsl_dataset->ds_resume_object[txgoff]); in save_resume_state() 1916 ASSERT(object != rwa->os->os_dsl_dataset->ds_resume_object[txgoff] || in save_resume_state() 1917 offset >= rwa->os->os_dsl_dataset->ds_resume_offset[txgoff]); in save_resume_state() 1919 rwa->os->os_dsl_dataset->ds_resume_bytes[txgoff]); in save_resume_state() 1921 rwa->os->os_dsl_dataset->ds_resume_object[txgoff] = object; in save_resume_state() 1922 rwa->os->os_dsl_dataset->ds_resume_offset[txgoff] = offset; in save_resume_state() 1923 rwa->os->os_dsl_dataset->ds_resume_bytes[txgoff] = rwa->bytes_read; in save_resume_state()
|
H A D | dbuf.c | 1168 int txgoff = tx->tx_txg & TXG_MASK; in dbuf_dirty() local 1247 dn->dn_next_nlevels[txgoff] > db->db_level || in dbuf_dirty() 1328 if (dn->dn_free_ranges[txgoff] != NULL) { in dbuf_dirty() 1329 range_tree_clear(dn->dn_free_ranges[txgoff], in dbuf_dirty() 1349 list_insert_tail(&dn->dn_dirty_records[txgoff], dr); in dbuf_dirty() 1421 list_insert_tail(&dn->dn_dirty_records[txgoff], dr); in dbuf_dirty()
|