Skip to content

Commit

Permalink
vswitchd: Add external_ids to Flow_Table table in database schema.
Browse files Browse the repository at this point in the history
Every other table has an external_ids column, which can be useful to
controller writers for integration purposes, so add one to Flow_Table also.

Reported-by: Ariel Tubaltsev <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
Acked-by: Justin Pettit <[email protected]>
  • Loading branch information
blp committed Mar 31, 2014
1 parent 5fd2f41 commit e3fbd9d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ Andrei Andone [email protected]
Anshuman Manral [email protected]
Anton Matsiuk [email protected]
Anuprem Chalvadi [email protected]
Ariel Tubaltsev [email protected]
Atzm Watanabe [email protected]
Bastian Blank [email protected]
Ben Basler [email protected]
Expand Down
9 changes: 6 additions & 3 deletions vswitchd/vswitch.ovsschema
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{"name": "Open_vSwitch",
"version": "7.4.0",
"cksum": "2387737815 20431",
"version": "7.5.0",
"cksum": "1448369194 20560",
"tables": {
"Open_vSwitch": {
"columns": {
Expand Down Expand Up @@ -303,7 +303,10 @@
"groups": {
"type": {"key": "string", "min": 0, "max": "unlimited"}},
"prefixes": {
"type": {"key": "string", "min": 0, "max": 3}}}},
"type": {"key": "string", "min": 0, "max": 3}},
"external_ids": {
"type": {"key": "string", "value": "string",
"min": 0, "max": "unlimited"}}}},
"QoS": {
"columns": {
"type": {
Expand Down
7 changes: 7 additions & 0 deletions vswitchd/vswitch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2628,6 +2628,13 @@
one flow table. Currently this limit is 3.
</p>
</column>

<group title="Common Columns">
The overall purpose of these columns is described under <code>Common
Columns</code> at the beginning of this document.

<column name="external_ids"/>
</group>
</table>

<table name="QoS" title="Quality of Service configuration">
Expand Down

0 comments on commit e3fbd9d

Please sign in to comment.