aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2009-01-05 22:17:35 -0500
committerTheodore Ts'o <tytso@mit.edu>2009-01-05 22:17:35 -0500
commitfde4d95ad8711c84a36735a17136c45b19746af9 (patch)
treee4d4dcaeb18083be204ba8fe55a75400ded699ae /fs/ext4/super.c
parentfd98496f467b3d26d05ab1498f41718b5ef13de5 (diff)
ext4: remove extraneous newlines from calls to ext4_error() and ext4_warning()
This removes annoying blank syslog entries emitted by ext4_error() or ext4_warning(), since these functions add their own newline. Signed-off-by: Nick Warne <nick@ukfsn.org> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 9b9076d9c4f7..dc27d4c613c0 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1309,7 +1309,7 @@ set_qf_format:
1309 EXT4_FEATURE_INCOMPAT_EXTENTS)) { 1309 EXT4_FEATURE_INCOMPAT_EXTENTS)) {
1310 ext4_warning(sb, __func__, 1310 ext4_warning(sb, __func__,
1311 "extents feature not enabled " 1311 "extents feature not enabled "
1312 "on this filesystem, use tune2fs\n"); 1312 "on this filesystem, use tune2fs");
1313 return 0; 1313 return 0;
1314 } 1314 }
1315 set_opt(sbi->s_mount_opt, EXTENTS); 1315 set_opt(sbi->s_mount_opt, EXTENTS);
@@ -1993,7 +1993,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
1993 else 1993 else
1994 ext4_warning(sb, __func__, 1994 ext4_warning(sb, __func__,
1995 "extents feature not enabled on this filesystem, " 1995 "extents feature not enabled on this filesystem, "
1996 "use tune2fs.\n"); 1996 "use tune2fs.");
1997 1997
1998 /* 1998 /*
1999 * enable delayed allocation by default 1999 * enable delayed allocation by default