statfs.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_STATFS_H
  3. #define _LINUX_STATFS_H
  4. #include <linux/types.h>
  5. #include <asm/statfs.h>
  6. struct kstatfs {
  7. long f_type;
  8. long f_bsize;
  9. u64 f_blocks;
  10. u64 f_bfree;
  11. u64 f_bavail;
  12. u64 f_files;
  13. u64 f_ffree;
  14. __kernel_fsid_t f_fsid;
  15. long f_namelen;
  16. long f_frsize;
  17. long f_flags;
  18. long f_spare[4];
  19. };
  20. /*
  21. * Definitions for the flag in f_flag.
  22. *
  23. * Generally these flags are equivalent to the MS_ flags used in the mount
  24. * ABI. The exception is ST_VALID which has the same value as MS_REMOUNT
  25. * which doesn't make any sense for statfs.
  26. */
  27. #define ST_RDONLY 0x0001 /* mount read-only */
  28. #define ST_NOSUID 0x0002 /* ignore suid and sgid bits */
  29. #define ST_NODEV 0x0004 /* disallow access to device special files */
  30. #define ST_NOEXEC 0x0008 /* disallow program execution */
  31. #define ST_SYNCHRONOUS 0x0010 /* writes are synced at once */
  32. #define ST_VALID 0x0020 /* f_flags support is implemented */
  33. #define ST_MANDLOCK 0x0040 /* allow mandatory locks on an FS */
  34. /* 0x0080 used for ST_WRITE in glibc */
  35. /* 0x0100 used for ST_APPEND in glibc */
  36. /* 0x0200 used for ST_IMMUTABLE in glibc */
  37. #define ST_NOATIME 0x0400 /* do not update access times */
  38. #define ST_NODIRATIME 0x0800 /* do not update directory access times */
  39. #define ST_RELATIME 0x1000 /* update atime relative to mtime/ctime */
  40. #endif