diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-17 21:52:37 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-19 15:09:03 -0400 |
commit | 365c8f589afbc27d8cf42d396475017bc1c462fd (patch) | |
tree | 00a0447d6723f1b22821b6f858d32fa8c9d2fa06 /fs | |
parent | 6f220ed5a84d87645a84ae22105dc565f3f248b5 (diff) |
NFSv4: Don't fail nfs4_xdr_dec_open if decode_restorefh() failed
We can already easily recover from that inside _nfs4_proc_open().
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index c08738441f73..99a123db1083 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c | |||
@@ -4035,7 +4035,7 @@ static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openr | |||
4035 | goto out; | 4035 | goto out; |
4036 | if (decode_getfattr(&xdr, res->f_attr, res->server) != 0) | 4036 | if (decode_getfattr(&xdr, res->f_attr, res->server) != 0) |
4037 | goto out; | 4037 | goto out; |
4038 | if ((status = decode_restorefh(&xdr)) != 0) | 4038 | if (decode_restorefh(&xdr) != 0) |
4039 | goto out; | 4039 | goto out; |
4040 | decode_getfattr(&xdr, res->dir_attr, res->server); | 4040 | decode_getfattr(&xdr, res->dir_attr, res->server); |
4041 | out: | 4041 | out: |