/*
- * 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.
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)
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");
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);
return;
}
+ /* Destroy fail-open early, because it touches the classifier. */
+ ofproto_set_failure(p, false);
+
ofproto_flush_flows(p);
classifier_destroy(&p->cls);
switch_status_destroy(p->switch_status);
in_band_destroy(p->in_band);
discovery_destroy(p->discovery);
- fail_open_destroy(p->fail_open);
pinsched_destroy(p->miss_sched);
pinsched_destroy(p->action_sched);
netflow_destroy(p->netflow);