Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #
  2. # Quota configuration
  3. #
  4. config QUOTA
  5. bool "Quota support"
  6. help
  7. If you say Y here, you will be able to set per user limits for disk
  8. usage (also called disk quotas). Currently, it works for the
  9. ext2, ext3, and reiserfs file system. ext3 also supports journalled
  10. quotas for which you don't need to run quotacheck(8) after an unclean
  11. shutdown.
  12. For further details, read the Quota mini-HOWTO, available from
  13. <http://www.tldp.org/docs.html#howto>, or the documentation provided
  14. with the quota tools. Probably the quota support is only useful for
  15. multi user systems. If unsure, say N.
  16. config QUOTA_NETLINK_INTERFACE
  17. bool "Report quota messages through netlink interface"
  18. depends on QUOTACTL && NET
  19. help
  20. If you say Y here, quota warnings (about exceeding softlimit, reaching
  21. hardlimit, etc.) will be reported through netlink interface. If unsure,
  22. say Y.
  23. config PRINT_QUOTA_WARNING
  24. bool "Print quota warnings to console (OBSOLETE)"
  25. depends on QUOTA
  26. default y
  27. help
  28. If you say Y here, quota warnings (about exceeding softlimit, reaching
  29. hardlimit, etc.) will be printed to the process' controlling terminal.
  30. Note that this behavior is currently deprecated and may go away in
  31. future. Please use notification via netlink socket instead.
  32. config QUOTA_DEBUG
  33. bool "Additional quota sanity checks"
  34. depends on QUOTA
  35. default n
  36. help
  37. If you say Y here, quota subsystem will perform some additional
  38. sanity checks of quota internal structures. If unsure, say N.
  39. # Generic support for tree structured quota files. Selected when needed.
  40. config QUOTA_TREE
  41. tristate
  42. config QFMT_V1
  43. tristate "Old quota format support"
  44. depends on QUOTA
  45. help
  46. This quota format was (is) used by kernels earlier than 2.4.22. If
  47. you have quota working and you don't want to convert to new quota
  48. format say Y here.
  49. config QFMT_V2
  50. tristate "Quota format vfsv0 and vfsv1 support"
  51. depends on QUOTA
  52. select QUOTA_TREE
  53. help
  54. This config option enables kernel support for vfsv0 and vfsv1 quota
  55. formats. Both these formats support 32-bit UIDs/GIDs and vfsv1 format
  56. also supports 64-bit inode and block quota limits. If you need this
  57. functionality say Y here.
  58. config QUOTACTL
  59. bool
  60. depends on XFS_QUOTA || QUOTA
  61. default y
  62. config QUOTACTL_COMPAT
  63. bool
  64. depends on QUOTACTL && COMPAT_FOR_U64_ALIGNMENT
  65. default y