Searched refs:statfs (Results 1 - 25 of 140) sorted by relevance

123456

/linux-master/include/linux/
H A Dvfs.h5 #include <linux/statfs.h>
H A Dstatfs.h6 #include <asm/statfs.h>
29 * which doesn't make any sense for statfs.
/linux-master/arch/parisc/include/uapi/asm/
H A Dstatfs.h6 #include <asm-generic/statfs.h>
/linux-master/include/asm-generic/
H A Dstatfs.h5 #include <uapi/asm-generic/statfs.h>
/linux-master/arch/alpha/include/uapi/asm/
H A Dstatfs.h7 /* Alpha is the only 64-bit platform with 32-bit statfs. And doesn't
11 #include <asm-generic/statfs.h>
/linux-master/arch/x86/include/uapi/asm/
H A Dstatfs.h12 #include <asm-generic/statfs.h>
/linux-master/arch/arm/include/uapi/asm/
H A Dstatfs.h12 #include <asm-generic/statfs.h>
/linux-master/arch/arm64/include/uapi/asm/
H A Dstatfs.h22 #include <asm-generic/statfs.h>
/linux-master/arch/s390/include/uapi/asm/
H A Dstatfs.h5 * Derived from "include/asm-i386/statfs.h"
12 * We can't use <asm-generic/statfs.h> because in 64-bit mode
13 * we mix ints of different sizes in our struct statfs.
21 struct statfs { struct
/linux-master/fs/ecryptfs/
H A Dsuper.c18 #include <linux/statfs.h>
95 if (!lower_dentry->d_sb->s_op->statfs)
98 rc = lower_dentry->d_sb->s_op->statfs(lower_dentry, buf);
174 .statfs = ecryptfs_statfs,
/linux-master/fs/orangefs/
H A Dsuper.c182 new_op->upcall.req.statfs.fs_id = ORANGEFS_SB(sb)->fs_id;
197 (long)new_op->downcall.resp.statfs.blocks_avail,
198 (long)new_op->downcall.resp.statfs.blocks_total,
199 (long)new_op->downcall.resp.statfs.block_size,
200 (long)new_op->downcall.resp.statfs.files_total,
201 (long)new_op->downcall.resp.statfs.files_avail);
205 buf->f_bsize = new_op->downcall.resp.statfs.block_size;
208 buf->f_blocks = (sector_t) new_op->downcall.resp.statfs.blocks_total;
209 buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
210 buf->f_bavail = (sector_t) new_op->downcall.resp.statfs
[all...]
H A Ddowncall.h114 struct orangefs_statfs_response statfs; member in union:orangefs_downcall_s::__anon10422
/linux-master/fs/
H A Dstatfs.c8 #include <linux/statfs.h>
59 if (!dentry->d_sb->s_op->statfs)
66 retval = dentry->d_sb->s_op->statfs(dentry, buf);
126 static int do_statfs_native(struct kstatfs *st, struct statfs __user *p)
128 struct statfs buf;
192 SYSCALL_DEFINE2(statfs, const char __user *, pathname, struct statfs __user *, buf)
213 SYSCALL_DEFINE2(fstatfs, unsigned int, fd, struct statfs __user *, buf)
302 * The following statfs calls are copies of code from fs/statfs
[all...]
/linux-master/tools/bpf/bpftool/
H A Dtracelog.c29 struct statfs st_fs;
31 if (statfs(mnt, &st_fs) < 0)
/linux-master/arch/mips/include/uapi/asm/
H A Dstatfs.h23 struct statfs { struct
66 struct statfs64 { /* Same as struct statfs */
/linux-master/include/uapi/asm-generic/
H A Dstatfs.h23 struct statfs { struct
/linux-master/fs/cachefiles/
H A Dmain.c18 #include <linux/statfs.h>
/linux-master/tools/testing/selftests/mount/
H A Dnosymfollow-test.c178 struct statfs buf;
181 ret = statfs(TMP, &buf);
183 die("statfs failed: %s\n", strerror(errno));
/linux-master/arch/um/os-Linux/
H A Dmem.c48 struct statfs st;
51 if (statfs(dir, &st) < 0) {
/linux-master/tools/testing/selftests/mm/
H A Dhugetlb-read-hwpoison.c10 #include <sys/statfs.h>
238 static int create_hugetlbfs_file(struct statfs *file_stat)
267 struct statfs file_stat;
/linux-master/fs/9p/
H A Dvfs_super.c19 #include <linux/statfs.h>
270 .statfs = simple_statfs,
280 .statfs = v9fs_statfs,
/linux-master/tools/testing/selftests/proc/
H A Dread.c130 struct statfs sfs;
/linux-master/fs/efs/
H A Defs.h125 struct statfs;
/linux-master/tools/perf/util/
H A Dcgroup.c12 #include <sys/statfs.h>
90 struct statfs stbuf;
95 if (statfs(mnt, &stbuf) < 0)
/linux-master/tools/testing/selftests/filesystems/statmount/
H A Dstatmount_test.c12 #include <sys/statfs.h>
337 struct statfs sf;
370 ret = statfs("/", &sf);
372 ksft_test_result_fail("statfs root failed: %s\n",

Completed in 266 milliseconds

123456