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

/freebsd-10.0-release/sys/ufs/ffs/
H A Dsoftdep.h177 #define WK_NEWBLK(wk) ((struct newblk *)(wk))
207 LIST_HEAD(newblkhd, newblk);
359 struct newblkhd sm_newblkhd; /* newblk deps */
360 struct newblkhd sm_newblkwr; /* writing newblk deps */
368 * A "newblk" structure is attached to a bmsafemap structure when a block
376 struct newblk { struct
379 LIST_ENTRY(newblk) nb_hash; /* Hashed lookup. */
380 LIST_ENTRY(newblk) nb_deps; /* Bmsafemap's list of newblks. */
418 struct newblk ad_block; /* Common block logic */
477 struct newblk ai_bloc
[all...]
H A Dffs_softdep.c694 SOFTDEP_TYPE(NEWBLK, newblk, "New block or frag allocation dependency");
860 static struct jnewblk *cancel_newblk(struct newblk *, struct worklist *,
936 static void newblk_freefrag(struct newblk*);
937 static void free_newblk(struct newblk *);
967 int, struct newblk **);
968 static int newblk_lookup(struct mount *, ufs2_daddr_t, int, struct newblk **);
2029 * 3) newblk structures identified by mount point and
2037 * dependency structures. Lookup of newblk structures is needed to
2235 * Structures and routines associated with newblk caching.
2237 LIST_HEAD(newblk_hashhead, newblk) *newblk_hashtb
2250 struct newblk *newblk; local
2286 struct newblk *newblk; local
3688 struct newblk *newblk; local
4914 struct newblk *newblk; local
5113 struct newblk *newblk; local
5491 struct newblk *newblk; local
5609 struct newblk *newblk; local
5750 struct newblk *newblk; local
6042 struct newblk *newblk; local
7127 struct newblk *newblk; local
7663 struct newblk *newblk; local
8054 struct newblk *newblk; local
8110 struct newblk *newblk; local
8235 struct newblk *newblk; local
9708 struct newblk *newblk; local
11482 struct newblk *newblk; local
12272 struct newblk *newblk; local
12477 struct newblk *newblk; local
12516 struct newblk *newblk; local
13259 struct newblk *newblk; local
[all...]
H A Dffs_alloc.c510 ufs1_daddr_t soff, newblk, blkno; local
607 if ((newblk = ffs_hashalloc(ip, dtog(fs, pref), pref,
625 blkno = newblk;
691 for (blkno = newblk, i = 0; i < len; i++, blkno += fs->fs_frag) {
738 ufs2_daddr_t soff, newblk, blkno, pref; local
834 if ((newblk = ffs_hashalloc(ip, dtog(fs, pref), pref,
851 blkno = newblk;
917 for (blkno = newblk, i = 0; i < len; i++, blkno += fs->fs_frag) {
/freebsd-10.0-release/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.c170 e2fs_daddr_t newblk, blkno; local
254 if ((newblk = (e2fs_daddr_t)ext2_hashalloc(ip, dtog(fs, pref), pref,
270 blkno = newblk;
321 for (blkno = newblk, i = 0; i < len; i++, blkno += fs->e2fs_fpb) {
H A Dext2_vnops.c1798 daddr_t lbn, newblk; local
1841 newblk = lbn - ep->e_blk + (ep->e_start_lo |
1855 newblk = lbn - nex.e_blk + (nex.e_start_lo |
1863 error = bread(ip->i_devvp, fsbtodb(fs, newblk), size, NOCRED, &bp);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzap.c149 uint64_t b, newblk; local
161 newblk = tbl->zt_nextblk;
163 newblk = zap_allocate_blocks(zap, tbl->zt_numblks * 2);
164 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;
337 uint64_t newblk; local
345 newblk = zap_allocate_blocks(zap, 1);
347 newblk << FZAP_BLOCK_SHIF
384 uint64_t newblk; local
[all...]
/freebsd-10.0-release/sbin/fsck_ffs/
H A Ddir.c556 ufs2_daddr_t lastbn, newblk; local
564 if ((newblk = allocblk(sblock.fs_frag)) == 0)
567 DIP_SET(dp, di_db[lastbn], newblk);
575 bp = getdirblk(newblk, sblock.fs_bsize);
602 freeblk(newblk, sblock.fs_frag);

Completed in 565 milliseconds