Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async
@ 2014-10-08 20:46 Trond Myklebust
  2014-10-09  2:11 ` Weston Andros Adamson
  2014-10-09 16:02 ` Christoph Hellwig
  0 siblings, 2 replies; 4+ messages in thread
From: Trond Myklebust @ 2014-10-08 20:46 UTC (permalink / raw)
  To: linux-nfs; +Cc: Weston Andros Adamson

You cannot call pnfs_put_lseg_async() more than once per lseg, so it
is really an inappropriate way to deal with a refcount issue.

Instead, replace it with a function that decrements the refcount, and
puts the final 'free' operation (which is incompatible with locks) on
the workqueue.

Cc: Weston Andros Adamson <dros@primarydata.com>
Fixes: e6cf82d1830f: pnfs: add pnfs_put_lseg_async
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
---
 fs/nfs/filelayout/filelayout.c |  2 +-
 fs/nfs/pnfs.c                  | 33 +++++++++++++++++++++++++++------
 fs/nfs/pnfs.h                  |  6 +-----
 3 files changed, 29 insertions(+), 12 deletions(-)

diff --git a/fs/nfs/filelayout/filelayout.c b/fs/nfs/filelayout/filelayout.c
index abc5056999d6..46fab1cb455a 100644
--- a/fs/nfs/filelayout/filelayout.c
+++ b/fs/nfs/filelayout/filelayout.c
@@ -1031,7 +1031,7 @@ filelayout_clear_request_commit(struct nfs_page *req,
 	}
 out:
 	nfs_request_remove_commit_list(req, cinfo);
-	pnfs_put_lseg_async(freeme);
+	pnfs_put_lseg_locked(freeme);
 }
 
 static void
diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c
index 76de7f568119..0a5dda4d85c2 100644
--- a/fs/nfs/pnfs.c
+++ b/fs/nfs/pnfs.c
@@ -361,22 +361,43 @@ pnfs_put_lseg(struct pnfs_layout_segment *lseg)
 }
 EXPORT_SYMBOL_GPL(pnfs_put_lseg);
 
-static void pnfs_put_lseg_async_work(struct work_struct *work)
+static void pnfs_free_lseg_async_work(struct work_struct *work)
 {
 	struct pnfs_layout_segment *lseg;
+	struct pnfs_layout_hdr *lo;
 
 	lseg = container_of(work, struct pnfs_layout_segment, pls_work);
+	lo = lseg->pls_layout;
 
-	pnfs_put_lseg(lseg);
+	pnfs_free_lseg(lseg);
+	pnfs_put_layout_hdr(lo);
 }
 
-void
-pnfs_put_lseg_async(struct pnfs_layout_segment *lseg)
+static void pnfs_free_lseg_async(struct pnfs_layout_segment *lseg)
 {
-	INIT_WORK(&lseg->pls_work, pnfs_put_lseg_async_work);
+	INIT_WORK(&lseg->pls_work, pnfs_free_lseg_async_work);
 	schedule_work(&lseg->pls_work);
 }
-EXPORT_SYMBOL_GPL(pnfs_put_lseg_async);
+
+void
+pnfs_put_lseg_locked(struct pnfs_layout_segment *lseg)
+{
+	if (!lseg)
+		return;
+
+	assert_spin_locked(&lseg->pls_layout->plh_inode->i_lock);
+
+	dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
+		atomic_read(&lseg->pls_refcount),
+		test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
+	if (atomic_dec_and_test(&lseg->pls_refcount)) {
+		struct pnfs_layout_hdr *lo = lseg->pls_layout;
+		pnfs_get_layout_hdr(lo);
+		pnfs_layout_remove_lseg(lo, lseg);
+		pnfs_free_lseg_async(lseg);
+	}
+}
+EXPORT_SYMBOL_GPL(pnfs_put_lseg_locked);
 
 static u64
 end_offset(u64 start, u64 len)
diff --git a/fs/nfs/pnfs.h b/fs/nfs/pnfs.h
index 509a710148ba..9ae5b765b073 100644
--- a/fs/nfs/pnfs.h
+++ b/fs/nfs/pnfs.h
@@ -190,7 +190,7 @@ extern int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp);
 /* pnfs.c */
 void pnfs_get_layout_hdr(struct pnfs_layout_hdr *lo);
 void pnfs_put_lseg(struct pnfs_layout_segment *lseg);
