Searched refs:f_bsize (Results 1 - 25 of 63) sorted by relevance

123

/freebsd-13-stable/tools/regression/tmpfs/
H A Dt_statvfs47 [ ${pagesize} -eq ${f_bsize} ] || die
48 [ $((${f_bsize} * ${f_blocks})) -ge $((10 * 1024 * 1024)) ] || die
49 [ $((${f_bsize} * ${f_blocks})) -le \
H A Dh_tools.c247 (void)printf("f_bsize=%ju\n", (uintmax_t)buf.f_bsize);
/freebsd-13-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dt_statvfs.sh51 [ ${pagesize} -eq ${f_bsize} ] || \
53 [ $((${f_bsize} * ${f_blocks})) -ge $((10 * 1024 * 1024)) ] || \
55 [ $((${f_bsize} * ${f_blocks})) -le \
H A Dh_tools.c286 (void)printf("f_bsize=%lu\n", buf.f_bsize);
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-statvfs.c35 to->f_bsize = from->f_bsize;
36 to->f_frsize = from->f_bsize; /* no exact equivalent */
H A Dbsd-statvfs.h49 unsigned long f_bsize; /* File system block size. */ member in struct:statvfs
/freebsd-13-stable/contrib/netbsd-tests/bin/df/
H A Dgetmntinfo.c77 total = (int64_t)(u_long)sf->f_blocks * sf->f_bsize;
79 sf->f_bfree = (total - used) / sf->f_bsize;
81 used) / (int)sf->f_bsize;
97 .f_bsize = BSIZE,
129 .f_bsize = BSIZE,
161 .f_bsize = BSIZE,
190 .f_bsize = BSIZE,
/freebsd-13-stable/sys/sys/
H A Dstatvfs.h66 unsigned long f_bsize; /* Size of blocks counted above */ member in struct:statvfs
/freebsd-13-stable/lib/libc/gen/
H A Dstatvfs.c124 to->f_bsize = from->f_iosize;
125 to->f_frsize = from->f_bsize;
152 SHOW(f_bsize);
/freebsd-13-stable/bin/df/
H A Ddf.c127 totalbuf.f_bsize = DEV_BSIZE;
354 prthumanval(" {:blocks/%6s}", sfsp->f_blocks * sfsp->f_bsize);
355 prthumanval(" {:used/%6s}", used * sfsp->f_bsize);
356 prthumanval(" {:available/%6s}", sfsp->f_bavail * sfsp->f_bsize);
455 if (sfsp->f_bsize == 0) {
458 sfsp->f_bsize = 512;
476 sfsp->f_bsize, blocksize),
477 mwp->used, fsbtoblk(used, sfsp->f_bsize, blocksize),
479 sfsp->f_bsize, blocksize));
514 bsize = statfsp->f_bsize / totalfs
[all...]
/freebsd-13-stable/lib/libc/sys/
H A Dcompat-ino64.h82 sf->f_bsize = sf11->f_bsize;
/freebsd-13-stable/crypto/openssh/
H A Dsftp-client.h43 u_int64_t f_bsize; member in struct:sftp_statvfs
/freebsd-13-stable/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dvfs.h48 #define vfs_bsize mnt_stat.f_bsize
/freebsd-13-stable/sys/cddl/compat/opensolaris/sys/
H A Dvfs.h47 #define vfs_bsize mnt_stat.f_bsize
/freebsd-13-stable/sys/fs/unionfs/
H A Dunion_vfsops.c411 lbsize = mstat->f_bsize;
425 sbp->f_bsize = mstat->f_bsize;
428 if (mstat->f_bsize != lbsize)
430 mstat->f_bsize;
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_super.c153 statp->f_bsize < SPA_MAXBLOCKSIZE) {
155 statp->f_bsize <<= 1;
/freebsd-13-stable/sys/compat/linux/
H A Dlinux_stats.c325 l_long f_bsize; member in struct:l_statfs
388 bsd_statfs->f_bsize;
396 linux_statfs->f_bsize = bsd_statfs->f_bsize;
405 linux_statfs->f_frsize = bsd_statfs->f_bsize;
443 linux_statfs->f_bsize = bsd_statfs->f_bsize;
452 linux_statfs->f_frsize = bsd_statfs->f_bsize;
/freebsd-13-stable/sys/fs/autofs/
H A Dautofs_vfsops.c198 sbp->f_bsize = S_BLKSIZE;
/freebsd-13-stable/sys/fs/fdescfs/
H A Dfdesc_vfsops.c224 sbp->f_bsize = DEV_BSIZE;
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dstatfs.cc158 EXPECT_EQ(1024ul, statbuf.f_bsize);
/freebsd-13-stable/contrib/kyua/utils/fs/
H A Doperations.cpp443 return units::bytes(uint64_t(buf.f_bsize) * buf.f_bavail);
451 return units::bytes(uint64_t(buf.f_bsize) * buf.f_bavail);
/freebsd-13-stable/sys/fs/nullfs/
H A Dnull_vfsops.c331 sbp->f_bsize = mstat->f_bsize;
/freebsd-13-stable/contrib/netbsd-tests/fs/puffs/h_dtfs/
H A Ddtfs_vfsops.c174 * unsigned long f_bsize; file system block size
220 sbp->f_bsize = sbp->f_frsize = sbp->f_iosize = pgsize;
/freebsd-13-stable/sys/fs/devfs/
H A Ddevfs_vfsops.c230 sbp->f_bsize = DEV_BSIZE;
/freebsd-13-stable/usr.sbin/lpr/lpd/
H A Drecvjob.c337 spacefree = sfb.f_bavail * (sfb.f_bsize / 512);

Completed in 118 milliseconds

123