projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7192afa
)
ext4: remove trailing newline from ext4_msg() message
author
Luís Henriques
<lhenriques@suse.de>
Tue, 11 Oct 2022 15:57:58 +0000
(16:57 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 12 Jan 2023 10:59:00 +0000
(11:59 +0100)
commit
78742d4d056df7d2fad241c90185d281bf924844
upstream.
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 <lhenriques@suse.de>
Link:
https://lore.kernel.org/r/20221011155758.15287-1-lhenriques@suse.de
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Cc: stable@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/orphan.c
patch
|
blob
|
history
diff --git
a/fs/ext4/orphan.c
b/fs/ext4/orphan.c
index 53adc8f570a3f25fa83d9bb87f976b6c329d58e5..1ce257a19fe4526ef65f4a25f44e0f2b022fc279 100644
(file)
--- 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;
}
jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");