aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/protocol.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-20 17:06:24 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:26:35 -0800
commit854d43a465cc8ba8e501320b3bc27359d909da2f (patch)
tree6a1d4d5aa91eb4a945f79e3a1420b541705b32a5 /net/sctp/protocol.c
parent[SCTP]: Switch ->primary_addr to net-endian. (diff)
downloadlinux-dev-854d43a465cc8ba8e501320b3bc27359d909da2f.tar.xz
linux-dev-854d43a465cc8ba8e501320b3bc27359d909da2f.zip
[SCTP]: Annotate ->dst_saddr()
switched to taking a pointer to net-endian sctp_addr and a net-endian port number. Instances and callers adjusted; interestingly enough, the only calls are direct calls of specific instances - the method is not used at all. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/protocol.c')
-rw-r--r--net/sctp/protocol.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index 2db140e901d0..d1fbd1f5c6d1 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -316,7 +316,7 @@ static int sctp_v4_to_addr_param(const union sctp_addr *addr,
/* Initialize a sctp_addr from a dst_entry. */
static void sctp_v4_dst_saddr(union sctp_addr *saddr, struct dst_entry *dst,
- unsigned short port)
+ __be16 port)
{
struct rtable *rt = (struct rtable *)dst;
saddr->v4.sin_family = AF_INET;
@@ -478,14 +478,12 @@ static struct dst_entry *sctp_v4_get_dst(struct sctp_association *asoc,
*/
sctp_read_lock(addr_lock);
list_for_each(pos, &bp->address_list) {
- union sctp_addr tmp;
laddr = list_entry(pos, struct sctp_sockaddr_entry,
list);
if (!laddr->use_as_src)
continue;
- sctp_v4_dst_saddr(&dst_saddr, dst, bp->port);
- flip_to_n(&tmp, &dst_saddr);
- if (sctp_v4_cmp_addr(&tmp, &laddr->a))
+ sctp_v4_dst_saddr(&dst_saddr, dst, htons(bp->port));
+ if (sctp_v4_cmp_addr(&dst_saddr, &laddr->a))
goto out_unlock;
}
sctp_read_unlock(addr_lock);