]> git.proxmox.com Git - ovs.git/commitdiff
dpdk: Use DPDK 17.11.4 release.
authorIan Stokes <ian.stokes@intel.com>
Thu, 13 Sep 2018 12:43:02 +0000 (13:43 +0100)
committerIan Stokes <ian.stokes@intel.com>
Fri, 19 Oct 2018 10:59:08 +0000 (11:59 +0100)
Modify travis linux build script to use the latest
DPDK stable release 17.11.4. Update docs for latest
DPDK stable releases.

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

index 4b9fc4ac1b39775df9b076f94fd78ab4aeaba1cf..1fe5bbfa9ea74d4c80790be69b1ccd3ed29e03fb 100755 (executable)
@@ -83,7 +83,7 @@ fi
 
 if [ "$DPDK" ]; then
     if [ -z "$DPDK_VER" ]; then
-        DPDK_VER="17.11.3"
+        DPDK_VER="17.11.4"
     fi
     install_dpdk $DPDK_VER
     if [ "$CC" = "clang" ]; then
index 41d41e3fcaae1dbca07f151eea83b6b96313f5d6..17d66fc6a7c634bdde1f0d5b2c983ab9111ad8aa 100644 (file)
@@ -165,10 +165,10 @@ 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.7
+    2.7.x        16.11.8
     2.8.x        17.05.2
-    2.9.x        17.11.3
-    2.10.x       17.11.3
+    2.9.x        17.11.4
+    2.10.x       17.11.4
     ============ =======
 
 Q: Are all the DPDK releases that OVS versions work with maintained?
index 36501c6888b43a5f5215a997f9037901450b6ce6..312b1a873535dd219289c31d966fdd2e2d0ce842 100644 (file)
@@ -42,7 +42,7 @@ Build requirements
 In addition to the requirements described in :doc:`general`, building Open
 vSwitch with DPDK will require the following:
 
-- DPDK 17.11.3
+- DPDK 17.11.4
 
 - A `DPDK supported NIC`_
 
@@ -71,9 +71,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.3.tar.xz
-       $ tar xf dpdk-17.11.3.tar.xz
-       $ export DPDK_DIR=/usr/src/dpdk-stable-17.11.3
+       $ wget http://fast.dpdk.org/rel/dpdk-17.11.4.tar.xz
+       $ tar xf dpdk-17.11.4.tar.xz
+       $ export DPDK_DIR=/usr/src/dpdk-stable-17.11.4
        $ cd $DPDK_DIR
 
 #. (Optional) Configure DPDK as a shared library
index b1e2285dc5b75a820ebf2ac7608c6d9d4d3f02df..176bf176884bbad25f072ac71d929fc93254e528 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.3.tar.xz
-    $ tar xf dpdk-17.11.3.tar.xz
-    $ export DPDK_DIR=/root/dpdk/dpdk-stable-17.11.3
+    $ wget http://fast.dpdk.org/rel/dpdk-17.11.4.tar.xz
+    $ tar xf dpdk-17.11.4.tar.xz
+    $ export DPDK_DIR=/root/dpdk/dpdk-stable-17.11.4
     $ export DPDK_TARGET=x86_64-native-linuxapp-gcc
     $ export DPDK_BUILD=$DPDK_DIR/$DPDK_TARGET
     $ cd $DPDK_DIR