diff options
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r-- | net/sunrpc/clnt.c | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 355e7863c0aa..ceadb728f0da 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -863,15 +863,11 @@ call_bind_status(struct rpc_task *task) | |||
863 | dprintk("RPC: %4d remote rpcbind: RPC program/version unavailable\n", | 863 | dprintk("RPC: %4d remote rpcbind: RPC program/version unavailable\n", |
864 | task->tk_pid); | 864 | task->tk_pid); |
865 | rpc_delay(task, 3*HZ); | 865 | rpc_delay(task, 3*HZ); |
866 | goto retry_bind; | 866 | goto retry_timeout; |
867 | case -ETIMEDOUT: | 867 | case -ETIMEDOUT: |
868 | dprintk("RPC: %4d rpcbind request timed out\n", | 868 | dprintk("RPC: %4d rpcbind request timed out\n", |
869 | task->tk_pid); | 869 | task->tk_pid); |
870 | if (RPC_IS_SOFT(task)) { | 870 | goto retry_timeout; |
871 | status = -EIO; | ||
872 | break; | ||
873 | } | ||
874 | goto retry_bind; | ||
875 | case -EPFNOSUPPORT: | 871 | case -EPFNOSUPPORT: |
876 | dprintk("RPC: %4d remote rpcbind service unavailable\n", | 872 | dprintk("RPC: %4d remote rpcbind service unavailable\n", |
877 | task->tk_pid); | 873 | task->tk_pid); |
@@ -884,16 +880,13 @@ call_bind_status(struct rpc_task *task) | |||
884 | dprintk("RPC: %4d unrecognized rpcbind error (%d)\n", | 880 | dprintk("RPC: %4d unrecognized rpcbind error (%d)\n", |
885 | task->tk_pid, -task->tk_status); | 881 | task->tk_pid, -task->tk_status); |
886 | status = -EIO; | 882 | status = -EIO; |
887 | break; | ||
888 | } | 883 | } |
889 | 884 | ||
890 | rpc_exit(task, status); | 885 | rpc_exit(task, status); |
891 | return; | 886 | return; |
892 | 887 | ||
893 | retry_bind: | 888 | retry_timeout: |
894 | task->tk_status = 0; | 889 | task->tk_action = call_timeout; |
895 | task->tk_action = call_bind; | ||
896 | return; | ||
897 | } | 890 | } |
898 | 891 | ||
899 | /* | 892 | /* |
@@ -941,14 +934,16 @@ call_connect_status(struct rpc_task *task) | |||
941 | 934 | ||
942 | switch (status) { | 935 | switch (status) { |
943 | case -ENOTCONN: | 936 | case -ENOTCONN: |
944 | case -ETIMEDOUT: | ||
945 | case -EAGAIN: | 937 | case -EAGAIN: |
946 | task->tk_action = call_bind; | 938 | task->tk_action = call_bind; |
947 | break; | 939 | if (!RPC_IS_SOFT(task)) |
948 | default: | 940 | return; |
949 | rpc_exit(task, -EIO); | 941 | /* if soft mounted, test if we've timed out */ |
950 | break; | 942 | case -ETIMEDOUT: |
943 | task->tk_action = call_timeout; | ||
944 | return; | ||
951 | } | 945 | } |
946 | rpc_exit(task, -EIO); | ||
952 | } | 947 | } |
953 | 948 | ||
954 | /* | 949 | /* |
@@ -1057,7 +1052,6 @@ call_status(struct rpc_task *task) | |||
1057 | printk("%s: RPC call returned error %d\n", | 1052 | printk("%s: RPC call returned error %d\n", |
1058 | clnt->cl_protname, -status); | 1053 | clnt->cl_protname, -status); |
1059 | rpc_exit(task, status); | 1054 | rpc_exit(task, status); |
1060 | break; | ||
1061 | } | 1055 | } |
1062 | } | 1056 | } |
1063 | 1057 | ||
@@ -1125,10 +1119,10 @@ call_decode(struct rpc_task *task) | |||
1125 | clnt->cl_stats->rpcretrans++; | 1119 | clnt->cl_stats->rpcretrans++; |
1126 | goto out_retry; | 1120 | goto out_retry; |
1127 | } | 1121 | } |
1128 | printk(KERN_WARNING "%s: too small RPC reply size (%d bytes)\n", | 1122 | dprintk("%s: too small RPC reply size (%d bytes)\n", |
1129 | clnt->cl_protname, task->tk_status); | 1123 | clnt->cl_protname, task->tk_status); |
1130 | rpc_exit(task, -EIO); | 1124 | task->tk_action = call_timeout; |
1131 | return; | 1125 | goto out_retry; |
1132 | } | 1126 | } |
1133 | 1127 | ||
1134 | /* | 1128 | /* |