Most of this series is minor bug fixes and documentation improvements. These are ready for review. The part you actually care about, though, is the final patch that provides an initial stab at some preliminary design documentation for the OVN project. Feedback is honestly appreciated.
Ben Pfaff (8): bridge: Publish error count in database's rstp_statistics. vswitch: Document columns that had been previously overlooked. vtep: Document the ipaddr column in the Mcast_Macs_Local table. ovsdb-doc: Flag an error when a table or a column is left undocumented. ovsdb-doc: Get manpage name from the XML file instead of command line. ovsdb-doc: Factor out nroff formatting into a separate Python module. xml2nroff: New program to generate a manpage from XML input. [RFC] ovn: Start work on design documentation. AUTHORS | 1 + Makefile.am | 2 + build-aux/xml2nroff | 110 ++++++++ configure.ac | 3 +- ovn/automake.mk | 75 +++++ ovn/ovn-architecture.7.xml | 331 ++++++++++++++++++++++ ovn/ovn-controller.8.in | 41 +++ ovn/ovn-nb.ovsschema | 63 +++++ ovn/ovn-nb.xml | 225 +++++++++++++++ ovn/ovn.ovsschema | 47 ++++ ovn/ovn.xml | 475 +++++++++++++++++++++++++++++++ ovsdb/ovsdb-doc | 176 +++--------- python/automake.mk | 6 + python/build/__init__.py | 0 python/build/nroff.py | 196 +++++++++++++ vswitchd/automake.mk | 1 - vswitchd/bridge.c | 8 +- vswitchd/vswitch.xml | 682 ++++++++++++++++++++++++++------------------- vtep/automake.mk | 1 - vtep/vtep.xml | 6 +- 20 files changed, 2008 insertions(+), 441 deletions(-) create mode 100755 build-aux/xml2nroff create mode 100644 ovn/automake.mk create mode 100644 ovn/ovn-architecture.7.xml create mode 100644 ovn/ovn-controller.8.in create mode 100644 ovn/ovn-nb.ovsschema create mode 100644 ovn/ovn-nb.xml create mode 100644 ovn/ovn.ovsschema create mode 100644 ovn/ovn.xml create mode 100644 python/build/__init__.py create mode 100644 python/build/nroff.py -- 2.1.3 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev