diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-04-13 19:38:32 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2023-04-14 14:06:50 +0300 |
commit | 36d532d713db5797b844fb8bd61a068d3cd4ee3f (patch) | |
tree | b6dfb7ddbaeef620a85f6ca33882f9969c12b386 /fs/quota/Kconfig | |
parent | f4251e371d179e0009981e5f4619bfbdf893090e (diff) | |
download | linux-36d532d713db5797b844fb8bd61a068d3cd4ee3f.tar.xz |
quota: mark PRINT_QUOTA_WARNING as BROKEN
PRINT_QUOTA_WARNING is deprecated since commit 8e8934695dfd ("quota:
send messages via netlink") merged in 2007. Users should rather be using
notification over netlink socket if they are interested about explicit
notification in addition to plain EDQUOT error. Since printing to
console from deep inside filesystem code is problematic, mark the
feature as BROKEN now and see who complains.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20230413163833.43913-1-frank.li@vivo.com>
Diffstat (limited to 'fs/quota/Kconfig')
-rw-r--r-- | fs/quota/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/quota/Kconfig b/fs/quota/Kconfig index df522f423aad..4c925e55dbcd 100644 --- a/fs/quota/Kconfig +++ b/fs/quota/Kconfig @@ -28,7 +28,7 @@ config QUOTA_NETLINK_INTERFACE config PRINT_QUOTA_WARNING bool "Print quota warnings to console (OBSOLETE)" - depends on QUOTA + depends on QUOTA && BROKEN default y help If you say Y here, quota warnings (about exceeding softlimit, reaching |