public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] v9fs: return the correct error when interrupted by signal
@ 2006-06-27  4:18 Latchesar Ionkov
  0 siblings, 0 replies; only message in thread
From: Latchesar Ionkov @ 2006-06-27  4:18 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, v9fs-developer

If a signal interrupts the user process, v9fs sends a flush request to the
file server and waits for its response. It error code is incorrectly set to
the error code of the flush message instead of ERESTARTSYS. The patch sets
the error code to the correct value.

Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>

---
commit c675b970b2befed791fa29f606852e205a009e62
tree 01b2f255baa2245d10e01756e981368a39401669
parent fcc18e83e1f6fd9fa6b333735bf0fcd530655511
author Latchesar Ionkov <lucho@ionkov.net> Mon, 26 Jun 2006 11:06:02 -0600
committer Latchesar Ionkov <lucho@ionkov.net> Mon, 26 Jun 2006 11:06:02 -0600

 fs/9p/mux.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/fs/9p/mux.c b/fs/9p/mux.c
index f4407eb..210d2c0 100644
--- a/fs/9p/mux.c
+++ b/fs/9p/mux.c
@@ -932,6 +932,8 @@ v9fs_mux_rpc(struct v9fs_mux_data *m, st
 					r.rcall || r.err);
 			} while (!r.rcall && !r.err && err==-ERESTARTSYS &&
 				m->trans->status==Connected && !m->err);
+
+			err = -ERESTARTSYS;
 		}
 		sigpending = 1;
 	}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-06-27  2:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-27  4:18 [PATCH] v9fs: return the correct error when interrupted by signal Latchesar Ionkov

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