提交 16b0a030 编写于 作者: A Al Viro 提交者: David S. Miller

[SCTP]: Switch sctp_chunk ->dest to net-endian.

Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 d448388b
...@@ -1033,7 +1033,7 @@ void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src, ...@@ -1033,7 +1033,7 @@ void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
{ {
memcpy(&chunk->source, src, sizeof(union sctp_addr)); memcpy(&chunk->source, src, sizeof(union sctp_addr));
flip_to_h(&chunk->source_h, &chunk->source); flip_to_h(&chunk->source_h, &chunk->source);
flip_to_h(&chunk->dest, dest); memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
} }
/* Extract the source address from a chunk. */ /* Extract the source address from a chunk. */
...@@ -1507,9 +1507,7 @@ struct sctp_association *sctp_unpack_cookie( ...@@ -1507,9 +1507,7 @@ struct sctp_association *sctp_unpack_cookie(
/* Also, add the destination address. */ /* Also, add the destination address. */
if (list_empty(&retval->base.bind_addr.address_list)) { if (list_empty(&retval->base.bind_addr.address_list)) {
union sctp_addr tmp; sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest, 1,
flip_to_n(&tmp, &chunk->dest);
sctp_add_bind_addr(&retval->base.bind_addr, &tmp, 1,
GFP_ATOMIC); GFP_ATOMIC);
} }
......
...@@ -5103,7 +5103,6 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc ...@@ -5103,7 +5103,6 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc
__u16 sport; __u16 sport;
__u16 dport; __u16 dport;
__u32 vtag; __u32 vtag;
union sctp_addr tmp;
/* Get the source and destination port from the inbound packet. */ /* Get the source and destination port from the inbound packet. */
sport = ntohs(chunk->sctp_hdr->dest); sport = ntohs(chunk->sctp_hdr->dest);
...@@ -5141,8 +5140,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc ...@@ -5141,8 +5140,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc
/* Cache a route for the transport with the chunk's destination as /* Cache a route for the transport with the chunk's destination as
* the source address. * the source address.
*/ */
flip_to_n(&tmp, &chunk->dest); sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
sctp_transport_route(transport, &tmp,
sctp_sk(sctp_get_ctl_sock())); sctp_sk(sctp_get_ctl_sock()));
packet = sctp_packet_init(&transport->packet, transport, sport, dport); packet = sctp_packet_init(&transport->packet, transport, sport, dport);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册