Home
last modified time | relevance | path

Searched refs:fsbuf (Results 1 – 2 of 2) sorted by relevance

/original-bsd/usr.sbin/quotaon/
H A Dquotaon.c212 struct statfs fsbuf; local
214 if (statfs(fs->fs_file, &fsbuf) < 0 ||
215 strcmp(fsbuf.f_mntonname, fs->fs_file) ||
216 strcmp(fsbuf.f_mntfromname, fs->fs_spec)) {
220 if (fsbuf.f_flags & MNT_RDONLY) {
/original-bsd/sbin/savecore/
H A Dsavecore.c509 struct statfs fsbuf; in check_space() local
518 if (statfs(dirname, &fsbuf) < 0) { in check_space()
522 spacefree = (fsbuf.f_bavail * fsbuf.f_bsize) / 1024; in check_space()