diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-04-25 18:11:04 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-05-31 20:29:38 -0400 |
commit | 45eaa1c1a16122a98bf995c004c23806759d2e5f (patch) | |
tree | 59fd1bf7a126ddb62e2e583f13d69038afbef1f2 /fs | |
parent | d1829b38241394c0c66d407a165fbd6d9897c241 (diff) | |
download | linux-3.10-45eaa1c1a16122a98bf995c004c23806759d2e5f.tar.gz linux-3.10-45eaa1c1a16122a98bf995c004c23806759d2e5f.tar.bz2 linux-3.10-45eaa1c1a16122a98bf995c004c23806759d2e5f.zip |
nfsd4: fix change attribute endianness
Though actually this doesn't matter much, as NFSv4.0 clients are
required to treat the change attribute as opaque.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index f839be1a202..61555e75641 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -1674,12 +1674,12 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp) static void write32(__be32 **p, u32 n) { - *(*p)++ = n; + *(*p)++ = htonl(n); } static void write64(__be32 **p, u64 n) { - write32(p, (u32)(n >> 32)); + write32(p, (n >> 32)); write32(p, (u32)n); } |