diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2024-10-24 11:24:49 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2024-10-31 17:02:42 +0000 |
commit | 76c6a76ea1dd2f4cc47853c5b9f9ab41fd9a1017 (patch) | |
tree | 5166288838cb95dd083ffe61f6eaa8133e1c87b1 /sys/netinet | |
parent | c7f2035e1fc40c6a2db7b0d3c547ca0a694ac7cf (diff) |
sctp: cleanup
No functional change intended.
(cherry picked from commit e4ac0183a1a846ef6556c9876dab76c06f5fea9c)
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/sctp_pcb.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/netinet/sctp_pcb.c b/sys/netinet/sctp_pcb.c index 080cb81fa09a..cfac25c90891 100644 --- a/sys/netinet/sctp_pcb.c +++ b/sys/netinet/sctp_pcb.c @@ -192,21 +192,17 @@ sctp_find_ifn(void *ifn, uint32_t ifn_index) struct sctp_ifn *sctp_ifnp; struct sctp_ifnlist *hash_ifn_head; - /* - * We assume the lock is held for the addresses if that's wrong - * problems could occur :-) - */ SCTP_IPI_ADDR_LOCK_ASSERT(); hash_ifn_head = &SCTP_BASE_INFO(vrf_ifn_hash)[(ifn_index & SCTP_BASE_INFO(vrf_ifn_hashmark))]; LIST_FOREACH(sctp_ifnp, hash_ifn_head, next_bucket) { if (sctp_ifnp->ifn_index == ifn_index) { - return (sctp_ifnp); + break; } - if (sctp_ifnp->ifn_p && ifn && (sctp_ifnp->ifn_p == ifn)) { - return (sctp_ifnp); + if (ifn != NULL && sctp_ifnp->ifn_p == ifn) { + break; } } - return (NULL); + return (sctp_ifnp); } struct sctp_vrf * |