diff options
Diffstat (limited to 'fs/jbd2/recovery.c')
-rw-r--r-- | fs/jbd2/recovery.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/fs/jbd2/recovery.c b/fs/jbd2/recovery.c index 1cad869494f0..da6d7baf1390 100644 --- a/fs/jbd2/recovery.c +++ b/fs/jbd2/recovery.c | |||
@@ -89,7 +89,7 @@ static int do_readahead(journal_t *journal, unsigned int start) | |||
89 | err = jbd2_journal_bmap(journal, next, &blocknr); | 89 | err = jbd2_journal_bmap(journal, next, &blocknr); |
90 | 90 | ||
91 | if (err) { | 91 | if (err) { |
92 | printk (KERN_ERR "JBD: bad block at offset %u\n", | 92 | printk(KERN_ERR "JBD2: bad block at offset %u\n", |
93 | next); | 93 | next); |
94 | goto failed; | 94 | goto failed; |
95 | } | 95 | } |
@@ -138,14 +138,14 @@ static int jread(struct buffer_head **bhp, journal_t *journal, | |||
138 | *bhp = NULL; | 138 | *bhp = NULL; |
139 | 139 | ||
140 | if (offset >= journal->j_maxlen) { | 140 | if (offset >= journal->j_maxlen) { |
141 | printk(KERN_ERR "JBD: corrupted journal superblock\n"); | 141 | printk(KERN_ERR "JBD2: corrupted journal superblock\n"); |
142 | return -EIO; | 142 | return -EIO; |
143 | } | 143 | } |
144 | 144 | ||
145 | err = jbd2_journal_bmap(journal, offset, &blocknr); | 145 | err = jbd2_journal_bmap(journal, offset, &blocknr); |
146 | 146 | ||
147 | if (err) { | 147 | if (err) { |
148 | printk (KERN_ERR "JBD: bad block at offset %u\n", | 148 | printk(KERN_ERR "JBD2: bad block at offset %u\n", |
149 | offset); | 149 | offset); |
150 | return err; | 150 | return err; |
151 | } | 151 | } |
@@ -163,7 +163,7 @@ static int jread(struct buffer_head **bhp, journal_t *journal, | |||
163 | } | 163 | } |
164 | 164 | ||
165 | if (!buffer_uptodate(bh)) { | 165 | if (!buffer_uptodate(bh)) { |
166 | printk (KERN_ERR "JBD: Failed to read block at offset %u\n", | 166 | printk(KERN_ERR "JBD2: Failed to read block at offset %u\n", |
167 | offset); | 167 | offset); |
168 | brelse(bh); | 168 | brelse(bh); |
169 | return -EIO; | 169 | return -EIO; |
@@ -251,10 +251,10 @@ int jbd2_journal_recover(journal_t *journal) | |||
251 | if (!err) | 251 | if (!err) |
252 | err = do_one_pass(journal, &info, PASS_REPLAY); | 252 | err = do_one_pass(journal, &info, PASS_REPLAY); |
253 | 253 | ||
254 | jbd_debug(1, "JBD: recovery, exit status %d, " | 254 | jbd_debug(1, "JBD2: recovery, exit status %d, " |
255 | "recovered transactions %u to %u\n", | 255 | "recovered transactions %u to %u\n", |
256 | err, info.start_transaction, info.end_transaction); | 256 | err, info.start_transaction, info.end_transaction); |
257 | jbd_debug(1, "JBD: Replayed %d and revoked %d/%d blocks\n", | 257 | jbd_debug(1, "JBD2: Replayed %d and revoked %d/%d blocks\n", |
258 | info.nr_replays, info.nr_revoke_hits, info.nr_revokes); | 258 | info.nr_replays, info.nr_revoke_hits, info.nr_revokes); |
259 | 259 | ||
260 | /* Restart the log at the next transaction ID, thus invalidating | 260 | /* Restart the log at the next transaction ID, thus invalidating |
@@ -293,14 +293,14 @@ int jbd2_journal_skip_recovery(journal_t *journal) | |||
293 | err = do_one_pass(journal, &info, PASS_SCAN); | 293 | err = do_one_pass(journal, &info, PASS_SCAN); |
294 | 294 | ||
295 | if (err) { | 295 | if (err) { |
296 | printk(KERN_ERR "JBD: error %d scanning journal\n", err); | 296 | printk(KERN_ERR "JBD2: error %d scanning journal\n", err); |
297 | ++journal->j_transaction_sequence; | 297 | ++journal->j_transaction_sequence; |
298 | } else { | 298 | } else { |
299 | #ifdef CONFIG_JBD2_DEBUG | 299 | #ifdef CONFIG_JBD2_DEBUG |
300 | int dropped = info.end_transaction - | 300 | int dropped = info.end_transaction - |
301 | be32_to_cpu(journal->j_superblock->s_sequence); | 301 | be32_to_cpu(journal->j_superblock->s_sequence); |
302 | jbd_debug(1, | 302 | jbd_debug(1, |
303 | "JBD: ignoring %d transaction%s from the journal.\n", | 303 | "JBD2: ignoring %d transaction%s from the journal.\n", |
304 | dropped, (dropped == 1) ? "" : "s"); | 304 | dropped, (dropped == 1) ? "" : "s"); |
305 | #endif | 305 | #endif |
306 | journal->j_transaction_sequence = ++info.end_transaction; | 306 | journal->j_transaction_sequence = ++info.end_transaction; |
@@ -338,7 +338,7 @@ static int calc_chksums(journal_t *journal, struct buffer_head *bh, | |||
338 | wrap(journal, *next_log_block); | 338 | wrap(journal, *next_log_block); |
339 | err = jread(&obh, journal, io_block); | 339 | err = jread(&obh, journal, io_block); |
340 | if (err) { | 340 | if (err) { |
341 | printk(KERN_ERR "JBD: IO error %d recovering block " | 341 | printk(KERN_ERR "JBD2: IO error %d recovering block " |
342 | "%lu in log\n", err, io_block); | 342 | "%lu in log\n", err, io_block); |
343 | return 1; | 343 | return 1; |
344 | } else { | 344 | } else { |
@@ -411,7 +411,7 @@ static int do_one_pass(journal_t *journal, | |||
411 | * either the next descriptor block or the final commit | 411 | * either the next descriptor block or the final commit |
412 | * record. */ | 412 | * record. */ |
413 | 413 | ||
414 | jbd_debug(3, "JBD: checking block %ld\n", next_log_block); | 414 | jbd_debug(3, "JBD2: checking block %ld\n", next_log_block); |
415 | err = jread(&bh, journal, next_log_block); | 415 | err = jread(&bh, journal, next_log_block); |
416 | if (err) | 416 | if (err) |
417 | goto failed; | 417 | goto failed; |
@@ -491,8 +491,8 @@ static int do_one_pass(journal_t *journal, | |||
491 | /* Recover what we can, but | 491 | /* Recover what we can, but |
492 | * report failure at the end. */ | 492 | * report failure at the end. */ |
493 | success = err; | 493 | success = err; |
494 | printk (KERN_ERR | 494 | printk(KERN_ERR |
495 | "JBD: IO error %d recovering " | 495 | "JBD2: IO error %d recovering " |
496 | "block %ld in log\n", | 496 | "block %ld in log\n", |
497 | err, io_block); | 497 | err, io_block); |
498 | } else { | 498 | } else { |
@@ -520,7 +520,7 @@ static int do_one_pass(journal_t *journal, | |||
520 | journal->j_blocksize); | 520 | journal->j_blocksize); |
521 | if (nbh == NULL) { | 521 | if (nbh == NULL) { |
522 | printk(KERN_ERR | 522 | printk(KERN_ERR |
523 | "JBD: Out of memory " | 523 | "JBD2: Out of memory " |
524 | "during recovery.\n"); | 524 | "during recovery.\n"); |
525 | err = -ENOMEM; | 525 | err = -ENOMEM; |
526 | brelse(bh); | 526 | brelse(bh); |
@@ -689,7 +689,7 @@ static int do_one_pass(journal_t *journal, | |||
689 | /* It's really bad news if different passes end up at | 689 | /* It's really bad news if different passes end up at |
690 | * different places (but possible due to IO errors). */ | 690 | * different places (but possible due to IO errors). */ |
691 | if (info->end_transaction != next_commit_ID) { | 691 | if (info->end_transaction != next_commit_ID) { |
692 | printk (KERN_ERR "JBD: recovery pass %d ended at " | 692 | printk(KERN_ERR "JBD2: recovery pass %d ended at " |
693 | "transaction %u, expected %u\n", | 693 | "transaction %u, expected %u\n", |
694 | pass, next_commit_ID, info->end_transaction); | 694 | pass, next_commit_ID, info->end_transaction); |
695 | if (!success) | 695 | if (!success) |