aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/journal.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/journal.c')
-rw-r--r--fs/ocfs2/journal.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c
index 877aaa05e199..9223bfcca3ba 100644
--- a/fs/ocfs2/journal.c
+++ b/fs/ocfs2/journal.c
@@ -587,17 +587,11 @@ static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
587 mlog_entry_void(); 587 mlog_entry_void();
588 588
589 fe = (struct ocfs2_dinode *)bh->b_data; 589 fe = (struct ocfs2_dinode *)bh->b_data;
590 if (!OCFS2_IS_VALID_DINODE(fe)) { 590
591 /* This is called from startup/shutdown which will 591 /* The journal bh on the osb always comes from ocfs2_journal_init()
592 * handle the errors in a specific manner, so no need 592 * and was validated there inside ocfs2_inode_lock_full(). It's a
593 * to call ocfs2_error() here. */ 593 * code bug if we mess it up. */
594 mlog(ML_ERROR, "Journal dinode %llu has invalid " 594 BUG_ON(!OCFS2_IS_VALID_DINODE(fe));
595 "signature: %.*s",
596 (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
597 fe->i_signature);
598 status = -EIO;
599 goto out;
600 }
601 595
602 flags = le32_to_cpu(fe->id1.journal1.ij_flags); 596 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
603 if (dirty) 597 if (dirty)
@@ -613,7 +607,6 @@ static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
613 if (status < 0) 607 if (status < 0)
614 mlog_errno(status); 608 mlog_errno(status);
615 609
616out:
617 mlog_exit(status); 610 mlog_exit(status);
618 return status; 611 return status;
619} 612}