mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 12:41:32 +00:00
fs: btrfs: Do not print mount fail message when not btrfs filesystem
Other filesystem drivers don't do this. Signed-off-by: Marek Behún <marek.behun@nic.cz>
This commit is contained in:
parent
a0e92cde2a
commit
881e020958
1 changed files with 5 additions and 6 deletions
|
@ -198,17 +198,16 @@ int btrfs_read_superblock(void)
|
|||
break;
|
||||
|
||||
if (btrfs_check_super_csum(raw_sb)) {
|
||||
printf("%s: invalid checksum at superblock mirror %i\n",
|
||||
__func__, i);
|
||||
debug("%s: invalid checksum at superblock mirror %i\n",
|
||||
__func__, i);
|
||||
continue;
|
||||
}
|
||||
|
||||
btrfs_super_block_to_cpu(sb);
|
||||
|
||||
if (sb->magic != BTRFS_MAGIC) {
|
||||
printf("%s: invalid BTRFS magic 0x%016llX at "
|
||||
"superblock mirror %i\n", __func__, sb->magic,
|
||||
i);
|
||||
debug("%s: invalid BTRFS magic 0x%016llX at "
|
||||
"superblock mirror %i\n", __func__, sb->magic, i);
|
||||
} else if (sb->bytenr != superblock_offsets[i]) {
|
||||
printf("%s: invalid bytenr 0x%016llX (expected "
|
||||
"0x%016llX) at superblock mirror %i\n",
|
||||
|
@ -224,7 +223,7 @@ int btrfs_read_superblock(void)
|
|||
}
|
||||
|
||||
if (!btrfs_info.sb.generation) {
|
||||
printf("%s: No valid BTRFS superblock found!\n", __func__);
|
||||
debug("%s: No valid BTRFS superblock found!\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue