diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-19 23:28:51 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-20 10:26:40 -0700 |
commit | 5704fdeb41c9fb282ae576516f221ea0b8f64b2b (patch) | |
tree | b4e3f71f95530659e1f25c51d7d002365ab2e554 /fs/nfs/callback.h | |
parent | e6f684f6443dd37384c63d2f27571350e0b5c8aa (diff) | |
download | op-kernel-dev-5704fdeb41c9fb282ae576516f221ea0b8f64b2b.zip op-kernel-dev-5704fdeb41c9fb282ae576516f221ea0b8f64b2b.tar.gz |
[PATCH] xdr annotations: fs/nfs/callback*
on-the-wire data is big-endian
[mostly pulled from Alexey's patch]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Trond Myklebust <trond.myklebust@fys.uio.no>
Acked-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/nfs/callback.h')
-rw-r--r-- | fs/nfs/callback.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/callback.h b/fs/nfs/callback.h index 6921d82..db3d791 100644 --- a/fs/nfs/callback.h +++ b/fs/nfs/callback.h @@ -31,10 +31,10 @@ struct cb_compound_hdr_arg { }; struct cb_compound_hdr_res { - uint32_t *status; + __be32 *status; int taglen; const char *tag; - uint32_t *nops; + __be32 *nops; }; struct cb_getattrargs { |