aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-20 20:10:03 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-03 00:26:45 -0500
commitb488c7dd58f61e07b54e5d286c7b45c43dd52f1a (patch)
tree831da2d58f8f2eadaad340dd936074ad13fe4f97 /net/sctp
parentd55c41b115e74b30a3d1a61db806bd03bdd9dd6f (diff)
[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>
Diffstat (limited to 'net/sctp')
-rw-r--r--net/sctp/associola.c2
-rw-r--r--net/sctp/sm_statefuns.c4
-rw-r--r--net/sctp/transport.c4
3 files changed, 6 insertions, 4 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c
index 4bd916c808c1..7824aeaa3d60 100644
--- a/net/sctp/associola.c
+++ b/net/sctp/associola.c
@@ -564,7 +564,7 @@ struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *asoc,
564 return peer; 564 return peer;
565 } 565 }
566 566
567 peer = sctp_transport_new(addr, gfp); 567 peer = sctp_transport_new(&tmp, gfp);
568 if (!peer) 568 if (!peer)
569 return NULL; 569 return NULL;
570 570
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c
index 174acc3c5526..c5362638d672 100644
--- a/net/sctp/sm_statefuns.c
+++ b/net/sctp/sm_statefuns.c
@@ -5105,6 +5105,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc
5105 __u16 sport; 5105 __u16 sport;
5106 __u16 dport; 5106 __u16 dport;
5107 __u32 vtag; 5107 __u32 vtag;
5108 union sctp_addr tmp;
5108 5109
5109 /* Get the source and destination port from the inbound packet. */ 5110 /* Get the source and destination port from the inbound packet. */
5110 sport = ntohs(chunk->sctp_hdr->dest); 5111 sport = ntohs(chunk->sctp_hdr->dest);
@@ -5135,7 +5136,8 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc
5135 } 5136 }
5136 5137
5137 /* Make a transport for the bucket, Eliza... */ 5138 /* Make a transport for the bucket, Eliza... */
5138 transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC); 5139 flip_to_n(&tmp, sctp_source(chunk));
5140 transport = sctp_transport_new(&tmp, GFP_ATOMIC);
5139 if (!transport) 5141 if (!transport)
5140 goto nomem; 5142 goto nomem;
5141 5143
diff --git a/net/sctp/transport.c b/net/sctp/transport.c
index bacd09448b8e..e1448addcd93 100644
--- a/net/sctp/transport.c
+++ b/net/sctp/transport.c
@@ -61,8 +61,8 @@ static struct sctp_transport *sctp_transport_init(struct sctp_transport *peer,
61 gfp_t gfp) 61 gfp_t gfp)
62{ 62{
63 /* Copy in the address. */ 63 /* Copy in the address. */
64 peer->ipaddr_h = *addr; 64 peer->ipaddr = *addr;
65 flip_to_n(&peer->ipaddr, &peer->ipaddr_h); 65 flip_to_h(&peer->ipaddr_h, &peer->ipaddr);
66 peer->af_specific = sctp_get_af_specific(addr->sa.sa_family); 66 peer->af_specific = sctp_get_af_specific(addr->sa.sa_family);
67 peer->asoc = NULL; 67 peer->asoc = NULL;
68 68