X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ofproto%2Ffail-open.c;h=ff77de87ec7ce8d7a4d859f7947e018955f5ed49;hb=76f105d9be03588c2d5ec0b94ff769a1d269f2e4;hp=54a91cdfd76a7f518c24612c4da816955fc7b825;hpb=70150daf2fd88a84f80044a9589e97942b85c25b;p=openvswitch diff --git a/ofproto/fail-open.c b/ofproto/fail-open.c index 54a91cdf..ff77de87 100644 --- a/ofproto/fail-open.c +++ b/ofproto/fail-open.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -76,6 +76,8 @@ struct fail_open { struct rconn_packet_counter *bogus_packet_counter; }; +static void fail_open_recover(struct fail_open *); + /* Returns true if 'fo' should be in fail-open mode, otherwise false. */ static inline bool should_fail_open(const struct fail_open *fo) @@ -155,7 +157,15 @@ fail_open_run(struct fail_open *fo) void fail_open_maybe_recover(struct fail_open *fo) { - if (fail_open_is_active(fo) && rconn_is_admitted(fo->controller)) { + if (rconn_is_admitted(fo->controller)) { + fail_open_recover(fo); + } +} + +static void +fail_open_recover(struct fail_open *fo) +{ + if (fail_open_is_active(fo)) { flow_t flow; VLOG_WARN("No longer in fail-open mode"); @@ -235,6 +245,7 @@ void fail_open_destroy(struct fail_open *fo) { if (fo) { + fail_open_recover(fo); /* We don't own fo->controller. */ switch_status_unregister(fo->ss_cat); rconn_packet_counter_destroy(fo->bogus_packet_counter);