Home
last modified time | relevance | path

Searched refs:blksfree (Results 1 – 5 of 5) sorted by relevance

/freebsd-10-stable/lib/libufs/
Dcgroup.c52 u_int8_t *blksfree; in cgballoc() local
59 blksfree = cg_blksfree(cgp); in cgballoc()
61 if (ffs_isblock(fs, blksfree, bno)) in cgballoc()
66 ffs_clrblock(fs, blksfree, (long)bno); in cgballoc()
77 u_int8_t *blksfree; in cgbfree() local
89 blksfree = cg_blksfree(cgp); in cgbfree()
92 ffs_setblock(fs, blksfree, fragno); in cgbfree()
102 blk = blkmap(fs, blksfree, bbase); in cgbfree()
109 setbit(blksfree, cgbno + i); in cgbfree()
116 blk = blkmap(fs, blksfree, bbase); in cgbfree()
[all …]
/freebsd-10-stable/sbin/fsck_ffs/
Dgjournal.c265 u_int8_t *blksfree; in blkfree() local
272 blksfree = cg_blksfree(cgp); in blkfree()
275 if (!ffs_isfreeblock(fs, blksfree, fragno)) in blkfree()
277 ffs_setblock(fs, blksfree, fragno); in blkfree()
287 blk = blkmap(fs, blksfree, bbase); in blkfree()
294 if (isset(blksfree, cgbno + i)) in blkfree()
296 setbit(blksfree, cgbno + i); in blkfree()
304 blk = blkmap(fs, blksfree, bbase); in blkfree()
310 if (ffs_isblock(fs, blksfree, fragno)) { in blkfree()
Dsuj.c648 uint8_t *blksfree; in blk_free() local
657 blksfree = cg_blksfree(cgp); in blk_free()
666 ffs_setblock(fs, blksfree, fragno); in blk_free()
673 if ((mask & (1 << i)) == 0 && isclr(blksfree, cgbno +i)) { in blk_free()
675 setbit(blksfree, cgbno + i); in blk_free()
1846 u_int8_t *blksfree; in cg_write() local
1866 blksfree = cg_blksfree(cgp); in cg_write()
1868 if (ffs_isfreeblock(fs, blksfree, cgbno)) in cg_write()
1870 if (ffs_isblock(fs, blksfree, cgbno)) { in cg_write()
1876 blk = blkmap(fs, blksfree, fragno); in cg_write()
[all …]
/freebsd-10-stable/sys/ufs/ffs/
Dffs_alloc.c1579 u_int8_t *blksfree; local
1602 blksfree = cg_blksfree(cgp);
1604 if (isclr(blksfree, bno + i))
1613 if (isclr(blksfree, bno + i))
1619 clrbit(blksfree, bno + i);
1663 u_int8_t *blksfree; local
1693 blksfree = cg_blksfree(cgp);
1718 clrbit(blksfree, bno + i);
1764 u_int8_t *blksfree; local
1771 blksfree = cg_blksfree(cgp);
[all …]
Dffs_softdep.c5101 uint8_t *blksfree; local
5106 blksfree = cg_blksfree(cgp);
5110 if (isset(blksfree, bno + i))
10695 uint8_t *blksfree; local
10739 blksfree = cg_blksfree(cgp);
10743 if (isset(blksfree, bno + i))
10795 jnewblk_rollback(jnewblk, fs, cgp, blksfree) in jnewblk_rollback() argument
10799 uint8_t *blksfree;
10813 if (isclr(blksfree, cgbno + i))
10823 ffs_setblock(fs, blksfree, fragno);
[all …]