X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fsocket-util.c;h=3e3c67fe1d255ba9b8d84e46a87a89e32cb71c7a;hb=cb22974d773942d66da42b700b8bca0db27a0920;hp=c2f74d03700d29336e15b30ace0f8e44e7b6e322;hpb=4749f73d12c844b318af7f45cf45e1acac9f7c08;p=sliver-openvswitch.git diff --git a/lib/socket-util.c b/lib/socket-util.c index c2f74d037..3e3c67fe1 100644 --- a/lib/socket-util.c +++ b/lib/socket-util.c @@ -17,7 +17,6 @@ #include #include "socket-util.h" #include -#include #include #include #include @@ -1101,7 +1100,7 @@ send_iovec_and_fds(int sock, const struct iovec *iovs, size_t n_iovs, const int fds[], size_t n_fds) { - assert(sock >= 0); + ovs_assert(sock >= 0); if (n_fds > 0) { union { struct cmsghdr cm; @@ -1109,8 +1108,8 @@ send_iovec_and_fds(int sock, } cmsg; struct msghdr msg; - assert(!iovec_is_empty(iovs, n_iovs)); - assert(n_fds <= SOUTIL_MAX_FDS); + ovs_assert(!iovec_is_empty(iovs, n_iovs)); + ovs_assert(n_fds <= SOUTIL_MAX_FDS); memset(&cmsg, 0, sizeof cmsg); cmsg.cm.cmsg_len = CMSG_LEN(n_fds * sizeof *fds); @@ -1285,7 +1284,7 @@ recv_data_and_fds(int sock, size_t n_fds = (p->cmsg_len - CMSG_LEN(0)) / sizeof *fds; const int *fds_data = (const int *) CMSG_DATA(p); - assert(n_fds > 0); + ovs_assert(n_fds > 0); if (n_fds > SOUTIL_MAX_FDS) { VLOG_ERR("%zu fds received but only %d supported", n_fds, SOUTIL_MAX_FDS);