]> git.proxmox.com Git - ovs.git/commitdiff
dpdk: Use DPDK 17.11.2 release.
authorKevin Traynor <ktraynor@redhat.com>
Mon, 23 Apr 2018 15:11:46 +0000 (16:11 +0100)
committerIan Stokes <ian.stokes@intel.com>
Fri, 11 May 2018 07:08:24 +0000 (08:08 +0100)
Modify travis linux build script to use the latest
DPDK stable release 17.11.2. Update docs for latest
DPDK stable releases.

Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Signed-off-by: Ian Stokes <ian.stokes@intel.com>
.travis/linux-build.sh
Documentation/faq/releases.rst
Documentation/intro/install/dpdk.rst
Documentation/topics/dpdk/vhost-user.rst

index 19b2ccffc1d210cb2260baef95a0b839dbb1836c..2e611f8094083f9c536dbc728cd64a8d2a71b047 100755 (executable)
@@ -83,7 +83,7 @@ fi
 
 if [ "$DPDK" ]; then
     if [ -z "$DPDK_VER" ]; then
-        DPDK_VER="17.11.1"
+        DPDK_VER="17.11.2"
     fi
     install_dpdk $DPDK_VER
     if [ "$CC" = "clang" ]; then
index 7c655035ad8f896ec348415ebe74a989442542e0..db912ff39062899f977dfa39e44413ce33ce17f6 100644 (file)
@@ -163,9 +163,9 @@ Q: What DPDK version does each Open vSwitch release work with?
     2.4.x        2.0
     2.5.x        2.2
     2.6.x        16.07.2
-    2.7.x        16.11.5
+    2.7.x        16.11.6
     2.8.x        17.05.2
-    2.9.x        17.11.1
+    2.9.x        17.11.2
     ============ =======
 
 Q: I get an error like this when I configure Open vSwitch:
index fea48908d8f038fc838727fa156856d9fba2d6cd..34cd0eaf9378208107521158f48ca3c36b4904a2 100644 (file)
@@ -40,7 +40,7 @@ Build requirements
 In addition to the requirements described in :doc:`general`, building Open
 vSwitch with DPDK will require the following:
 
-- DPDK 17.11.1
+- DPDK 17.11.2
 
 - A `DPDK supported NIC`_
 
@@ -69,9 +69,9 @@ Install DPDK
 #. Download the `DPDK sources`_, extract the file and set ``DPDK_DIR``::
 
        $ cd /usr/src/
-       $ wget http://fast.dpdk.org/rel/dpdk-17.11.1.tar.xz
-       $ tar xf dpdk-17.11.1.tar.xz
-       $ export DPDK_DIR=/usr/src/dpdk-stable-17.11.1
+       $ wget http://fast.dpdk.org/rel/dpdk-17.11.2.tar.xz
+       $ tar xf dpdk-17.11.2.tar.xz
+       $ export DPDK_DIR=/usr/src/dpdk-stable-17.11.2
        $ cd $DPDK_DIR
 
 #. (Optional) Configure DPDK as a shared library
index a592aeb868b5279648f7f536075cc4c7df565fc4..c5b69fabd22c0a763c9c3feffa547ff9b639f1a1 100644 (file)
@@ -320,9 +320,9 @@ To begin, instantiate a guest as described in :ref:`dpdk-vhost-user` or
 DPDK sources to VM and build DPDK::
 
     $ cd /root/dpdk/
-    $ wget http://fast.dpdk.org/rel/dpdk-17.11.1.tar.xz
-    $ tar xf dpdk-17.11.1.tar.xz
-    $ export DPDK_DIR=/root/dpdk/dpdk-stable-17.11.1
+    $ wget http://fast.dpdk.org/rel/dpdk-17.11.2.tar.xz
+    $ tar xf dpdk-17.11.2.tar.xz
+    $ export DPDK_DIR=/root/dpdk/dpdk-stable-17.11.2
     $ export DPDK_TARGET=x86_64-native-linuxapp-gcc
     $ export DPDK_BUILD=$DPDK_DIR/$DPDK_TARGET
     $ cd $DPDK_DIR