diff options
-rw-r--r-- | fs/ext4/inode.c | 2 | ||||
-rw-r--r-- | fs/jbd2/recovery.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index de26c25d6a18..a4848e04a5ed 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -2903,7 +2903,7 @@ int ext4_write_inode(struct inode *inode, int wait) | |||
2903 | return 0; | 2903 | return 0; |
2904 | 2904 | ||
2905 | if (ext4_journal_current_handle()) { | 2905 | if (ext4_journal_current_handle()) { |
2906 | jbd_debug(0, "called recursively, non-PF_MEMALLOC!\n"); | 2906 | jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); |
2907 | dump_stack(); | 2907 | dump_stack(); |
2908 | return -EIO; | 2908 | return -EIO; |
2909 | } | 2909 | } |
diff --git a/fs/jbd2/recovery.c b/fs/jbd2/recovery.c index e7730a045b93..b50be8a044eb 100644 --- a/fs/jbd2/recovery.c +++ b/fs/jbd2/recovery.c | |||
@@ -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(0, "JBD: recovery, exit status %d, " | 254 | jbd_debug(1, "JBD: 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(0, "JBD: Replayed %d and revoked %d/%d blocks\n", | 257 | jbd_debug(1, "JBD: 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 |
@@ -298,7 +298,7 @@ int jbd2_journal_skip_recovery(journal_t *journal) | |||
298 | #ifdef CONFIG_JBD2_DEBUG | 298 | #ifdef CONFIG_JBD2_DEBUG |
299 | int dropped = info.end_transaction - be32_to_cpu(sb->s_sequence); | 299 | int dropped = info.end_transaction - be32_to_cpu(sb->s_sequence); |
300 | #endif | 300 | #endif |
301 | jbd_debug(0, | 301 | jbd_debug(1, |
302 | "JBD: ignoring %d transaction%s from the journal.\n", | 302 | "JBD: ignoring %d transaction%s from the journal.\n", |
303 | dropped, (dropped == 1) ? "" : "s"); | 303 | dropped, (dropped == 1) ? "" : "s"); |
304 | journal->j_transaction_sequence = ++info.end_transaction; | 304 | journal->j_transaction_sequence = ++info.end_transaction; |