aboutsummaryrefslogtreecommitdiff
path: root/net/sctp/transport.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sctp/transport.c')
-rw-r--r--net/sctp/transport.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/net/sctp/transport.c b/net/sctp/transport.c
index 33e7d85f111..d1b6834a3a4 100644
--- a/net/sctp/transport.c
+++ b/net/sctp/transport.c
@@ -253,19 +253,15 @@ void sctp_transport_route(struct sctp_transport *transport,
struct sctp_af *af = transport->af_specific;
union sctp_addr *daddr = &transport->ipaddr;
struct dst_entry *dst;
- union sctp_addr tmp;
- flip_to_n(&tmp, saddr);
- dst = af->get_dst(asoc, daddr, &tmp);
+ dst = af->get_dst(asoc, daddr, saddr);
- if (saddr) {
- memcpy(&transport->saddr_h, saddr, sizeof(union sctp_addr));
- flip_to_n(&transport->saddr, &transport->saddr_h);
- } else {
+ if (saddr)
+ memcpy(&transport->saddr, saddr, sizeof(union sctp_addr));
+ else
af->get_saddr(asoc, dst, daddr, &transport->saddr);
- flip_to_h(&transport->saddr_h, &transport->saddr);
- }
+ flip_to_h(&transport->saddr_h, &transport->saddr);
transport->dst = dst;
if ((transport->param_flags & SPP_PMTUD_DISABLE) && transport->pathmtu) {
return;