Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 QUOTA && 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. # Generic support for tree structured quota files. Selected when needed.
  33. config QUOTA_TREE
  34. tristate
  35. config QFMT_V1
  36. tristate "Old quota format support"
  37. depends on QUOTA
  38. help
  39. This quota format was (is) used by kernels earlier than 2.4.22. If
  40. you have quota working and you don't want to convert to new quota
  41. format say Y here.
  42. config QFMT_V2
  43. tristate "Quota format v2 support"
  44. depends on QUOTA
  45. select QUOTA_TREE
  46. help
  47. This quota format allows using quotas with 32-bit UIDs/GIDs. If you
  48. need this functionality say Y here.
  49. config QUOTACTL
  50. bool
  51. depends on XFS_QUOTA || QUOTA
  52. default y