-void pnfs_put_lseg_async(struct pnfs_layout_segment *lseg);
+void pnfs_put_lseg_locked(struct pnfs_layout_segment *lseg);
 
 void set_pnfs_layoutdriver(struct nfs_server *, const struct nfs_fh *, u32);
 void unset_pnfs_layoutdriver(struct nfs_server *);
@@ -445,10 +445,6 @@ static inline void pnfs_put_lseg(struct pnfs_layout_segment *lseg)
 {
 }
 
-static inline void pnfs_put_lseg_async(struct pnfs_layout_segment *lseg)
-{
-}
-
 static inline int pnfs_return_layout(struct inode *ino)
 {
 	return 0;
-- 
1.9.3


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

* Re: [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async
  2014-10-08 20:46 [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async Trond Myklebust
@ 2014-10-09  2:11 ` Weston Andros Adamson
  2014-10-09 16:02 ` Christoph Hellwig
  1 sibling, 0 replies; 4+ messages in thread
From: Weston Andros Adamson @ 2014-10-09  2:11 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: linux-nfs list

On Oct 8, 2014, at 4:46 PM, Trond Myklebust <trond.myklebust@primarydata.com> wrote:

> You cannot call pnfs_put_lseg_async() more than once per lseg, so it
> is really an inappropriate way to deal with a refcount issue.

You’re absolutely right!

> Instead, replace it with a function that decrements the refcount, and
> puts the final 'free' operation (which is incompatible with locks) on
> the work queue.

Thanks, this looks like the right solution.

The good news is that nobody should have been hitting this, as the only file layout
server (that I know of) does stable writes, thus doesn’t use the commit path.

-dros

> 
> Cc: Weston Andros Adamson <dros@primarydata.com>
> Fixes: e6cf82d1830f: pnfs: add pnfs_put_lseg_async
> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
> ---
> fs/nfs/filelayout/filelayout.c |  2 +-
> fs/nfs/pnfs.c                  | 33 +++++++++++++++++++++++++++------
> fs/nfs/pnfs.h                  |  6 +-----
> 3 files changed, 29 insertions(+), 12 deletions(-)
> 
> diff --git a/fs/nfs/filelayout/filelayout.c b/fs/nfs/filelayout/filelayout.c
> index abc5056999d6..46fab1cb455a 100644
> --- a/fs/nfs/filelayout/filelayout.c
> +++ b/fs/nfs/filelayout/filelayout.c
> @@ -1031,7 +1031,7 @@ filelayout_clear_request_commit(struct nfs_page *req,
> 	}
> out:
> 	nfs_request_remove_commit_list(req, cinfo);
> -	pnfs_put_lseg_async(freeme);
> +	pnfs_put_lseg_locked(freeme);
> }
> 
> static void
> diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c
> index 76de7f568119..0a5dda4d85c2 100644
> --- a/fs/nfs/pnfs.c
> +++ b/fs/nfs/pnfs.c
> @@ -361,22 +361,43 @@ pnfs_put_lseg(struct pnfs_layout_segment *lseg)
> }
> EXPORT_SYMBOL_GPL(pnfs_put_lseg);
> 
> -static void pnfs_put_lseg_async_work(struct work_struct *work)
> +static void pnfs_free_lseg_async_work(struct work_struct *work)
> {
> 	struct pnfs_layout_segment *lseg;
> +	struct pnfs_layout_hdr *lo;
> 
> 	lseg = container_of(work, struct pnfs_layout_segment, pls_work);
> +	lo = lseg->pls_layout;
> 
> -	pnfs_put_lseg(lseg);
> +	pnfs_free_lseg(lseg);
> +	pnfs_put_layout_hdr(lo);
> }
> 
> -void
> -pnfs_put_lseg_async(struct pnfs_layout_segment *lseg)
> +static void pnfs_free_lseg_async(struct pnfs_layout_segment *lseg)
> {
> -	INIT_WORK(&lseg->pls_work, pnfs_put_lseg_async_work);
> +	INIT_WORK(&lseg->pls_work, pnfs_free_lseg_async_work);
> 	schedule_work(&lseg->pls_work);
> }
> -EXPORT_SYMBOL_GPL(pnfs_put_lseg_async);
> +
> +void
> +pnfs_put_lseg_locked(struct pnfs_layout_segment *lseg)
> +{
> +	if (!lseg)
> +		return;
> +
> +	assert_spin_locked(&lseg->pls_layout->plh_inode->i_lock);
> +
> +	dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
> +		atomic_read(&lseg->pls_refcount),
> +		test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
> +	if (atomic_dec_and_test(&lseg->pls_refcount)) {
> +		struct pnfs_layout_hdr *lo = lseg->pls_layout;
> +		pnfs_get_layout_hdr(lo);
> +		pnfs_layout_remove_lseg(lo, lseg);
> +		pnfs_free_lseg_async(lseg);
> +	}
> +}
> +EXPORT_SYMBOL_GPL(pnfs_put_lseg_locked);
> 
> static u64
> end_offset(u64 start, u64 len)
> diff --git a/fs/nfs/pnfs.h b/fs/nfs/pnfs.h
> index 509a710148ba..9ae5b765b073 100644
> --- a/fs/nfs/pnfs.h
> +++ b/fs/nfs/pnfs.h
> @@ -190,7 +190,7 @@ extern int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp);
> /* pnfs.c */
> void pnfs_get_layout_hdr(struct pnfs_layout_hdr *lo);
> void pnfs_put_lseg(struct pnfs_layout_segment *lseg);
> -void pnfs_put_lseg_async(struct pnfs_layout_segment *lseg);
> +void pnfs_put_lseg_locked(struct pnfs_layout_segment *lseg);
> 
> void set_pnfs_layoutdriver(struct nfs_server *, const struct nfs_fh *, u32);
> void unset_pnfs_layoutdriver(struct nfs_server *);
> @@ -445,10 +445,6 @@ static inline void pnfs_put_lseg(struct pnfs_layout_segment *lseg)
> {
> }
> 
> -static inline void pnfs_put_lseg_async(struct pnfs_layout_segment *lseg)
> -{
> -}
> -
> static inline int pnfs_return_layout(struct inode *ino)
> {
> 	return 0;
> -- 
> 1.9.3
> 


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

* Re: [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async
  2014-10-08 20:46 [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async Trond Myklebust
  2014-10-09  2:11 ` Weston Andros Adamson
@ 2014-10-09 16:02 ` Christoph Hellwig
  2014-10-09 18:36   ` Trond Myklebust
  1 sibling, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2014-10-09 16:02 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: linux-nfs, Weston Andros Adamson

On Wed, Oct 08, 2014 at 04:46:40PM -0400, Trond Myklebust wrote:
> You cannot call pnfs_put_lseg_async() more than once per lseg, so it
> is really an inappropriate way to deal with a refcount issue.
> 
> Instead, replace it with a function that decrements the refcount, and
> puts the final 'free' operation (which is incompatible with locks) on
> the workqueue.

How about calling the clear_request_commit layout driver operation
from a workqueue?  That seems like a much saner approach.


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

* Re: [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async
  2014-10-09 16:02 ` Christoph Hellwig
@ 2014-10-09 18:36   ` Trond Myklebust
  0 siblings, 0 replies; 4+ messages in thread
From: Trond Myklebust @ 2014-10-09 18:36 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Linux NFS Mailing List, Weston Andros Adamson

On Thu, Oct 9, 2014 at 12:02 PM, Christoph Hellwig <hch@infradead.org> wrote:
> On Wed, Oct 08, 2014 at 04:46:40PM -0400, Trond Myklebust wrote:
>> You cannot call pnfs_put_lseg_async() more than once per lseg, so it
>> is really an inappropriate way to deal with a refcount issue.
>>
>> Instead, replace it with a function that decrements the refcount, and
>> puts the final 'free' operation (which is incompatible with locks) on
>> the workqueue.
>
> How about calling the clear_request_commit layout driver operation
> from a workqueue?  That seems like a much saner approach.

That unfortunately suffers from worse problems that above. We'd have
to embed a struct work in the nfs_page (which is already a little on
the large size), and we'd still have no guarantee that
clear_request_commit would be complete if we need to call it twice
(which can happen).

-- 
Trond Myklebust

Linux NFS client maintainer, PrimaryData

trond.myklebust@primarydata.com

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

end of thread, other threads:[~2014-10-09 18:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-08 20:46 [PATCH] NFSv4.1/pnfs: replace broken pnfs_put_lseg_async Trond Myklebust
2014-10-09  2:11 ` Weston Andros Adamson
2014-10-09 16:02 ` Christoph Hellwig
2014-10-09 18:36   ` Trond Myklebust

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox