* We lookup the transport from hashtable at first, then get association
  * through t->assoc.
  */
-static struct sctp_association *__sctp_endpoint_lookup_assoc(
+struct sctp_association *sctp_endpoint_lookup_assoc(
        const struct sctp_endpoint *ep,
        const union sctp_addr *paddr,
        struct sctp_transport **transport)
        return asoc;
 }
 
-/* Lookup association on an endpoint based on a peer address.  BH-safe.  */
-struct sctp_association *sctp_endpoint_lookup_assoc(
-       const struct sctp_endpoint *ep,
-       const union sctp_addr *paddr,
-       struct sctp_transport **transport)
-{
-       struct sctp_association *asoc;
-
-       local_bh_disable();
-       asoc = __sctp_endpoint_lookup_assoc(ep, paddr, transport);
-       local_bh_enable();
-
-       return asoc;
-}
-
 /* Look for any peeled off association from the endpoint that matches the
  * given peer address.
  */