Searched refs:bpref (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.3-release/usr.sbin/makefs/ffs/
H A Dffs_alloc.c91 ffs_alloc(struct inode *ip, daddr_t lbn __unused, daddr_t bpref, int size, argument
105 if (bpref >= fs->fs_size)
106 bpref = 0;
107 if (bpref == 0)
110 cg = dtog(fs, bpref);
111 bno = ffs_hashalloc(ip, cg, bpref, size, ffs_alloccg);
292 ffs_alloccg(struct inode *ip, int cg, daddr_t bpref, int size) argument
316 bno = ffs_alloccgblk(ip, bp, bpref);
338 bno = ffs_alloccgblk(ip, bp, bpref);
339 bpref
378 ffs_alloccgblk(struct inode *ip, struct buf *bp, daddr_t bpref) argument
532 ffs_mapsearch(struct fs *fs, struct cg *cgp, daddr_t bpref, int allocsiz) argument
[all...]
/freebsd-10.3-release/sys/fs/ext2fs/
H A Dext2_alloc.c83 ext2_alloc(struct inode *ip, daddr_t lbn, e4fs_daddr_t bpref, int size, argument
108 if (bpref >= fs->e2fs->e2fs_bcount)
109 bpref = 0;
110 if (bpref == 0)
113 cg = dtog(fs, bpref);
114 bno = (daddr_t)ext2_hashalloc(ip, cg, bpref, fs->e2fs_bsize,
640 ext2_alloccg(struct inode *ip, int cg, daddr_t bpref, int size) argument
673 if (dtog(fs, bpref) != cg)
674 bpref = 0;
675 if (bpref !
772 ext2_clusteralloc(struct inode *ip, int cg, daddr_t bpref, int len) argument
1055 ext2_mapsearch(struct m_ext2fs *fs, char *bbp, daddr_t bpref) argument
[all...]
/freebsd-10.3-release/sys/ufs/ffs/
H A Dffs_alloc.c101 typedef ufs2_daddr_t allocfcn_t(struct inode *ip, u_int cg, ufs2_daddr_t bpref,
147 ffs_alloc(ip, lbn, bpref, size, flags, cred, bnp)
149 ufs2_daddr_t lbn, bpref;
193 if (bpref >= fs->fs_size)
194 bpref = 0;
195 if (bpref == 0)
198 cg = dtog(fs, bpref);
199 bno = ffs_hashalloc(ip, cg, bpref, size, size, ffs_alloccg);
242 ffs_realloccg(ip, lbprev, bprev, bpref, osize, nsize, flags, cred, bpp)
246 ufs2_daddr_t bpref;
[all...]

Completed in 109 milliseconds