Kconfig 2.4 KB

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