X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fstp.c;h=7bff624dd78862421619000bfa00a99e24db2430;hb=4816a18f33380a33d381b77d41df39113c94500d;hp=3d293b6c6137c5fd2bf3817c9d8eba41e991a1ff;hpb=1e3f34c7693bcabae8e443ac1b246680ef9b60e2;p=sliver-openvswitch.git diff --git a/lib/stp.c b/lib/stp.c index 3d293b6c6..7bff624dd 100644 --- a/lib/stp.c +++ b/lib/stp.c @@ -23,7 +23,6 @@ #include #include #include -#include #include #include #include "byte-order.h" @@ -481,7 +480,7 @@ stp_check_and_reset_fdb_flush(struct stp *stp) struct stp_port * stp_get_port(struct stp *stp, int port_no) { - assert(port_no >= 0 && port_no < ARRAY_SIZE(stp->ports)); + ovs_assert(port_no >= 0 && port_no < ARRAY_SIZE(stp->ports)); return &stp->ports[port_no]; } @@ -669,7 +668,7 @@ int stp_port_no(const struct stp_port *p) { struct stp *stp = p->stp; - assert(p >= stp->ports && p < &stp->ports[ARRAY_SIZE(stp->ports)]); + ovs_assert(p >= stp->ports && p < &stp->ports[ARRAY_SIZE(stp->ports)]); return p - stp->ports; } @@ -1228,7 +1227,7 @@ stp_hold_timer_expiry(struct stp_port *p) static void stp_initialize_port(struct stp_port *p, enum stp_state state) { - assert(state & (STP_DISABLED | STP_BLOCKING)); + ovs_assert(state & (STP_DISABLED | STP_BLOCKING)); stp_become_designated_port(p); stp_set_port_state(p, state); p->topology_change_ack = false;