72 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Quota configuration4#5 6config QUOTA7 bool "Quota support"8 select QUOTACTL9 help10 If you say Y here, you will be able to set per user limits for disk11 usage (also called disk quotas). Currently, it works for the12 ext2, ext3, ext4, f2fs, jfs, ocfs2 and reiserfs file systems.13 Note that gfs2 and xfs use their own quota system.14 Ext3, ext4 and reiserfs also support journaled quotas for which15 you don't need to run quotacheck(8) after an unclean shutdown.16 For further details, read the Quota mini-HOWTO, available from17 <https://www.tldp.org/docs.html#howto>, or the documentation provided18 with the quota tools. Probably the quota support is only useful for19 multi user systems. If unsure, say N.20 21config QUOTA_NETLINK_INTERFACE22 bool "Report quota messages through netlink interface"23 depends on QUOTACTL && NET24 help25 If you say Y here, quota warnings (about exceeding softlimit, reaching26 hardlimit, etc.) will be reported through netlink interface. If unsure,27 say Y.28 29config PRINT_QUOTA_WARNING30 bool "Print quota warnings to console (OBSOLETE)"31 depends on QUOTA && BROKEN32 default y33 help34 If you say Y here, quota warnings (about exceeding softlimit, reaching35 hardlimit, etc.) will be printed to the process' controlling terminal.36 Note that this behavior is currently deprecated and may go away in37 future. Please use notification via netlink socket instead.38 39config QUOTA_DEBUG40 bool "Additional quota sanity checks"41 depends on QUOTA42 default n43 help44 If you say Y here, quota subsystem will perform some additional45 sanity checks of quota internal structures. If unsure, say N.46 47# Generic support for tree structured quota files. Selected when needed.48config QUOTA_TREE49 tristate50 51config QFMT_V152 tristate "Old quota format support"53 depends on QUOTA54 help55 This quota format was (is) used by kernels earlier than 2.4.22. If56 you have quota working and you don't want to convert to new quota57 format say Y here.58 59config QFMT_V260 tristate "Quota format vfsv0 and vfsv1 support"61 depends on QUOTA62 select QUOTA_TREE63 help64 This config option enables kernel support for vfsv0 and vfsv1 quota65 formats. Both these formats support 32-bit UIDs/GIDs and vfsv1 format66 also supports 64-bit inode and block quota limits. If you need this67 functionality say Y here.68 69config QUOTACTL70 bool71 default n72