Lines Matching defs:txg
550 dprintf("os=%p obj=%llu txg=%llu blocksize=%d ibs=%d\n", dn->dn_objset,
1264 uint64_t txg = tx->tx_txg;
1276 ASSERT(dn->dn_free_txg == 0 || dn->dn_free_txg >= txg);
1290 if (list_link_active(&dn->dn_dirty_link[txg & TXG_MASK])) {
1298 ASSERT0(dn->dn_next_bonuslen[txg&TXG_MASK]);
1299 ASSERT0(dn->dn_next_blksz[txg&TXG_MASK]);
1300 ASSERT0(dn->dn_next_bonustype[txg&TXG_MASK]);
1302 dprintf_ds(os->os_dsl_dataset, "obj=%llu txg=%llu\n",
1303 dn->dn_object, txg);
1305 if (dn->dn_free_txg > 0 && dn->dn_free_txg <= txg) {
1306 list_insert_tail(&os->os_free_dnodes[txg&TXG_MASK], dn);
1308 list_insert_tail(&os->os_dirty_dnodes[txg&TXG_MASK], dn);
1334 dprintf("dn=%p txg=%llu\n", dn, tx->tx_txg);
1656 * - The dirty space accounting will put pressure on the txg sync
1720 dprintf_dnode(dn, "blkid=%llu nblks=%llu txg=%llu\n",
1745 /* return TRUE if this blkid was freed in a recent txg, or FALSE if it wasn't */
1809 * the amount of memory in use by the currently open txg.
1846 int lvl, uint64_t blkfill, uint64_t txg)
1861 ASSERT(txg == 0 || !hole);
1893 if (db != NULL && txg != 0 && (db->db_blkptr == NULL ||
1894 db->db_blkptr->blk_birth <= txg ||
1931 (hole || bp[i].blk_birth > txg))
1967 * dnode_next_offset(mdn, flags, offset, 0, DNODES_PER_BLOCK, txg);
1969 * Only finds objects that have new contents since txg (ie.
1979 int minlvl, uint64_t blkfill, uint64_t txg)
2007 flags, offset, lvl, blkfill, txg);
2014 flags, offset, lvl, blkfill, txg);
2021 if ((flags & DNODE_FIND_HOLE) && error == ESRCH && txg == 0 &&