Linux NFS development
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Tom Tucker <tom@opengridcomputing.com>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>,
	Linux NFS Mailing List <linux-nfs@vger.kernel.org>
Subject: Re: [PATCH] svc: Clean up deferred requests on transport destruction
Date: Wed, 7 Jan 2009 17:00:28 -0500	[thread overview]
Message-ID: <20090107220028.GD965@fieldses.org> (raw)
In-Reply-To: <496279CF.5050807@opengridcomputing.com>

On Mon, Jan 05, 2009 at 03:21:19PM -0600, Tom Tucker wrote:
> Bruce,
>
> This patch replaces 2/3 of Trond's deferral cleanup patch. This shouldn't

By that you mean patches 2 and 3, right?

--b.

> come across with the white-spaced munged. Please let me know if it does.
>
> Thanks,
> Tom
>
> A race between svc_revisit and svc_delete_xprt can result in
> deferred requests holding references on a transport that can never be
> recovered because dead transports are not enqueued for subsequent
> processing.
>
> Check for XPT_DEAD in revisit to clean up completing deferrals on a dead
> transport and sweep a transport's deferred queue to do the same for queued
> but unprocessed deferrals.
>
> Signed-off-by: Tom Tucker <tom@opengridcomputing.com>
>
> ---
>  net/sunrpc/svc_xprt.c |   25 ++++++++++++++++++-------
>  1 files changed, 18 insertions(+), 7 deletions(-)
>
> diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
> index bf5b5cd..e6e7e25 100644
> --- a/net/sunrpc/svc_xprt.c
> +++ b/net/sunrpc/svc_xprt.c
> @@ -837,6 +837,11 @@ static void svc_age_temp_xprts(unsigned long closure)
>  void svc_delete_xprt(struct svc_xprt *xprt)
>  {
>  	struct svc_serv	*serv = xprt->xpt_server;
> +	struct svc_deferred_req *dr;
> +
> +	/* Only do this once */
> +	if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
> +		return;
>
>  	dprintk("svc: svc_delete_xprt(%p)\n", xprt);
>  	xprt->xpt_ops->xpo_detach(xprt);
> @@ -851,12 +856,16 @@ void svc_delete_xprt(struct svc_xprt *xprt)
>  	 * while still attached to a queue, the queue itself
>  	 * is about to be destroyed (in svc_destroy).
>  	 */
> -	if (!test_and_set_bit(XPT_DEAD, &xprt->xpt_flags)) {
> -		BUG_ON(atomic_read(&xprt->xpt_ref.refcount) < 2);
> -		if (test_bit(XPT_TEMP, &xprt->xpt_flags))
> -			serv->sv_tmpcnt--;
> +	if (test_bit(XPT_TEMP, &xprt->xpt_flags))
> +		serv->sv_tmpcnt--;
> +
> +	for (dr = svc_deferred_dequeue(xprt); dr;
> +	     dr = svc_deferred_dequeue(xprt)) {
>  		svc_xprt_put(xprt);
> +		kfree(dr);
>  	}
> +
> +	svc_xprt_put(xprt);
>  	spin_unlock_bh(&serv->sv_lock);
>  }
>
> @@ -902,17 +911,19 @@ static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
>  		container_of(dreq, struct svc_deferred_req, handle);
>  	struct svc_xprt *xprt = dr->xprt;
>
> -	if (too_many) {
> +	spin_lock(&xprt->xpt_lock);
> +	set_bit(XPT_DEFERRED, &xprt->xpt_flags);
> +	if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
> +		spin_unlock(&xprt->xpt_lock);
> +		dprintk("revisit canceled\n");
>  		svc_xprt_put(xprt);
>  		kfree(dr);
>  		return;
>  	}
>  	dprintk("revisit queued\n");
>  	dr->xprt = NULL;
> -	spin_lock(&xprt->xpt_lock);
>  	list_add(&dr->handle.recent, &xprt->xpt_deferred);
>  	spin_unlock(&xprt->xpt_lock);
> -	set_bit(XPT_DEFERRED, &xprt->xpt_flags);
>  	svc_xprt_enqueue(xprt);
>  	svc_xprt_put(xprt);
>  }

  reply	other threads:[~2009-01-07 22:00 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-05 21:21 [PATCH] svc: Clean up deferred requests on transport destruction Tom Tucker
2009-01-07 22:00 ` J. Bruce Fields [this message]
2009-01-07 22:09   ` J. Bruce Fields

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=20090107220028.GD965@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=tom@opengridcomputing.com \
    --cc=trond.myklebust@fys.uio.no \
    /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