summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorLukasz Rzasik <lukasz.rzasik@gmail.com>2016-12-29 15:55:46 -0700
committerBen Pfaff <blp@ovn.org>2017-01-05 08:48:10 -0800
commit1ab39058cc1fbe9b2ce48e784284fd0383d537c5 (patch)
tree9ce73e573c744e65074f920111c8f27d01f312fa /NEWS
parent84d0ca5d00fe01b29163236d48fa0f9105687149 (diff)
downloadopenvswitch-1ab39058cc1fbe9b2ce48e784284fd0383d537c5.tar.gz
ovsdb-data: Add support for integer ranges in database commands
Adding / removing a range of integers to a column accepting a set of integers requires enumarating all of the integers. This patch simplifies it by introducing 'range' concept to the database commands. Two integers separated by a hyphen represent an inclusive range. The patch adds positive and negative tests for the new syntax. The patch was tested by 'make check'. Covarage was tested by 'make check-lcov'. Signed-off-by: Lukasz Rzasik <lukasz.rzasik@gmail.com> Suggested-by: <my_ovs_discuss@yahoo.com> Suggested-by: Ben Pfaff <blp@ovn.org> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index beee6cc9e..1b0aa5dd0 100644
--- a/NEWS
+++ b/NEWS
@@ -59,6 +59,9 @@ Post-v2.6.0
* Ports now have a "protected" flag. Protected ports can not forward
frames to other protected ports. Unprotected ports can receive and
forward frames to protected and other unprotected ports.
+ - ovs-vsctl, ovn-nbctl, ovn-sbctl, vtep-ctl:
+ * Database commands now accept integer ranges, e.g. "set port
+ eth0 trunks=1-10" to enable trunking VLANs 1 to 10.
v2.6.0 - 27 Sep 2016
---------------------