X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Flearning-switch.c;h=7eb9e1c29d0bb09e25de87d585368333122cced2;hb=0b3f2725391c561cb53e4a7a860648a116f04e08;hp=91f8f0527ce53f7da3a822f87a6b165e242bd305;hpb=8bf4bbe390af3f370e7e95d9237572ff750047a8;p=openvswitch diff --git a/lib/learning-switch.c b/lib/learning-switch.c index 91f8f052..7eb9e1c2 100644 --- a/lib/learning-switch.c +++ b/lib/learning-switch.c @@ -27,6 +27,7 @@ #include "mac-learning.h" #include "ofpbuf.h" #include "ofp-print.h" +#include "ofp-util.h" #include "openflow/openflow.h" #include "poll-loop.h" #include "queue.h" @@ -220,8 +221,7 @@ lswitch_run(struct lswitch *sw, struct rconn *rconn) static void wait_timeout(long long int started) { - long long int now = time_msec(); - poll_timer_wait(10000 - (now - started)); + poll_timer_wait_until(started + 10000); } void @@ -402,7 +402,8 @@ process_packet_in(struct lswitch *sw, struct rconn *rconn, void *opi_) flow_extract(&pkt, 0, in_port, &flow); if (may_learn(sw, in_port) && sw->ml) { - if (mac_learning_learn(sw->ml, flow.dl_src, 0, in_port)) { + if (mac_learning_learn(sw->ml, flow.dl_src, 0, in_port, + GRAT_ARP_LOCK_NONE)) { VLOG_DBG_RL(&rl, "%016llx: learned that "ETH_ADDR_FMT" is on " "port %"PRIu16, sw->datapath_id, ETH_ADDR_ARGS(flow.dl_src), in_port); @@ -419,7 +420,7 @@ process_packet_in(struct lswitch *sw, struct rconn *rconn, void *opi_) } if (sw->ml) { - int learned_port = mac_learning_lookup(sw->ml, flow.dl_dst, 0); + int learned_port = mac_learning_lookup(sw->ml, flow.dl_dst, 0, NULL); if (learned_port >= 0 && may_send(sw, learned_port)) { out_port = learned_port; }