diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-27 22:12:42 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-27 22:12:42 -0400 |
commit | 91ba2eeec5e8e86e054937eb3bf5aec5b22b1830 (patch) | |
tree | 9157b8bfe90fed0b472da3ec71dadfb0c587e566 /fs/nfs/nfs4xdr.c | |
parent | cf809556149f076b7a020c10e066b2b96e79b6a1 (diff) |
NFSv4: Add post-op attributes to nfs4_proc_link()
Optimise attribute revalidation when hardlinking. Add post-op attributes
for the directory and the original inode.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 34 |
1 files changed, 28 insertions, 6 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index cd9e26cfa868..f624b693ce21 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c | |||
@@ -324,12 +324,18 @@ static int nfs_stat_to_errno(int); | |||
324 | encode_putfh_maxsz + \ | 324 | encode_putfh_maxsz + \ |
325 | encode_savefh_maxsz + \ | 325 | encode_savefh_maxsz + \ |
326 | encode_putfh_maxsz + \ | 326 | encode_putfh_maxsz + \ |
327 | encode_link_maxsz) | 327 | encode_link_maxsz + \ |
328 | decode_getattr_maxsz + \ | ||
329 | encode_restorefh_maxsz + \ | ||
330 | decode_getattr_maxsz) | ||
328 | #define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \ | 331 | #define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \ |
329 | decode_putfh_maxsz + \ | 332 | decode_putfh_maxsz + \ |
330 | decode_savefh_maxsz + \ | 333 | decode_savefh_maxsz + \ |
331 | decode_putfh_maxsz + \ | 334 | decode_putfh_maxsz + \ |
332 | decode_link_maxsz) | 335 | decode_link_maxsz + \ |
336 | decode_getattr_maxsz + \ | ||
337 | decode_restorefh_maxsz + \ | ||
338 | decode_getattr_maxsz) | ||
333 | #define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \ | 339 | #define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \ |
334 | encode_putfh_maxsz + \ | 340 | encode_putfh_maxsz + \ |
335 | encode_symlink_maxsz + \ | 341 | encode_symlink_maxsz + \ |
@@ -1357,7 +1363,7 @@ static int nfs4_xdr_enc_link(struct rpc_rqst *req, uint32_t *p, const struct nfs | |||
1357 | { | 1363 | { |
1358 | struct xdr_stream xdr; | 1364 | struct xdr_stream xdr; |
1359 | struct compound_hdr hdr = { | 1365 | struct compound_hdr hdr = { |
1360 | .nops = 4, | 1366 | .nops = 7, |
1361 | }; | 1367 | }; |
1362 | int status; | 1368 | int status; |
1363 | 1369 | ||
@@ -1369,7 +1375,13 @@ static int nfs4_xdr_enc_link(struct rpc_rqst *req, uint32_t *p, const struct nfs | |||
1369 | goto out; | 1375 | goto out; |
1370 | if ((status = encode_putfh(&xdr, args->dir_fh)) != 0) | 1376 | if ((status = encode_putfh(&xdr, args->dir_fh)) != 0) |
1371 | goto out; | 1377 | goto out; |
1372 | status = encode_link(&xdr, args->name); | 1378 | if ((status = encode_link(&xdr, args->name)) != 0) |
1379 | goto out; | ||
1380 | if ((status = encode_getfattr(&xdr, args->bitmask)) != 0) | ||
1381 | goto out; | ||
1382 | if ((status = encode_restorefh(&xdr)) != 0) | ||
1383 | goto out; | ||
1384 | status = encode_getfattr(&xdr, args->bitmask); | ||
1373 | out: | 1385 | out: |
1374 | return status; | 1386 | return status; |
1375 | } | 1387 | } |
@@ -3529,7 +3541,7 @@ out: | |||
3529 | /* | 3541 | /* |
3530 | * Decode LINK response | 3542 | * Decode LINK response |
3531 | */ | 3543 | */ |
3532 | static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_change_info *cinfo) | 3544 | static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_link_res *res) |
3533 | { | 3545 | { |
3534 | struct xdr_stream xdr; | 3546 | struct xdr_stream xdr; |
3535 | struct compound_hdr hdr; | 3547 | struct compound_hdr hdr; |
@@ -3544,7 +3556,17 @@ static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_ch | |||
3544 | goto out; | 3556 | goto out; |
3545 | if ((status = decode_putfh(&xdr)) != 0) | 3557 | if ((status = decode_putfh(&xdr)) != 0) |
3546 | goto out; | 3558 | goto out; |
3547 | status = decode_link(&xdr, cinfo); | 3559 | if ((status = decode_link(&xdr, &res->cinfo)) != 0) |
3560 | goto out; | ||
3561 | /* | ||
3562 | * Note order: OP_LINK leaves the directory as the current | ||
3563 | * filehandle. | ||
3564 | */ | ||
3565 | if (decode_getfattr(&xdr, res->dir_attr, res->server) != 0) | ||
3566 | goto out; | ||
3567 | if ((status = decode_restorefh(&xdr)) != 0) | ||
3568 | goto out; | ||
3569 | decode_getfattr(&xdr, res->fattr, res->server); | ||
3548 | out: | 3570 | out: |
3549 | return status; | 3571 | return status; |
3550 | } | 3572 | } |