Commit cb7b4a0d authored by Al Viro's avatar Al Viro Committed by David S. Miller

[SCTP]: Pass net-endian to ->get_dst().

all instances are actually endian-agnostic...
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d3f7a54a
...@@ -234,7 +234,7 @@ void sctp_transport_pmtu(struct sctp_transport *transport) ...@@ -234,7 +234,7 @@ void sctp_transport_pmtu(struct sctp_transport *transport)
{ {
struct dst_entry *dst; struct dst_entry *dst;
dst = transport->af_specific->get_dst(NULL, &transport->ipaddr_h, NULL); dst = transport->af_specific->get_dst(NULL, &transport->ipaddr, NULL);
if (dst) { if (dst) {
transport->pathmtu = dst_mtu(dst); transport->pathmtu = dst_mtu(dst);
...@@ -251,16 +251,18 @@ void sctp_transport_route(struct sctp_transport *transport, ...@@ -251,16 +251,18 @@ void sctp_transport_route(struct sctp_transport *transport,
{ {
struct sctp_association *asoc = transport->asoc; struct sctp_association *asoc = transport->asoc;
struct sctp_af *af = transport->af_specific; struct sctp_af *af = transport->af_specific;
union sctp_addr *daddr = &transport->ipaddr_h; union sctp_addr *daddr = &transport->ipaddr;
struct dst_entry *dst; struct dst_entry *dst;
union sctp_addr tmp;
flip_to_n(&tmp, saddr);
dst = af->get_dst(asoc, daddr, saddr); dst = af->get_dst(asoc, daddr, &tmp);
if (saddr) { if (saddr) {
memcpy(&transport->saddr_h, saddr, sizeof(union sctp_addr)); memcpy(&transport->saddr_h, saddr, sizeof(union sctp_addr));
flip_to_n(&transport->saddr, &transport->saddr_h); flip_to_n(&transport->saddr, &transport->saddr_h);
} else { } else {
af->get_saddr(asoc, dst, &transport->ipaddr, &transport->saddr); af->get_saddr(asoc, dst, daddr, &transport->saddr);
flip_to_h(&transport->saddr_h, &transport->saddr); flip_to_h(&transport->saddr_h, &transport->saddr);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment