Message ID | 20170324234236.572d3576@duuni (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
diff --git a/net/9p/client.c b/net/9p/client.c index 3ce672af1596..f1c8ad373f90 100644 --- a/net/9p/client.c +++ b/net/9p/client.c @@ -749,8 +749,7 @@ p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...) } again: /* Wait for the response */ - err = wait_event_interruptible(*req->wq, - req->status >= REQ_STATUS_RCVD); + err = wait_event_killable(*req->wq, req->status >= REQ_STATUS_RCVD); /* * Make sure our req is coherent with regard to updates in other