diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2019-06-04 14:49:52 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-06-26 20:14:14 -0400 |
commit | ceb3b10613eba86ddf043345338e32673a27f87a (patch) | |
tree | 092253e6dcbe03fb4d46eefbdee1290da3fc88d9 /fs/adfs/adfs.h | |
parent | 2e67080d87087fdba88059b1f63e4301ea0fad3a (diff) | |
download | linux-ceb3b10613eba86ddf043345338e32673a27f87a.tar.bz2 |
fs/adfs: clean up error message printing
Overhaul our message printing:
- provide a consistent way to print messages:
- filesystem corruption should be reported via adfs_error()
- everything else should use adfs_msg()
- clean up the error message printing when mounting a filesystem
- fix the messages printed by the big directory format code to only
use adfs_error() when there is filesystem corruption, otherwise
use adfs_msg().
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/adfs/adfs.h')
-rw-r--r-- | fs/adfs/adfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/adfs/adfs.h b/fs/adfs/adfs.h index 1c31861aa115..1e8865588a59 100644 --- a/fs/adfs/adfs.h +++ b/fs/adfs/adfs.h @@ -142,6 +142,7 @@ __printf(3, 4) void __adfs_error(struct super_block *sb, const char *function, const char *fmt, ...); #define adfs_error(sb, fmt...) __adfs_error(sb, __func__, fmt) +void adfs_msg(struct super_block *sb, const char *pfx, const char *fmt, ...); /* super.c */ |