aboutsummaryrefslogtreecommitdiff
path: root/lib/ovsdb-parser.c
AgeCommit message (Collapse)Author
2012-05-02Global replace of Nicira Networks.Raju Subramanian
Replaced all instances of Nicira Networks(, Inc) to Nicira, Inc. Feature #10593 Signed-off-by: Raju Subramanian <rsubramanian@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
2011-09-13lib: Suppress comparison warnings in ovsdb libraries.Ethan Jackson
This patch fixes compiler warnings like the following: ./lib/ovsdb-types.h:171:5: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits]
2011-03-31ovsdb-parser: Use sset instead of svec for detecting unused members.Ben Pfaff
Should be slightly cheaper than sorting a list (O(n) vs. O(n lg n)).
2009-11-19ovsdb: Require database, table, column names to be valid identifiers.Ben Pfaff
Database, table, and column names have always been required by the OVSDB specification to be identifiers (e.g. valid C identifiers), but this has never been enforced. This commit adds enforcement and fixes one instance of an invalid column name in the vswitch schema.
2009-11-16ovsdb-parser: Fix logic in ovsdb_parser_member().Ben Pfaff
I don't know why this test was written as it was. The new test makes more sense, and may be more correct as well.
2009-11-04Initial implementation of OVSDB.Ben Pfaff