Kconfig 2.3 KB

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