Searched refs:newblk (Results 1 - 8 of 8) sorted by relevance

/freebsd-10-stable/sys/ufs/ffs/
H A Dsoftdep.h211 #define WK_NEWBLK(wk) ((struct newblk *)(wk))
241 LIST_HEAD(newblkhd, newblk);
393 struct newblkhd sm_newblkhd; /* newblk deps */
394 struct newblkhd sm_newblkwr; /* writing newblk deps */
402 * A "newblk" structure is attached to a bmsafemap structure when a block
410 struct newblk { struct
413 LIST_ENTRY(newblk) nb_hash; /* Hashed lookup. */
414 LIST_ENTRY(newblk) nb_deps; /* Bmsafemap's list of newblks. */
452 struct newblk ad_block; /* Common block logic */
512 struct newblk ai_bloc
[all...]
H A Dffs_softdep.c650 SOFTDEP_TYPE(NEWBLK, newblk, "New block or frag allocation dependency");
785 static struct jnewblk *cancel_newblk(struct newblk *, struct worklist *,
861 static void newblk_freefrag(struct newblk*);
862 static void free_newblk(struct newblk *);
892 struct newblk **);
893 static int newblk_lookup(struct mount *, ufs2_daddr_t, int, struct newblk **);
2046 * 3) newblk structures identified by mount point and
2056 * dependency structures. Lookup of newblk structures is needed to
2252 * Structures and routines associated with newblk caching.
2262 struct newblk **newblkp
2264 struct newblk *newblk; local
2298 struct newblk *newblk; local
3829 struct newblk *newblk; local
5074 struct newblk *newblk; local
5276 struct newblk *newblk; local
5656 struct newblk *newblk; local
5775 struct newblk *newblk; local
5913 struct newblk *newblk; local
6207 struct newblk *newblk; local
7302 struct newblk *newblk; local
7856 struct newblk *newblk; local
8247 struct newblk *newblk; local
8304 struct newblk *newblk; local
8431 struct newblk *newblk; local
9926 struct newblk *newblk; local
11800 struct newblk *newblk; local
12628 struct newblk *newblk; local
12840 struct newblk *newblk; local
12883 struct newblk *newblk; local
13819 struct newblk *newblk; local
[all...]
H A Dffs_alloc.c515 ufs1_daddr_t soff, newblk, blkno; local
623 if ((newblk = ffs_clusteralloc(ip, cg, pref, len)) != 0)
633 if (newblk == 0) {
652 blkno = newblk;
718 for (blkno = newblk, i = 0; i < len; i++, blkno += fs->fs_frag) {
765 ufs2_daddr_t soff, newblk, blkno, pref; local
872 if ((newblk = ffs_clusteralloc(ip, cg, pref, len)) != 0)
882 if (newblk == 0) {
900 blkno = newblk;
966 for (blkno = newblk,
[all...]
/freebsd-10-stable/sys/fs/ext2fs/
H A Dext2_subr.c74 daddr_t newblk; local
98 newblk = lbn - ep->e_blk +
105 error = bread(ip->i_devvp, fsbtodb(fs, newblk), bsize, NOCRED, &bp);
H A Dext2_alloc.c173 e2fs_daddr_t newblk, blkno; local
258 if ((newblk = (e2fs_daddr_t)ext2_hashalloc(ip, dtog(fs, pref), pref,
274 blkno = newblk;
325 for (blkno = newblk, i = 0; i < len; i++, blkno += fs->e2fs_fpb) {
H A Dext2_vnops.c1800 daddr_t lbn, newblk; local
1843 newblk = lbn - ep->e_blk + (ep->e_start_lo |
1857 newblk = lbn - nex.e_blk + (nex.e_start_lo |
1865 error = bread(ip->i_devvp, fsbtodb(fs, newblk), size, NOCRED, &bp);
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzap.c148 uint64_t b, newblk; local
160 newblk = tbl->zt_nextblk;
162 newblk = zap_allocate_blocks(zap, tbl->zt_numblks * 2);
163 tbl->zt_nextblk = newblk;
182 (newblk + 2*b+0) << bs, FTAG, &db_new, DMU_READ_NO_PREFETCH));
189 (newblk + 2*b+1) << bs, FTAG, &db_new, DMU_READ_NO_PREFETCH));
206 tbl->zt_blk = newblk;
347 uint64_t newblk; local
355 newblk = zap_allocate_blocks(zap, 1);
357 newblk << FZAP_BLOCK_SHIF
394 uint64_t newblk; local
[all...]
/freebsd-10-stable/sbin/fsck_ffs/
H A Ddir.c551 ufs2_daddr_t lastbn, newblk; local
559 if ((newblk = allocblk(sblock.fs_frag)) == 0)
562 DIP_SET(dp, di_db[lastbn], newblk);
570 bp = getdirblk(newblk, sblock.fs_bsize);
597 freeblk(newblk, sblock.fs_frag);

Completed in 159 milliseconds