summaryrefslogtreecommitdiff
path: root/ovn/lib/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ovn/lib/expr.c')
-rw-r--r--ovn/lib/expr.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/ovn/lib/expr.c b/ovn/lib/expr.c
index a5dbcfaa4..a197474e3 100644
--- a/ovn/lib/expr.c
+++ b/ovn/lib/expr.c
@@ -1702,7 +1702,16 @@ expr_simplify_ne(struct expr *expr)
new = expr_combine(EXPR_T_OR, new, e);
}
- ovs_assert(new);
+ if (!new) {
+ /* Handle a comparison like "ip4.dst != 0/0", where the mask has no
+ * 1-bits.
+ *
+ * The correct result for this expression may not be obvious. It's
+ * easier to understand that "ip4.dst == 0/0" should be true, since 0/0
+ * matches every IPv4 address; then, "ip4.dst != 0/0" should have the
+ * opposite result. */
+ new = expr_create_boolean(false);
+ }
expr_destroy(expr);