jbd2: clarify bad journal block checksum message
There were two error messages emitted by jbd2, one for a bad checksum for a jbd2 descriptor block, and one for a bad checksum for a jbd2 data block. Change the data block checksum error so that the two can be disambiguated. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
ccf0f32acd
commit
ed65b00f8d
|
@ -600,8 +600,8 @@ static int do_one_pass(journal_t *journal,
|
||||||
success = -EFSBADCRC;
|
success = -EFSBADCRC;
|
||||||
printk(KERN_ERR "JBD2: Invalid "
|
printk(KERN_ERR "JBD2: Invalid "
|
||||||
"checksum recovering "
|
"checksum recovering "
|
||||||
"block %llu in log\n",
|
"data block %llu in "
|
||||||
blocknr);
|
"log\n", blocknr);
|
||||||
block_error = 1;
|
block_error = 1;
|
||||||
goto skip_write;
|
goto skip_write;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue