projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcdd023
)
fs: ext4: make "File System is consistent\n" a debug message
author
Heinrich Schuchardt
<heinrich.schuchardt@canonical.com>
Wed, 20 Mar 2024 13:23:52 +0000
(14:23 +0100)
committer
Tom Rini
<trini@konsulko.com>
Wed, 10 Apr 2024 15:34:53 +0000
(09:34 -0600)
When accessing an ext2 system the message "File System is consistent\n" is
shown after each write. This is superfluous noise. Only write a debug
message.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
fs/ext4/ext4_journal.c
patch
|
blob
|
history
diff --git
a/fs/ext4/ext4_journal.c
b/fs/ext4/ext4_journal.c
index 1a340b4764c628108ea474fbc693a18cc983c749..e80f797c8dc97a5600b4d3a040730bd664d8860a 100644
(file)
--- a/
fs/ext4/ext4_journal.c
+++ b/
fs/ext4/ext4_journal.c
@@
-430,7
+430,7
@@
int ext4fs_check_journal_state(int recovery_flag)
printf("Recovery required\n");
} else {
if (recovery_flag == RECOVER)
-
printf
("File System is consistent\n");
+
log_debug
("File System is consistent\n");
goto end;
}