forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expr: New module for Boolean expressions on fields, for use in OVN.
Known weaknesses: * String fields can't be converted to flows yet. A subsequent commit will fix this. * Flows aren't optimal in some situations likely to be common. I don't think either of those is a reason not to commit this; this is a solid base to build on. Signed-off-by: Ben Pfaff <[email protected]> Acked-by: Russell Bryant <[email protected]>
- Loading branch information
Showing
7 changed files
with
4,403 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
lib_LTLIBRARIES += ovn/lib/libovn.la | ||
ovn_lib_libovn_la_SOURCES = ovn/lib/lex.c ovn/lib/lex.h | ||
ovn_lib_libovn_la_SOURCES = \ | ||
ovn/lib/expr.c \ | ||
ovn/lib/expr.h \ | ||
ovn/lib/lex.c \ | ||
ovn/lib/lex.h |
Oops, something went wrong.