[SCTP]: sctp_transport_{init,new}() switched to net-endian.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d55c41b115
commit
b488c7dd58
|
@ -564,7 +564,7 @@ struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *asoc,
|
||||||
return peer;
|
return peer;
|
||||||
}
|
}
|
||||||
|
|
||||||
peer = sctp_transport_new(addr, gfp);
|
peer = sctp_transport_new(&tmp, gfp);
|
||||||
if (!peer)
|
if (!peer)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
|
@ -5105,6 +5105,7 @@ 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);
|
||||||
|
@ -5135,7 +5136,8 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Make a transport for the bucket, Eliza... */
|
/* Make a transport for the bucket, Eliza... */
|
||||||
transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC);
|
flip_to_n(&tmp, sctp_source(chunk));
|
||||||
|
transport = sctp_transport_new(&tmp, GFP_ATOMIC);
|
||||||
if (!transport)
|
if (!transport)
|
||||||
goto nomem;
|
goto nomem;
|
||||||
|
|
||||||
|
|
|
@ -61,8 +61,8 @@ static struct sctp_transport *sctp_transport_init(struct sctp_transport *peer,
|
||||||
gfp_t gfp)
|
gfp_t gfp)
|
||||||
{
|
{
|
||||||
/* Copy in the address. */
|
/* Copy in the address. */
|
||||||
peer->ipaddr_h = *addr;
|
peer->ipaddr = *addr;
|
||||||
flip_to_n(&peer->ipaddr, &peer->ipaddr_h);
|
flip_to_h(&peer->ipaddr_h, &peer->ipaddr);
|
||||||
peer->af_specific = sctp_get_af_specific(addr->sa.sa_family);
|
peer->af_specific = sctp_get_af_specific(addr->sa.sa_family);
|
||||||
peer->asoc = NULL;
|
peer->asoc = NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue