summaryrefslogtreecommitdiffstats
path: root/net/sctp/sm_sideeffect.c
diff options
context:
space:
mode:
authorAl Viro2006-11-21 02:06:04 +0100
committerDavid S. Miller2006-12-03 06:26:34 +0100
commitacd2bc96e19535fcd74c6eb94532c19c817857bd (patch)
tree00d04fde1323a4e514ce20a07b212dcd43910d92 /net/sctp/sm_sideeffect.c
parent[SCTP]: Switch sctp_bind_addr_match() to net-endian. (diff)
downloadkernel-qcow2-linux-acd2bc96e19535fcd74c6eb94532c19c817857bd.tar.gz
kernel-qcow2-linux-acd2bc96e19535fcd74c6eb94532c19c817857bd.tar.xz
kernel-qcow2-linux-acd2bc96e19535fcd74c6eb94532c19c817857bd.zip
[SCTP]: Switch ->primary_addr to net-endian.
Users adjusted. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sm_sideeffect.c')
-rw-r--r--net/sctp/sm_sideeffect.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c
index 3d9213dfaa10..50d4ccc15ad1 100644
--- a/net/sctp/sm_sideeffect.c
+++ b/net/sctp/sm_sideeffect.c
@@ -830,13 +830,11 @@ static void sctp_cmd_del_non_primary(struct sctp_association *asoc)
struct sctp_transport *t;
struct list_head *pos;
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) {
t = list_entry(pos, struct sctp_transport, transports);
if (!sctp_cmp_addr_exact(&t->ipaddr,
- &tmp)) {
+ &asoc->peer.primary_addr)) {
sctp_assoc_del_peer(asoc, &t->ipaddr_h);
}
}