2022-10-11 15:59:36

by Luis Henriques

[permalink] [raw]
Subject: [PATCH] ext4: remove trailing newline from ext4_msg() message

The ext4_msg() function adds a new line to the message. Remove extra '\n'
from call to ext4_msg() in ext4_orphan_cleanup().

Signed-off-by: Luís Henriques <[email protected]>
---
fs/ext4/orphan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/orphan.c b/fs/ext4/orphan.c
index 69a9cf9137a6..e5b47dda3317 100644
--- a/fs/ext4/orphan.c
+++ b/fs/ext4/orphan.c
@@ -412,7 +412,7 @@ void ext4_orphan_cleanup(struct super_block *sb, struct ext4_super_block *es)
/* don't clear list on RO mount w/ errors */
if (es->s_last_orphan && !(s_flags & SB_RDONLY)) {
ext4_msg(sb, KERN_INFO, "Errors on filesystem, "
- "clearing orphan list.\n");
+ "clearing orphan list.");
es->s_last_orphan = 0;
}
ext4_debug("Skipping orphan recovery on fs with errors.\n");


2022-11-29 21:13:38

by Theodore Ts'o

[permalink] [raw]
Subject: Re: [PATCH] ext4: remove trailing newline from ext4_msg() message

On Tue, 11 Oct 2022 16:57:58 +0100, Luís Henriques wrote:
> The ext4_msg() function adds a new line to the message. Remove extra '\n'
> from call to ext4_msg() in ext4_orphan_cleanup().
>
>

Applied, thanks!

[1/1] ext4: remove trailing newline from ext4_msg() message
commit: 757228b71b41615b5e4f660c65b537e83e727095

Best regards,
--
Theodore Ts'o <[email protected]>