aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfsd
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2012-04-25 18:11:04 -0400
committerJ. Bruce Fields <bfields@redhat.com>2012-05-31 20:29:38 -0400
commit45eaa1c1a16122a98bf995c004c23806759d2e5f (patch)
tree59fd1bf7a126ddb62e2e583f13d69038afbef1f2 /fs/nfsd
parentnfsd4: fix free_stateid return endianness (diff)
downloadlinux-dev-45eaa1c1a16122a98bf995c004c23806759d2e5f.tar.xz
linux-dev-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/nfsd')
-rw-r--r--fs/nfsd/nfs4xdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index f839be1a202c..61555e756410 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);
}