diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-19 23:29:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-20 10:26:43 -0700 |
commit | c7afef1f963bec198b186cc34b9e8c9b9ce2e266 (patch) | |
tree | d3686ebea2e848e225e9927b8f6f164547d82719 /include/linux/nfsd/cache.h | |
parent | f00f328fda1eeec575cd0f360da81b66bf4133a1 (diff) | |
download | talos-op-linux-c7afef1f963bec198b186cc34b9e8c9b9ce2e266.tar.gz talos-op-linux-c7afef1f963bec198b186cc34b9e8c9b9ce2e266.zip |
[PATCH] nfsd: misc endianness annotations
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 'include/linux/nfsd/cache.h')
-rw-r--r-- | include/linux/nfsd/cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/nfsd/cache.h b/include/linux/nfsd/cache.h index c3a3557c2a5b..007480cd6a60 100644 --- a/include/linux/nfsd/cache.h +++ b/include/linux/nfsd/cache.h @@ -26,14 +26,14 @@ struct svc_cacherep { c_type, /* status, buffer */ c_secure : 1; /* req came from port < 1024 */ struct sockaddr_in c_addr; - u32 c_xid; + __be32 c_xid; u32 c_prot; u32 c_proc; u32 c_vers; unsigned long c_timestamp; union { struct kvec u_vec; - u32 u_status; + __be32 u_status; } c_u; }; @@ -75,7 +75,7 @@ enum { void nfsd_cache_init(void); void nfsd_cache_shutdown(void); int nfsd_cache_lookup(struct svc_rqst *, int); -void nfsd_cache_update(struct svc_rqst *, int, u32 *); +void nfsd_cache_update(struct svc_rqst *, int, __be32 *); #endif /* __KERNEL__ */ #endif /* NFSCACHE_H */ |