summaryrefslogtreecommitdiffstats
path: root/include/linux/nfsd
diff options
context:
space:
mode:
authorAndy Adamson2009-03-28 09:30:52 +0100
committerJ. Bruce Fields2009-03-29 22:20:12 +0200
commite354d571bb481f1d71f2c3004b9ff570b32e83bd (patch)
treef55f172d7412c0853187f8cb3c2e1a9fdce4d411 /include/linux/nfsd
parentFix a build warning about leaking CONFIG_NFSD to userspace. (diff)
downloadkernel-qcow2-linux-e354d571bb481f1d71f2c3004b9ff570b32e83bd.tar.gz
kernel-qcow2-linux-e354d571bb481f1d71f2c3004b9ff570b32e83bd.tar.xz
kernel-qcow2-linux-e354d571bb481f1d71f2c3004b9ff570b32e83bd.zip
nfsd: embed nfsd4_current_state in nfsd4_compoundres
Remove the allocation of struct nfsd4_compound_state. Signed-off-by: Andy Adamson <andros@netapp.com> Signed-off-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'include/linux/nfsd')
-rw-r--r--include/linux/nfsd/xdr4.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/nfsd/xdr4.h b/include/linux/nfsd/xdr4.h
index 27bd3e38ec5a..fd15ddc3359d 100644
--- a/include/linux/nfsd/xdr4.h
+++ b/include/linux/nfsd/xdr4.h
@@ -45,9 +45,9 @@
#define XDR_LEN(n) (((n) + 3) & ~3)
struct nfsd4_compound_state {
- struct svc_fh current_fh;
- struct svc_fh save_fh;
- struct nfs4_stateowner *replay_owner;
+ struct svc_fh current_fh;
+ struct svc_fh save_fh;
+ struct nfs4_stateowner *replay_owner;
};
struct nfsd4_change_info {
@@ -416,7 +416,8 @@ struct nfsd4_compoundres {
u32 taglen;
char * tag;
u32 opcnt;
- __be32 * tagp; /* where to encode tag and opcount */
+ __be32 * tagp; /* tag, opcount encode location */
+ struct nfsd4_compound_state cstate;
};
#define NFS4_SVC_XDRSIZE sizeof(struct nfsd4_compoundargs)