diff options
| author | Benny Halevy <bhalevy@panasas.com> | 2009-08-14 10:18:49 -0400 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-08-14 13:12:52 -0400 |
| commit | 98866b5abe1513cdacc011874ca045d40002eccd (patch) | |
| tree | d6bddb53c9df2fb167b69561f9fd68dfadc65066 /include/linux/sunrpc | |
| parent | 9f162d2a810b4db48f7b8d7e734d0932c81ec2a1 (diff) | |
sunrpc: ntoh -> be*_to_cpu
ntohl is already defined as be32_to_cpu.
be64_to_cpu has architecture specific optimized implementations.
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc')
| -rw-r--r-- | include/linux/sunrpc/xdr.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/sunrpc/xdr.h b/include/linux/sunrpc/xdr.h index f94bbdc75c4b..7da466ba4b0d 100644 --- a/include/linux/sunrpc/xdr.h +++ b/include/linux/sunrpc/xdr.h | |||
| @@ -124,9 +124,8 @@ xdr_encode_hyper(__be32 *p, __u64 val) | |||
| 124 | static inline __be32 * | 124 | static inline __be32 * |
| 125 | xdr_decode_hyper(__be32 *p, __u64 *valp) | 125 | xdr_decode_hyper(__be32 *p, __u64 *valp) |
| 126 | { | 126 | { |
| 127 | *valp = ((__u64) ntohl(*p++)) << 32; | 127 | *valp = be64_to_cpup((__be64 *)p); |
| 128 | *valp |= ntohl(*p++); | 128 | return p + 2; |
| 129 | return p; | ||
| 130 | } | 129 | } |
| 131 | 130 | ||
| 132 | /* | 131 | /* |
