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

[SCTP]: Switch ->primary_addr to net-endian.

Users adjusted.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7e1e4a2b
...@@ -442,7 +442,7 @@ void sctp_assoc_set_primary(struct sctp_association *asoc, ...@@ -442,7 +442,7 @@ void sctp_assoc_set_primary(struct sctp_association *asoc,
asoc->peer.primary_path = transport; asoc->peer.primary_path = transport;
/* Set a default msg_name for events. */ /* Set a default msg_name for events. */
memcpy(&asoc->peer.primary_addr, &transport->ipaddr_h, memcpy(&asoc->peer.primary_addr, &transport->ipaddr,
sizeof(union sctp_addr)); sizeof(union sctp_addr));
/* If the primary path is changing, assume that the /* If the primary path is changing, assume that the
......
...@@ -175,16 +175,14 @@ static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_associa ...@@ -175,16 +175,14 @@ static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_associa
struct list_head *pos; struct list_head *pos;
struct sctp_transport *transport; struct sctp_transport *transport;
union sctp_addr *addr, *primary; union sctp_addr *addr, *primary;
union sctp_addr tmp;
struct sctp_af *af; struct sctp_af *af;
primary = &(assoc->peer.primary_addr); primary = &assoc->peer.primary_addr;
flip_to_n(&tmp, primary);
list_for_each(pos, &assoc->peer.transport_addr_list) { list_for_each(pos, &assoc->peer.transport_addr_list) {
transport = list_entry(pos, struct sctp_transport, transports); transport = list_entry(pos, struct sctp_transport, transports);
addr = &transport->ipaddr; addr = &transport->ipaddr;
af = sctp_get_af_specific(addr->sa.sa_family); af = sctp_get_af_specific(addr->sa.sa_family);
if (af->cmp_addr(addr, &tmp)) { if (af->cmp_addr(addr, primary)) {
seq_printf(seq, "*"); seq_printf(seq, "*");
} }
af->seq_dump_addr(seq, addr); af->seq_dump_addr(seq, addr);
......
...@@ -830,13 +830,11 @@ static void sctp_cmd_del_non_primary(struct sctp_association *asoc) ...@@ -830,13 +830,11 @@ static void sctp_cmd_del_non_primary(struct sctp_association *asoc)
struct sctp_transport *t; struct sctp_transport *t;
struct list_head *pos; struct list_head *pos;
struct list_head *temp; struct list_head *temp;
union sctp_addr tmp;
flip_to_n(&tmp, &asoc->peer.primary_addr);
list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) { list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
t = list_entry(pos, struct sctp_transport, transports); t = list_entry(pos, struct sctp_transport, transports);
if (!sctp_cmp_addr_exact(&t->ipaddr, if (!sctp_cmp_addr_exact(&t->ipaddr,
&tmp)) { &asoc->peer.primary_addr)) {
sctp_assoc_del_peer(asoc, &t->ipaddr_h); sctp_assoc_del_peer(asoc, &t->ipaddr_h);
} }
} }
......
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