]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
nfs41: free the slot on unhandled read errors
authorAndy Adamson <andros@netapp.com>
Fri, 4 Dec 2009 20:55:30 +0000 (15:55 -0500)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Fri, 4 Dec 2009 20:55:30 +0000 (15:55 -0500)
nfs4_read_done returns zero on unhandled errors. nfs_readpage_result will
return on a negative tk_status without freeing the slot.
Call nfs4_sequence_free_slot on unhandled errors in nfs4_read_done.

Signed-off-by: Andy Adamson <andros@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4proc.c

index 6ef50aa785d599701b030aafc5b33b5fde65990a..f0b6d569a50afbd8908cdb189a4b8cb348053d05 100644 (file)
@@ -3009,6 +3009,9 @@ static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
        nfs_invalidate_atime(data->inode);
        if (task->tk_status > 0)
                renew_lease(server, data->timestamp);
+       else if (task->tk_status < 0)
+               nfs4_sequence_free_slot(server->nfs_client, &data->res.seq_res);
+
        return 0;
 }