aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4proc.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2008-06-11 16:42:05 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2008-07-09 12:09:18 -0400
commit2e96d2867245668dbdb973729288cf69b9fafa66 (patch)
tree8f8b0642beaf0f7d53e31963328dfbc992c5ac88 /fs/nfs/nfs4proc.c
parent34e8f92831cb5c40b3137e47a3daf4c09016ef02 (diff)
NFS: Fix a warning in nfs4_async_handle_error
We're not modifying the nfs_server when we call nfs_inc_server_stats and friends, so allow the compiler to pass 'const' pointers too. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r--fs/nfs/nfs4proc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index dfdd19a6d17e..058723d9122d 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -2756,8 +2756,7 @@ nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
2756 task->tk_status = 0; 2756 task->tk_status = 0;
2757 return -EAGAIN; 2757 return -EAGAIN;
2758 case -NFS4ERR_DELAY: 2758 case -NFS4ERR_DELAY:
2759 nfs_inc_server_stats((struct nfs_server *) server, 2759 nfs_inc_server_stats(server, NFSIOS_DELAY);
2760 NFSIOS_DELAY);
2761 case -NFS4ERR_GRACE: 2760 case -NFS4ERR_GRACE:
2762 rpc_delay(task, NFS4_POLL_RETRY_MAX); 2761 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2763 task->tk_status = 0; 2762 task->tk_status = 0;