From: Ben Pfaff Date: Tue, 20 Apr 2010 21:10:32 +0000 (-0700) Subject: in-band: Refactor in_band_set_remotes(). X-Git-Tag: v1.0.0~92 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a3c5ac709a32ad802534b6039fd8f762910d19d6;p=sliver-openvswitch.git in-band: Refactor in_band_set_remotes(). Seems easier to understand this way. Suggested-by: Justin Pettit --- diff --git a/ofproto/in-band.c b/ofproto/in-band.c index 4efcbca66..6f9e5c093 100644 --- a/ofproto/in-band.c +++ b/ofproto/in-band.c @@ -797,33 +797,48 @@ in_band_destroy(struct in_band *ib) } } +static bool +any_rconns_changed(const struct in_band *ib, struct rconn **remotes, size_t n) +{ + size_t i; + + if (n != ib->n_remotes) { + return true; + } + + for (i = 0; i < n; i++) { + if (ib->remotes[i].rconn != remotes[i]) { + return true; + } + } + + return false; +} + void in_band_set_remotes(struct in_band *ib, struct rconn **remotes, size_t n) { size_t i; /* Optimize the case where the rconns are the same as last time. */ - if (n == ib->n_remotes) { - for (i = 0; i < n; i++) { - if (ib->remotes[i].rconn != remotes[i]) { - goto different; - } - } + if (!any_rconns_changed(ib, remotes, n)) { return; - - different:; } + /* Clear old remotes. */ for (i = 0; i < ib->n_remotes; i++) { /* We don't own the rconn. */ netdev_close(ib->remotes[i].remote_netdev); } free(ib->remotes); - ib->next_remote_refresh = TIME_MIN; + /* Set up new remotes. */ ib->remotes = n ? xzalloc(n * sizeof *ib->remotes) : 0; ib->n_remotes = n; for (i = 0; i < n; i++) { ib->remotes[i].rconn = remotes[i]; } + + /* Force refresh in next call to in_band_run(). */ + ib->next_remote_refresh = TIME_MIN; }