diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-03-11 18:10:25 (GMT) |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-03-11 18:10:25 (GMT) |
commit | 1ca277d88dafdbc3c5a69d32590e7184b9af6371 (patch) | |
tree | 8cd36f442796e7e83c1dfcd72a036846f1b3950f /fs/nfs | |
parent | 9e6e70f8d8b6698e0017c56b86525aabe9c7cd4c (diff) | |
download | linux-1ca277d88dafdbc3c5a69d32590e7184b9af6371.tar.xz |
NFS: Shrink the struct nfs_fattr
We don't need the bitmap[] field anymore, since the 'valid' field tells us
all we need to know about which attributes were filled in...
Also move the pre-op attributes in order to improve the structure packing.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index 7d220da..9f1df83 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -3002,9 +3002,6 @@ static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, cons if ((status = decode_attr_bitmap(xdr, bitmap)) != 0) goto xdr_error; - fattr->bitmap[0] = bitmap[0]; - fattr->bitmap[1] = bitmap[1]; - if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0) goto xdr_error; |