ocfs2-devel.oss.oracle.com archive mirror
 help / color / mirror / Atom feed
From: Srinivas Eeda <srinivas.eeda@oracle.com>
To: ocfs2-devel@oss.oracle.com
Subject: [Ocfs2-devel] [PATCH 2/6] ocfs2: Move dquot_initialize() in ocfs2_delete_inode() somewhat later
Date: Thu, 20 Feb 2014 21:14:34 -0800	[thread overview]
Message-ID: <5306E0BA.7060407@oracle.com> (raw)
In-Reply-To: <1392909511-2933-3-git-send-email-jack@suse.cz>

looks good to me

Reviewed-by: Srinivas Eeda <srinivas.eeda@oracle.com>

On 02/20/2014 07:18 AM, Jan Kara wrote:
> Move dquot_initalize() call in ocfs2_delete_inode() after the moment we
> verify inode is actually a sane one to delete. We certainly don't want
> to initialize quota for system inodes etc. This also avoids calling into
> quota code from downconvert thread.
>
> Add more details into the comment why bailing out from
> ocfs2_delete_inode() when we are in downconvert thread is OK.
>
> Signed-off-by: Jan Kara <jack@suse.cz>
> ---
>   fs/ocfs2/inode.c | 16 +++++++++-------
>   1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
> index b4baaefe4dd4..3b0d722de35e 100644
> --- a/fs/ocfs2/inode.c
> +++ b/fs/ocfs2/inode.c
> @@ -804,11 +804,13 @@ static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
>   		goto bail;
>   	}
>   
> -	/* If we're coming from downconvert_thread we can't go into our own
> -	 * voting [hello, deadlock city!], so unforuntately we just
> -	 * have to skip deleting this guy. That's OK though because
> -	 * the node who's doing the actual deleting should handle it
> -	 * anyway. */
> +	/*
> +	 * If we're coming from downconvert_thread we can't go into our own
> +	 * voting [hello, deadlock city!] so we cannot delete the inode. But
> +	 * since we dropped last inode ref when downconverting dentry lock,
> +	 * we cannot have the file open and thus the node doing unlink will
> +	 * take care of deleting the inode.
> +	 */
>   	if (current == osb->dc_task)
>   		goto bail;
>   
> @@ -954,8 +956,6 @@ static void ocfs2_delete_inode(struct inode *inode)
>   	if (is_bad_inode(inode) || !OCFS2_I(inode)->ip_blkno)
>   		goto bail;
>   
> -	dquot_initialize(inode);
> -
>   	if (!ocfs2_inode_is_valid_to_delete(inode)) {
>   		/* It's probably not necessary to truncate_inode_pages
>   		 * here but we do it for safety anyway (it will most
> @@ -964,6 +964,8 @@ static void ocfs2_delete_inode(struct inode *inode)
>   		goto bail;
>   	}
>   
> +	dquot_initialize(inode);
> +
>   	/* We want to block signals in delete_inode as the lock and
>   	 * messaging paths may return us -ERESTARTSYS. Which would
>   	 * cause us to exit early, resulting in inodes being orphaned

  reply	other threads:[~2014-02-21  5:14 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-20 15:18 [Ocfs2-devel] [PATCH 0/6 v2] ocfs2: Avoid pending orphaned inodes Jan Kara
2014-02-20 15:18 ` [Ocfs2-devel] [PATCH 1/6] ocfs2: Remove OCFS2_INODE_SKIP_DELETE flag Jan Kara
2014-02-21  5:14   ` Srinivas Eeda
2014-02-20 15:18 ` [Ocfs2-devel] [PATCH 2/6] ocfs2: Move dquot_initialize() in ocfs2_delete_inode() somewhat later Jan Kara
2014-02-21  5:14   ` Srinivas Eeda [this message]
2014-02-20 15:18 ` [Ocfs2-devel] [PATCH 3/6] quota: Provide function to grab quota structure reference Jan Kara
2014-02-21  5:14   ` Srinivas Eeda
2014-02-20 15:18 ` [Ocfs2-devel] [PATCH 4/6] ocfs2: Implement delayed dropping of last dquot reference Jan Kara
2014-02-21  5:15   ` Srinivas Eeda
2014-02-20 15:18 ` [Ocfs2-devel] [PATCH 5/6] ocfs2: Avoid blocking in ocfs2_mark_lockres_freeing() in downconvert thread Jan Kara
2014-02-21  5:21   ` Srinivas Eeda
2014-02-21  9:14     ` Jan Kara
2014-02-21  9:35       ` Jan Kara
2014-02-20 15:18 ` [Ocfs2-devel] [PATCH 6/6] ocfs2: Revert iput deferring code in ocfs2_drop_dentry_lock Jan Kara
2014-02-21  5:13 ` [Ocfs2-devel] [PATCH 0/6 v2] ocfs2: Avoid pending orphaned inodes Srinivas Eeda
  -- strict thread matches above, loose matches on Subject: below --
2014-02-21  9:44 [Ocfs2-devel] [PATCH 0/6 v3] " Jan Kara
2014-02-21  9:45 ` [Ocfs2-devel] [PATCH 2/6] ocfs2: Move dquot_initialize() in ocfs2_delete_inode() somewhat later Jan Kara
2014-02-25  0:07   ` Mark Fasheh
2014-02-26 11:05 [Ocfs2-devel] [PATCH 0/6 v4] ocfs2: Avoid pending orphaned inodes Jan Kara
2014-02-26 11:05 ` [Ocfs2-devel] [PATCH 2/6] ocfs2: Move dquot_initialize() in ocfs2_delete_inode() somewhat later Jan Kara
2014-02-26 16:49 [Ocfs2-devel] [PATCH 0/6 v5] ocfs2: Avoid pending orphaned inodes Jan Kara
2014-02-26 16:49 ` [Ocfs2-devel] [PATCH 2/6] ocfs2: Move dquot_initialize() in ocfs2_delete_inode() somewhat later Jan Kara

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5306E0BA.7060407@oracle.com \
    --to=srinivas.eeda@oracle.com \
    --cc=ocfs2-devel@oss.oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).