diff options
Diffstat (limited to 'fs/nfsd/nfs4callback.c')
-rw-r--r-- | fs/nfsd/nfs4callback.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c index 353eb4a0b847..3fd23f7aceca 100644 --- a/fs/nfsd/nfs4callback.c +++ b/fs/nfsd/nfs4callback.c | |||
@@ -141,6 +141,7 @@ struct nfs4_cb_compound_hdr { | |||
141 | u32 ident; | 141 | u32 ident; |
142 | u32 nops; | 142 | u32 nops; |
143 | __be32 *nops_p; | 143 | __be32 *nops_p; |
144 | u32 minorversion; | ||
144 | u32 taglen; | 145 | u32 taglen; |
145 | char *tag; | 146 | char *tag; |
146 | }; | 147 | }; |
@@ -209,7 +210,7 @@ encode_cb_compound_hdr(struct xdr_stream *xdr, struct nfs4_cb_compound_hdr *hdr) | |||
209 | 210 | ||
210 | RESERVE_SPACE(16); | 211 | RESERVE_SPACE(16); |
211 | WRITE32(0); /* tag length is always 0 */ | 212 | WRITE32(0); /* tag length is always 0 */ |
212 | WRITE32(NFS4_MINOR_VERSION); | 213 | WRITE32(hdr->minorversion); |
213 | WRITE32(hdr->ident); | 214 | WRITE32(hdr->ident); |
214 | hdr->nops_p = p; | 215 | hdr->nops_p = p; |
215 | WRITE32(hdr->nops); | 216 | WRITE32(hdr->nops); |