summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/rpc/clnt_dg.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/rpc/clnt_dg.c b/sys/rpc/clnt_dg.c
index 865c704..0b49375 100644
--- a/sys/rpc/clnt_dg.c
+++ b/sys/rpc/clnt_dg.c
@@ -547,11 +547,13 @@ get_reply:
tv -= time_waited;
if (tv > 0) {
- if (cu->cu_closing || cu->cu_closed)
+ if (cu->cu_closing || cu->cu_closed) {
error = 0;
- else
+ cr->cr_error = ESHUTDOWN;
+ } else {
error = msleep(cr, &cs->cs_lock,
cu->cu_waitflag, cu->cu_waitchan, tv);
+ }
} else {
error = EWOULDBLOCK;
}
OpenPOWER on IntegriCloud