Browse Source

ocfs2: Set journal descriptor to NULL after journal shutdown

Patch sets journal descriptor to NULL after the journal is shutdown.
This ensures that jbd2_journal_release_jbd_inode(), which removes the
jbd2 inode from txn lists, can be called safely from ocfs2_clear_inode()
even after the journal has been shutdown.

Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Sunil Mushran 16 years ago
parent
commit
ae0dff6830
2 changed files with 7 additions and 0 deletions
  1. 6 0
      fs/ocfs2/inode.c
  2. 1 0
      fs/ocfs2/journal.c

+ 6 - 0
fs/ocfs2/inode.c

@@ -1106,6 +1106,12 @@ void ocfs2_clear_inode(struct inode *inode)
 	oi->ip_last_trans = 0;
 	oi->ip_last_trans = 0;
 	oi->ip_dir_start_lookup = 0;
 	oi->ip_dir_start_lookup = 0;
 	oi->ip_blkno = 0ULL;
 	oi->ip_blkno = 0ULL;
+
+	/*
+	 * ip_jinode is used to track txns against this inode. We ensure that
+	 * the journal is flushed before journal shutdown. Thus it is safe to
+	 * have inodes get cleaned up after journal shutdown.
+	 */
 	jbd2_journal_release_jbd_inode(OCFS2_SB(inode->i_sb)->journal->j_journal,
 	jbd2_journal_release_jbd_inode(OCFS2_SB(inode->i_sb)->journal->j_journal,
 				       &oi->ip_jinode);
 				       &oi->ip_jinode);
 
 

+ 1 - 0
fs/ocfs2/journal.c

@@ -690,6 +690,7 @@ void ocfs2_journal_shutdown(struct ocfs2_super *osb)
 
 
 	/* Shutdown the kernel journal system */
 	/* Shutdown the kernel journal system */
 	jbd2_journal_destroy(journal->j_journal);
 	jbd2_journal_destroy(journal->j_journal);
+	journal->j_journal = NULL;
 
 
 	OCFS2_I(inode)->ip_open_count--;
 	OCFS2_I(inode)->ip_open_count--;