mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
sunrpc: hton -> cpu_to_be*
htonl is already defined as cpu_to_be32. cpu_to_be64 has architecture specific optimized implementations. Signed-off-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
64f1607ffb
commit
9f162d2a81
2 changed files with 5 additions and 6 deletions
|
@ -117,9 +117,8 @@ static inline __be32 *xdr_encode_array(__be32 *p, const void *s, unsigned int le
|
|||
static inline __be32 *
|
||||
xdr_encode_hyper(__be32 *p, __u64 val)
|
||||
{
|
||||
*p++ = htonl(val >> 32);
|
||||
*p++ = htonl(val & 0xFFFFFFFF);
|
||||
return p;
|
||||
*(__be64 *)p = cpu_to_be64(val);
|
||||
return p + 2;
|
||||
}
|
||||
|
||||
static inline __be32 *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue