Blame view

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