summaryrefslogtreecommitdiff
path: root/lib/cfm.h
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2013-09-20 15:32:08 -0700
committerEthan Jackson <ethan@nicira.com>2013-09-20 15:39:31 -0700
commit0258d4a0efff965917a4968361da1be15ee4deca (patch)
treec19358a2bd1ab4b356b3b6d3999713346379cadf /lib/cfm.h
parent03f209ba2737bf29391e64c4eb387648c9d71e86 (diff)
downloadopenvswitch-0258d4a0efff965917a4968361da1be15ee4deca.tar.gz
cfm: Don't enforce CFM_FAULT_INTERVAL.
While upgrading a deployment, it's possible that transient configuration changes could cause the cfm interval on two ends of a link to be different. If these two configured values are close to each other, this condition could have no impact on traffic. Therefore it's better to let this slide than force a tunnel down guaranteeing an impact Signed-off-by: Ethan Jackson <ethan@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/cfm.h')
-rw-r--r--lib/cfm.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/cfm.h b/lib/cfm.h
index 0f3e97c33..cff713f98 100644
--- a/lib/cfm.h
+++ b/lib/cfm.h
@@ -34,8 +34,7 @@ struct flow_wildcards;
CFM_FAULT_REASON(MAID, maid) \
CFM_FAULT_REASON(LOOPBACK, loopback) \
CFM_FAULT_REASON(OVERFLOW, overflow) \
- CFM_FAULT_REASON(OVERRIDE, override) \
- CFM_FAULT_REASON(INTERVAL, interval)
+ CFM_FAULT_REASON(OVERRIDE, override)
enum cfm_fault_bit_index {
#define CFM_FAULT_REASON(NAME, STR) CFM_FAULT_INDEX_##NAME,