diff options
author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2024-04-03 09:08:04 +0200 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2024-04-23 08:34:22 +0200 |
commit | a8948b5450e7c65a3a34ebf4ccfcebc19335d4fb (patch) | |
tree | d3693025a55995518ddf4de33af59607fad3f3a6 /fs/ntfs3 | |
parent | fs/ntfs3: Taking DOS names into account during link counting (diff) | |
download | linux-a8948b5450e7c65a3a34ebf4ccfcebc19335d4fb.tar.xz linux-a8948b5450e7c65a3a34ebf4ccfcebc19335d4fb.zip |
fs/ntfs3: Remove max link count info display during driver init
Removes the output of this purely informational message from the
kernel buffer:
"ntfs3: Max link count 4000"
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Cc: stable@vger.kernel.org
Diffstat (limited to 'fs/ntfs3')
-rw-r--r-- | fs/ntfs3/super.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 9df7c20d066f..ac4722011140 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -1804,8 +1804,6 @@ static int __init init_ntfs_fs(void) { int err; - pr_info("ntfs3: Max link count %u\n", NTFS_LINK_MAX); - if (IS_ENABLED(CONFIG_NTFS3_FS_POSIX_ACL)) pr_info("ntfs3: Enabled Linux POSIX ACLs support\n"); if (IS_ENABLED(CONFIG_NTFS3_64BIT_CLUSTER)) |