summaryrefslogtreecommitdiff
path: root/vswitchd/vswitch.ovsschema
diff options
context:
space:
mode:
authorAaron Conole <aconole@redhat.com>2018-05-03 15:08:01 -0400
committerIan Stokes <ian.stokes@intel.com>2018-05-25 09:09:50 +0100
commit3e52fa5644cde2eba56c48355d5664e992992bf2 (patch)
treec306f3f7108f731278031fa66afbca3f9a622f78 /vswitchd/vswitch.ovsschema
parentd7e2509e2f68f124bded3a30afbbddbb86be087f (diff)
downloadopenvswitch-3e52fa5644cde2eba56c48355d5664e992992bf2.tar.gz
dpdk: reflect status and version in the database
The normal way of retrieving the running DPDK status involves parsing log files and issuing various incantations of ovs-vsctl and ovs-appctl commands to determine whether the rte_eal_init successfully started. This commit adds two new records to reflect the dpdk version, and the dpdk initialization status. To support this, the other_config:dpdk-init configuration block supports the 'true' and 'try' keywords now, instead of just 'true'. Signed-off-by: Aaron Conole <aconole@redhat.com> Acked-by: Kevin Traynor <ktraynor@redhat.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
Diffstat (limited to 'vswitchd/vswitch.ovsschema')
-rw-r--r--vswitchd/vswitch.ovsschema11
1 files changed, 8 insertions, 3 deletions
diff --git a/vswitchd/vswitch.ovsschema b/vswitchd/vswitch.ovsschema
index 90e50b626..80f17e89b 100644
--- a/vswitchd/vswitch.ovsschema
+++ b/vswitchd/vswitch.ovsschema
@@ -1,6 +1,6 @@
{"name": "Open_vSwitch",
- "version": "7.15.1",
- "cksum": "3682332033 23608",
+ "version": "7.16.0",
+ "cksum": "2403910601 23776",
"tables": {
"Open_vSwitch": {
"columns": {
@@ -47,7 +47,12 @@
"min": 0, "max": "unlimited"}},
"iface_types": {
"type": {"key": {"type": "string"},
- "min": 0, "max": "unlimited"}}},
+ "min": 0, "max": "unlimited"}},
+ "dpdk_initialized": {
+ "type": "boolean"},
+ "dpdk_version": {
+ "type": {"key": {"type": "string"},
+ "min": 0, "max": 1}}},
"isRoot": true,
"maxRows": 1},
"Bridge": {