]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blobdiff - net/sctp/endpointola.c
Merge tag 'mac80211-next-for-davem-2018-03-29' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-eoan-kernel.git] / net / sctp / endpointola.c
index 8b31468165197428239fe7e6ddece6f60878c39f..e2f5a3ee41a7140c3865c406bf8e1d4f83044e5a 100644 (file)
@@ -349,8 +349,8 @@ out:
 /* Look for any peeled off association from the endpoint that matches the
  * given peer address.
  */
-int sctp_endpoint_is_peeled_off(struct sctp_endpoint *ep,
-                               const union sctp_addr *paddr)
+bool sctp_endpoint_is_peeled_off(struct sctp_endpoint *ep,
+                                const union sctp_addr *paddr)
 {
        struct sctp_sockaddr_entry *addr;
        struct sctp_bind_addr *bp;
@@ -362,10 +362,10 @@ int sctp_endpoint_is_peeled_off(struct sctp_endpoint *ep,
         */
        list_for_each_entry(addr, &bp->address_list, list) {
                if (sctp_has_association(net, &addr->a, paddr))
-                       return 1;
+                       return true;
        }
 
-       return 0;
+       return false;
 }
 
 /* Do delayed input processing.  This is scheduled by sctp_rcv().