diff options
author | Joe Perches <joe@perches.com> | 2011-10-10 01:08:02 -0700 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2011-10-10 19:26:24 +0200 |
commit | 7e273e3b41e32716dc122b293b5f15635af495ff (patch) | |
tree | 5c6735944042e68af4e8681fb424c729701e4957 /fs/udf/super.c | |
parent | 40bfa16dac2adcded9e2eda58246cc3700d97de4 (diff) | |
download | linux-7e273e3b41e32716dc122b293b5f15635af495ff.tar.gz linux-7e273e3b41e32716dc122b293b5f15635af495ff.tar.bz2 linux-7e273e3b41e32716dc122b293b5f15635af495ff.zip |
udf: Promote some debugging messages to udf_error
If there is a problem with a scratched disc or loader, it's valuable to know
which error occurred.
Convert some debug messages to udf_error, neaten those messages too.
Add the calculated tag checksum and the read checksum to error message.
Make udf_error a public function and move the logging prototypes together.
Original-patch-by: NamJae Jeon <linkinjeon@gmail.com>
Reviewed-by: NamJae Jeon <linkinjeon@gmail.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/super.c')
-rw-r--r-- | fs/udf/super.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index 7b27b063ff6d..80f47ce515bc 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -92,8 +92,6 @@ static void udf_close_lvid(struct super_block *); static unsigned int udf_count_free(struct super_block *); static int udf_statfs(struct dentry *, struct kstatfs *); static int udf_show_options(struct seq_file *, struct vfsmount *); -static void udf_error(struct super_block *sb, const char *function, - const char *fmt, ...); struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi) { @@ -2096,8 +2094,8 @@ error_out: return -EINVAL; } -static void udf_error(struct super_block *sb, const char *function, - const char *fmt, ...) +void udf_error(struct super_block *sb, const char *function, + const char *fmt, ...) { va_list args; |