Searched refs:f_bfree (Results 26 - 50 of 73) sorted by relevance

123

/linux-master/fs/efs/
H A Dsuper.c394 buf->f_bfree = sbi->data_free; /* free data blocks */
/linux-master/fs/zonefs/
H A Dsuper.c455 buf->f_bfree = 0;
457 buf->f_bfree = buf->f_blocks - sbi->s_used_blocks;
458 buf->f_bavail = buf->f_bfree;
/linux-master/fs/nilfs2/
H A Dsuper.c659 buf->f_bfree = nfreeblocks;
660 buf->f_bavail = (buf->f_bfree >= nrsvblocks) ?
661 (buf->f_bfree - nrsvblocks) : 0;
/linux-master/include/uapi/linux/
H A Dcoda.h232 int32_t f_bfree; member in struct:coda_statfs
/linux-master/fs/ceph/
H A Dquota.c537 buf->f_bfree = free;
/linux-master/fs/adfs/
H A Dsuper.c212 buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
/linux-master/fs/ext2/
H A Dsuper.c1459 buf->f_bfree = ext2_count_free_blocks(sb);
1460 es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
1461 buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
1462 if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
/linux-master/fs/vboxsf/
H A Dsuper.c309 stat->f_bfree = shfl_volinfo.available_allocation_bytes;
/linux-master/fs/xfs/
H A Dxfs_super.c855 /* make sure statp->f_bfree does not underflow */
856 statp->f_bfree = max_t(int64_t, 0,
858 statp->f_bavail = statp->f_bfree;
860 fakeinos = XFS_FSB_TO_INO(mp, statp->f_bfree);
888 statp->f_bavail = statp->f_bfree = xfs_rtx_to_rtb(mp, freertx);
/linux-master/fs/coda/
H A Dupcall.c562 sfs->f_bfree = outp->coda_statfs.stat.f_bfree;
/linux-master/fs/befs/
H A Dlinuxvfs.c958 buf->f_bfree = BEFS_SB(sb)->num_blocks - BEFS_SB(sb)->used_blocks;
959 buf->f_bavail = buf->f_bfree;
/linux-master/fs/exfat/
H A Dsuper.c79 buf->f_bfree = buf->f_blocks - sbi->used_clusters;
80 buf->f_bavail = buf->f_bfree;
/linux-master/fs/minix/
H A Dinode.c400 buf->f_bfree = minix_count_free_blocks(sb);
401 buf->f_bavail = buf->f_bfree;
/linux-master/fs/f2fs/
H A Dsuper.c1775 buf->f_bfree = buf->f_bavail =
1817 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
1820 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1821 buf->f_bfree = 0;
1823 buf->f_bfree -= sbi->unusable_block_count;
1826 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1827 buf->f_bavail = buf->f_bfree -
/linux-master/fs/ufs/
H A Dsuper.c1427 buf->f_bfree = ufs_freefrags(uspi);
1430 buf->f_bavail = (buf->f_bfree > uspi->s_root_blocks)
1431 ? (buf->f_bfree - uspi->s_root_blocks) : 0;
/linux-master/fs/nfsd/
H A Dnfsxdr.c546 *p++ = cpu_to_be32(stat->f_bfree);
/linux-master/fs/squashfs/
H A Dsuper.c573 buf->f_bfree = buf->f_bavail = 0;
/linux-master/fs/omfs/
H A Dinode.c284 buf->f_bfree = buf->f_bavail = buf->f_ffree =
/linux-master/fs/bfs/
H A Dinode.c226 buf->f_bfree = buf->f_bavail = info->si_freeb;
/linux-master/fs/affs/
H A Dsuper.c620 buf->f_bfree = free;
/linux-master/fs/hpfs/
H A Dsuper.c191 buf->f_bfree = sbi->sb_n_free;
/linux-master/fs/romfs/
H A Dsuper.c417 buf->f_bfree = buf->f_bavail = buf->f_ffree;
/linux-master/fs/orangefs/
H A Dsuper.c210 buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
/linux-master/fs/udf/
H A Dsuper.c2393 buf->f_bfree = udf_count_free(sb);
2394 buf->f_bavail = buf->f_bfree;
2401 + buf->f_bfree;
2402 buf->f_ffree = buf->f_bfree;
/linux-master/fs/btrfs/
H A Dsuper.c1730 buf->f_bfree = buf->f_blocks - (div_u64(total_used, factor) >> bits);
1735 if (buf->f_bfree >= block_rsv->size >> bits)
1736 buf->f_bfree -= block_rsv->size >> bits;
1738 buf->f_bfree = 0;

Completed in 454 milliseconds

123