diff options
Diffstat (limited to 'net/sunrpc/xdr.c')
| -rw-r--r-- | net/sunrpc/xdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c index 0d05d2554b42..8bd690c48b69 100644 --- a/net/sunrpc/xdr.c +++ b/net/sunrpc/xdr.c | |||
| @@ -35,7 +35,7 @@ xdr_decode_netobj(__be32 *p, struct xdr_netobj *obj) | |||
| 35 | { | 35 | { |
| 36 | unsigned int len; | 36 | unsigned int len; |
| 37 | 37 | ||
| 38 | if ((len = ntohl(*p++)) > XDR_MAX_NETOBJ) | 38 | if ((len = be32_to_cpu(*p++)) > XDR_MAX_NETOBJ) |
| 39 | return NULL; | 39 | return NULL; |
| 40 | obj->len = len; | 40 | obj->len = len; |
| 41 | obj->data = (u8 *) p; | 41 | obj->data = (u8 *) p; |
| @@ -101,7 +101,7 @@ xdr_decode_string_inplace(__be32 *p, char **sp, | |||
| 101 | { | 101 | { |
| 102 | u32 len; | 102 | u32 len; |
| 103 | 103 | ||
| 104 | len = ntohl(*p++); | 104 | len = be32_to_cpu(*p++); |
| 105 | if (len > maxlen) | 105 | if (len > maxlen) |
| 106 | return NULL; | 106 | return NULL; |
| 107 | *lenp = len; | 107 | *lenp = len; |
| @@ -771,7 +771,7 @@ xdr_decode_word(struct xdr_buf *buf, unsigned int base, u32 *obj) | |||
| 771 | status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj)); | 771 | status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj)); |
| 772 | if (status) | 772 | if (status) |
| 773 | return status; | 773 | return status; |
| 774 | *obj = ntohl(raw); | 774 | *obj = be32_to_cpu(raw); |
| 775 | return 0; | 775 | return 0; |
| 776 | } | 776 | } |
| 777 | EXPORT_SYMBOL_GPL(xdr_decode_word); | 777 | EXPORT_SYMBOL_GPL(xdr_decode_word); |
