All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Patch Upstream: pnfs-obj: pNFS errors are communicated on iodata->pnfs_error
       [not found] ` <20120112231355.GA20151@kroah.com>
@ 2012-01-18 21:53   ` Boaz Harrosh
  2012-01-22 21:10     ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Boaz Harrosh @ 2012-01-18 21:53 UTC (permalink / raw)
  To: stable; +Cc: Greg KH, Trond Myklebust, open-osd, NFS list

On 01/13/2012 01:13 AM, Greg KH wrote:
> 
> Care to provide me such a patch for 3.0?
> 
> thanks,
> 
> greg k-h

Hi this is a 3.1 and 3.0 version of this patch. It is based on todays
stable tree checkout. It will apply cleanly to both linux-3.0.y and
linux-3.1.y branches.

Thanks
Boaz
---
From: Boaz Harrosh <bharrosh@panasas.com>
Subject: pnfs-obj: pNFS errors are communicated on iodata->pnfs_error (linux-3.0.y)

Some time along the way pNFS IO errors were switched to
communicate with a special iodata->pnfs_error member instead
of the regular RPC members. But objlayout was not switched
over.

Fix that!
Without this fix any IO error is hanged, because IO is not
switched to MDS and pages are never cleared or read.

[This is the 3.0.y and 3.1.y equal of mainline [5c0b412] patch]
CC: Stable Tree <stable@kernel.org>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
---
 fs/nfs/objlayout/objlayout.c |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/fs/nfs/objlayout/objlayout.c b/fs/nfs/objlayout/objlayout.c
index 1d06f8e..fefa122 100644
--- a/fs/nfs/objlayout/objlayout.c
+++ b/fs/nfs/objlayout/objlayout.c
@@ -294,9 +294,11 @@ objlayout_read_done(struct objlayout_io_state *state, ssize_t status, bool sync)
 	dprintk("%s: Begin status=%zd eof=%d\n", __func__, status, eof);
 	rdata = state->rpcdata;
 	rdata->task.tk_status = status;
-	if (status >= 0) {
+	if (likely(status >= 0)) {
 		rdata->res.count = status;
 		rdata->res.eof = eof;
+	} else {
+		rdata->pnfs_error = status;
 	}
 	objlayout_iodone(state);
 	/* must not use state after this point */
@@ -380,15 +382,17 @@ objlayout_write_done(struct objlayout_io_state *state, ssize_t status,
 	wdata = state->rpcdata;
 	state->status = status;
 	wdata->task.tk_status = status;
-	if (status >= 0) {
+	if (likely(status >= 0)) {
 		wdata->res.count = status;
 		wdata->verf.committed = state->committed;
 		dprintk("%s: Return status %d committed %d\n",
 			__func__, wdata->task.tk_status,
 			wdata->verf.committed);
-	} else
+	} else {
+		wdata->pnfs_error = status;
 		dprintk("%s: Return status %d\n",
 			__func__, wdata->task.tk_status);
+	}
 	objlayout_iodone(state);
 	/* must not use state after this point */
 
-- 
1.7.2.3


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

* Re: Patch Upstream: pnfs-obj: pNFS errors are communicated on iodata->pnfs_error
  2012-01-18 21:53   ` Patch Upstream: pnfs-obj: pNFS errors are communicated on iodata->pnfs_error Boaz Harrosh
@ 2012-01-22 21:10     ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2012-01-22 21:10 UTC (permalink / raw)
  To: Boaz Harrosh; +Cc: stable, Trond Myklebust, open-osd, NFS list

On Wed, Jan 18, 2012 at 11:53:25PM +0200, Boaz Harrosh wrote:
> On 01/13/2012 01:13 AM, Greg KH wrote:
> > 
> > Care to provide me such a patch for 3.0?
> > 
> > thanks,
> > 
> > greg k-h
> 
> Hi this is a 3.1 and 3.0 version of this patch. It is based on todays
> stable tree checkout. It will apply cleanly to both linux-3.0.y and
> linux-3.1.y branches.

Thanks for the backport.  As 3.1.y is now end-of-life, I've applied this
to the 3.0.y tree only.

thanks,

greg k-h

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

end of thread, other threads:[~2012-01-23  0:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20120111154700.61EA4262C@git.kroah.org>
     [not found] ` <20120112231355.GA20151@kroah.com>
2012-01-18 21:53   ` Patch Upstream: pnfs-obj: pNFS errors are communicated on iodata->pnfs_error Boaz Harrosh
2012-01-22 21:10     ` Greg KH

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.