Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41807
b: refs/heads/master
c: 7e1e4a2
h: refs/heads/master
i:
  41805: 686b479
  41803: 52d5eb0
  41799: 8f5d22d
  41791: 0e768bf
v: v3
  • Loading branch information
Al Viro authored and David S. Miller committed Dec 3, 2006
1 parent a1e4411 commit 4c8abe9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5f242a13e8505e0f3efd3113da6e029f6e7dfa32
refs/heads/master: 7e1e4a2b9dcc63ac3328f786f9d98bde90c8fc6c
8 changes: 4 additions & 4 deletions trunk/net/sctp/associola.c
Original file line number Diff line number Diff line change
Expand Up @@ -930,6 +930,8 @@ struct sctp_transport *sctp_assoc_is_match(struct sctp_association *asoc,
const union sctp_addr *paddr)
{
struct sctp_transport *transport;
union sctp_addr tmp;
flip_to_n(&tmp, laddr);

sctp_read_lock(&asoc->base.addr_lock);

Expand All @@ -939,7 +941,7 @@ struct sctp_transport *sctp_assoc_is_match(struct sctp_association *asoc,
if (!transport)
goto out;

if (sctp_bind_addr_match(&asoc->base.bind_addr, laddr,
if (sctp_bind_addr_match(&asoc->base.bind_addr, &tmp,
sctp_sk(asoc->base.sk)))
goto out;
}
Expand Down Expand Up @@ -1342,12 +1344,10 @@ int sctp_assoc_lookup_laddr(struct sctp_association *asoc,
const union sctp_addr *laddr)
{
int found;
union sctp_addr tmp;

flip_to_h(&tmp, laddr);
sctp_read_lock(&asoc->base.addr_lock);
if ((asoc->base.bind_addr.port == ntohs(laddr->v4.sin_port)) &&
sctp_bind_addr_match(&asoc->base.bind_addr, &tmp,
sctp_bind_addr_match(&asoc->base.bind_addr, laddr,
sctp_sk(asoc->base.sk))) {
found = 1;
goto out;
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/sctp/bind_addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,10 @@ int sctp_bind_addr_match(struct sctp_bind_addr *bp,
{
struct sctp_sockaddr_entry *laddr;
struct list_head *pos;
union sctp_addr tmp;

flip_to_n(&tmp, addr);
list_for_each(pos, &bp->address_list) {
laddr = list_entry(pos, struct sctp_sockaddr_entry, list);
if (opt->pf->cmp_addr(&laddr->a, &tmp, opt))
if (opt->pf->cmp_addr(&laddr->a, addr, opt))
return 1;
}

Expand Down
4 changes: 3 additions & 1 deletion trunk/net/sctp/endpointola.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,12 @@ struct sctp_endpoint *sctp_endpoint_is_match(struct sctp_endpoint *ep,
const union sctp_addr *laddr)
{
struct sctp_endpoint *retval;
union sctp_addr tmp;
flip_to_n(&tmp, laddr);

sctp_read_lock(&ep->base.addr_lock);
if (ep->base.bind_addr.port == laddr->v4.sin_port) {
if (sctp_bind_addr_match(&ep->base.bind_addr, laddr,
if (sctp_bind_addr_match(&ep->base.bind_addr, &tmp,
sctp_sk(ep->base.sk))) {
retval = ep;
goto out;
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/sctp/socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -4635,11 +4635,9 @@ static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
{
struct sctp_bind_hashbucket *head; /* hash list */
struct sctp_bind_bucket *pp; /* hash list port iterator */
union sctp_addr tmp;
unsigned short snum;
int ret;

flip_to_h(&tmp, addr);
snum = ntohs(addr->v4.sin_port);

SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
Expand Down Expand Up @@ -4737,7 +4735,7 @@ static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
if (reuse && sk2->sk_reuse)
continue;

if (sctp_bind_addr_match(&ep2->base.bind_addr, &tmp,
if (sctp_bind_addr_match(&ep2->base.bind_addr, addr,
sctp_sk(sk))) {
ret = (long)sk2;
goto fail_unlock;
Expand Down

0 comments on commit 4c8abe9

Please sign in to comment.