mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
fat: fix error message for bogus number of directory entries
"bogus directory-entries per block" was reported for what was instead bogus number of directory entries. The message also mismatched the argument passed to printk(), which was sbi->dir_entries. Fix this by replacing the message with "bogus number of directory entries". printk() argument was kept unchanged. Signed-off-by: Zheng Lv <lv.zheng.2015@gmail.com> Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
dcc381e833
commit
34df117414
@ -1726,7 +1726,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
|
||||
sbi->dir_entries = bpb.fat_dir_entries;
|
||||
if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
|
||||
if (!silent)
|
||||
fat_msg(sb, KERN_ERR, "bogus directory-entries per block"
|
||||
fat_msg(sb, KERN_ERR, "bogus number of directory entries"
|
||||
" (%u)", sbi->dir_entries);
|
||||
goto out_invalid;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user