All of lore.kernel.org
 help / color / mirror / Atom feed
* [Ocfs2-devel] [PATCH 1/1] ocfs2: Set journal descriptor to NULL after journal shutdown
@ 2008-10-22 20:24 Sunil Mushran
  2008-10-22 21:05 ` Joel Becker
  2008-10-24 22:47 ` Joel Becker
  0 siblings, 2 replies; 3+ messages in thread
From: Sunil Mushran @ 2008-10-22 20:24 UTC (permalink / raw)
  To: ocfs2-devel

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>
---
 fs/ocfs2/inode.c   |    6 ++++++
 fs/ocfs2/journal.c |    1 +
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
index 4903688..7aa00d5 100644
--- a/fs/ocfs2/inode.c
+++ b/fs/ocfs2/inode.c
@@ -1106,6 +1106,12 @@ void ocfs2_clear_inode(struct inode *inode)
 	oi->ip_last_trans = 0;
 	oi->ip_dir_start_lookup = 0;
 	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,
 				       &oi->ip_jinode);
 
diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c
index 81e4067..99fe9d5 100644
--- a/fs/ocfs2/journal.c
+++ b/fs/ocfs2/journal.c
@@ -690,6 +690,7 @@ void ocfs2_journal_shutdown(struct ocfs2_super *osb)
 
 	/* Shutdown the kernel journal system */
 	jbd2_journal_destroy(journal->j_journal);
+	journal->j_journal = NULL;
 
 	OCFS2_I(inode)->ip_open_count--;
 
-- 
1.5.4.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Ocfs2-devel] [PATCH 1/1] ocfs2: Set journal descriptor to NULL after journal shutdown
  2008-10-22 20:24 [Ocfs2-devel] [PATCH 1/1] ocfs2: Set journal descriptor to NULL after journal shutdown Sunil Mushran
@ 2008-10-22 21:05 ` Joel Becker
  2008-10-24 22:47 ` Joel Becker
  1 sibling, 0 replies; 3+ messages in thread
From: Joel Becker @ 2008-10-22 21:05 UTC (permalink / raw)
  To: ocfs2-devel

On Wed, Oct 22, 2008 at 01:24:29PM -0700, Sunil Mushran wrote:
> 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>

> ---
>  fs/ocfs2/inode.c   |    6 ++++++
>  fs/ocfs2/journal.c |    1 +
>  2 files changed, 7 insertions(+), 0 deletions(-)
> 
> diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
> index 4903688..7aa00d5 100644
> --- a/fs/ocfs2/inode.c
> +++ b/fs/ocfs2/inode.c
> @@ -1106,6 +1106,12 @@ void ocfs2_clear_inode(struct inode *inode)
>  	oi->ip_last_trans = 0;
>  	oi->ip_dir_start_lookup = 0;
>  	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,
>  				       &oi->ip_jinode);
>  
> diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c
> index 81e4067..99fe9d5 100644
> --- a/fs/ocfs2/journal.c
> +++ b/fs/ocfs2/journal.c
> @@ -690,6 +690,7 @@ void ocfs2_journal_shutdown(struct ocfs2_super *osb)
>  
>  	/* Shutdown the kernel journal system */
>  	jbd2_journal_destroy(journal->j_journal);
> +	journal->j_journal = NULL;
>  
>  	OCFS2_I(inode)->ip_open_count--;
>  
> -- 
> 1.5.4.3
> 
> 
> _______________________________________________
> Ocfs2-devel mailing list
> Ocfs2-devel at oss.oracle.com
> http://oss.oracle.com/mailman/listinfo/ocfs2-devel

-- 

"If at first you don't succeed, cover all traces that you tried."
                                                        -Unknown

Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker at oracle.com
Phone: (650) 506-8127

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Ocfs2-devel] [PATCH 1/1] ocfs2: Set journal descriptor to NULL after journal shutdown
  2008-10-22 20:24 [Ocfs2-devel] [PATCH 1/1] ocfs2: Set journal descriptor to NULL after journal shutdown Sunil Mushran
  2008-10-22 21:05 ` Joel Becker
@ 2008-10-24 22:47 ` Joel Becker
  1 sibling, 0 replies; 3+ messages in thread
From: Joel Becker @ 2008-10-24 22:47 UTC (permalink / raw)
  To: ocfs2-devel

On Wed, Oct 22, 2008 at 01:24:29PM -0700, Sunil Mushran wrote:
> 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>

	This is now in my xattr-28 branch.

Joel

-- 

Life's Little Instruction Book #197

	"Don't forget, a person's greatest emotional need is to 
	 feel appreciated."

Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker at oracle.com
Phone: (650) 506-8127

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-10-24 22:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-22 20:24 [Ocfs2-devel] [PATCH 1/1] ocfs2: Set journal descriptor to NULL after journal shutdown Sunil Mushran
2008-10-22 21:05 ` Joel Becker
2008-10-24 22:47 ` Joel Becker

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.