Change ovs version we use in fullstack tests

Kernel 4.4.0-145 backported a change on IPv6 fragmentation API, so
update the OVS version checked out for fullstack tests to a hash
including the needed compatibility layer changes

Change-Id: Ia9383c02e1c62e31db9493729aedbed5b94a3a3f
Closes-bug: #1823155
This commit is contained in:
Bernard Cafarelli 2019-04-04 16:24:17 +02:00
parent a229613a37
commit 004caf773a
No known key found for this signature in database
GPG Key ID: D148244A3C2462BD
1 changed files with 3 additions and 3 deletions

View File

@ -74,13 +74,13 @@ case $VENV in
# we need a fix for VXLAN local tunneling.
if [[ "$VENV" =~ "dsvm-fullstack" ]]; then
# The OVS_BRANCH variable is used by git checkout. In the case below,
# we use openvswitch commit 138df3e563de9da0e5a4155b3534a69621495742
# we use openvswitch commit 175be4bf23a206b264719b5661707af186b31f32
# that contains a fix for usage of VXLAN tunnels on a single node
# (commit 741f47cf35df2bfc7811b2cff75c9bb8d05fd26f) and is compatible
# with kernel 4.4.119
# with kernel 4.4.0-145
# NOTE(slaweq): Replace with a release tag when one is available.
# See commit 138df3e563de9da0e5a4155b3534a69621495742 (on the ovs repo).
OVS_BRANCH="138df3e563de9da0e5a4155b3534a69621495742"
OVS_BRANCH="175be4bf23a206b264719b5661707af186b31f32"
compile_ovs_kernel_module
fi