projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37d9d76
)
NFSv4: Ignore errors on the post-op attributes in SETATTR calls
author
Trond Myklebust
<Trond.Myklebust@netapp.com>
Wed, 11 Mar 2009 18:10:23 +0000
(14:10 -0400)
committer
Trond Myklebust
<Trond.Myklebust@netapp.com>
Wed, 11 Mar 2009 18:10:23 +0000
(14:10 -0400)
There is no need to fail or retry a SETATTR call just because the post-op
GETATTR failed.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4xdr.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/nfs/nfs4xdr.c
b/fs/nfs/nfs4xdr.c
index d1e4c8f8a0a9e8b5106564cf71986579340efa77..5f0ee3e2bd8452e09defa2fb46658f1d9ca79dea 100644
(file)
--- a/
fs/nfs/nfs4xdr.c
+++ b/
fs/nfs/nfs4xdr.c
@@
-4078,9
+4078,7
@@
static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_se
status = decode_setattr(&xdr, res);
if (status)
goto out;
- status = decode_getfattr(&xdr, res->fattr, res->server);
- if (status == NFS4ERR_DELAY)
- status = 0;
+ decode_getfattr(&xdr, res->fattr, res->server);
out:
return status;
}