Searched refs:statfs (Results 1 – 25 of 136) sorted by relevance
123456
/Linux-v4.19/fs/orangefs/ |
D | super.c | 167 new_op->upcall.req.statfs.fs_id = ORANGEFS_SB(sb)->fs_id; in orangefs_statfs() 182 (long)new_op->downcall.resp.statfs.blocks_avail, in orangefs_statfs() 183 (long)new_op->downcall.resp.statfs.blocks_total, in orangefs_statfs() 184 (long)new_op->downcall.resp.statfs.block_size, in orangefs_statfs() 185 (long)new_op->downcall.resp.statfs.files_total, in orangefs_statfs() 186 (long)new_op->downcall.resp.statfs.files_avail); in orangefs_statfs() 190 buf->f_bsize = new_op->downcall.resp.statfs.block_size; in orangefs_statfs() 193 buf->f_blocks = (sector_t) new_op->downcall.resp.statfs.blocks_total; in orangefs_statfs() 194 buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail; in orangefs_statfs() 195 buf->f_bavail = (sector_t) new_op->downcall.resp.statfs.blocks_avail; in orangefs_statfs() [all …]
|
D | downcall.h | 114 struct orangefs_statfs_response statfs; member
|
/Linux-v4.19/fs/ |
D | statfs.c | 57 if (!dentry->d_sb->s_op->statfs) in statfs_by_dentry() 64 retval = dentry->d_sb->s_op->statfs(dentry, buf); in statfs_by_dentry() 110 static int do_statfs_native(struct kstatfs *st, struct statfs __user *p) in do_statfs_native() 112 struct statfs buf; in do_statfs_native() 176 SYSCALL_DEFINE2(statfs, const char __user *, pathname, struct statfs __user *, buf) in SYSCALL_DEFINE2() argument 197 SYSCALL_DEFINE2(fstatfs, unsigned int, fd, struct statfs __user *, buf) in SYSCALL_DEFINE2() 286 COMPAT_SYSCALL_DEFINE2(statfs, const char __user *, pathname, struct compat_statfs __user *, buf) in COMPAT_SYSCALL_DEFINE2() argument
|
/Linux-v4.19/fs/ecryptfs/ |
D | super.c | 111 if (!lower_dentry->d_sb->s_op->statfs) in ecryptfs_statfs() 114 rc = lower_dentry->d_sb->s_op->statfs(lower_dentry, buf); in ecryptfs_statfs() 189 .statfs = ecryptfs_statfs,
|
/Linux-v4.19/arch/um/os-Linux/ |
D | mem.c | 26 struct statfs st; in check_tmpfs() 29 if (statfs(dir, &st) < 0) { in check_tmpfs()
|
/Linux-v4.19/tools/perf/trace/strace/groups/ |
D | file | 17 statfs
|
/Linux-v4.19/arch/s390/include/uapi/asm/ |
D | statfs.h | 21 struct statfs { struct
|
/Linux-v4.19/arch/powerpc/include/uapi/asm/ |
D | Kbuild | 9 generic-y += statfs.h
|
/Linux-v4.19/arch/xtensa/include/uapi/asm/ |
D | Kbuild | 12 generic-y += statfs.h
|
/Linux-v4.19/arch/sh/include/uapi/asm/ |
D | Kbuild | 20 generic-y += statfs.h
|
/Linux-v4.19/arch/m68k/include/uapi/asm/ |
D | Kbuild | 20 generic-y += statfs.h
|
/Linux-v4.19/arch/mips/include/uapi/asm/ |
D | statfs.h | 23 struct statfs { struct
|
/Linux-v4.19/include/uapi/asm-generic/ |
D | statfs.h | 23 struct statfs { struct
|
D | Kbuild.asm | 28 mandatory-y += statfs.h
|
/Linux-v4.19/arch/hexagon/include/uapi/asm/ |
D | Kbuild | 23 generic-y += statfs.h
|
/Linux-v4.19/arch/riscv/include/uapi/asm/ |
D | Kbuild | 24 generic-y += statfs.h
|
/Linux-v4.19/arch/microblaze/include/uapi/asm/ |
D | Kbuild | 25 generic-y += statfs.h
|
/Linux-v4.19/arch/arc/include/uapi/asm/ |
D | Kbuild | 25 generic-y += statfs.h
|
/Linux-v4.19/arch/nds32/include/uapi/asm/ |
D | Kbuild | 25 generic-y += statfs.h
|
/Linux-v4.19/arch/nios2/include/uapi/asm/ |
D | Kbuild | 26 generic-y += statfs.h
|
/Linux-v4.19/arch/h8300/include/uapi/asm/ |
D | Kbuild | 26 generic-y += statfs.h
|
/Linux-v4.19/arch/c6x/include/uapi/asm/ |
D | Kbuild | 27 generic-y += statfs.h
|
/Linux-v4.19/arch/openrisc/include/uapi/asm/ |
D | Kbuild | 27 generic-y += statfs.h
|
/Linux-v4.19/arch/unicore32/include/uapi/asm/ |
D | Kbuild | 28 generic-y += statfs.h
|
/Linux-v4.19/fs/9p/ |
D | vfs_super.c | 348 .statfs = simple_statfs, 358 .statfs = v9fs_statfs,
|
123456