The patch titled v9fs: return the correct error when interrupted by signal has been removed from the -mm tree. Its filename is v9fs-return-the-correct-error-when-interrupted-by-signal.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: v9fs: return the correct error when interrupted by signal From: Latchesar Ionkov <lucho@xxxxxxxxxx> 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@xxxxxxxxxx> Cc: Eric Van Hensbergen <ericvh@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/9p/mux.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN fs/9p/mux.c~v9fs-return-the-correct-error-when-interrupted-by-signal fs/9p/mux.c --- a/fs/9p/mux.c~v9fs-return-the-correct-error-when-interrupted-by-signal +++ a/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; } _ Patches currently in -mm which might be from lucho@xxxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html