]> 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:10:02 +0000 (08:10 +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 004953f2e664b810c275c4bd54b2be59764163e1..c748a16660b7edf661b0438d85de597a52eafa9f 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 59252fa0fa5fbf52d9eb2b87004d57776aa2009b..958495ae39187d88a5f0f59e4b19f1796134d745 100644 (file)
@@ -162,9 +162,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 3939526b9e20d3ca20c63a11c38216539241fa8e..db81e00a3d9d584320baf1bc3647d44c1fd37c9f 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 6bf16f72ba2d16ecd20fadf485c7ae34eafbb7a7..6677d99857c0c4f645cbfda2bb401a3809963a49 100644 (file)
@@ -316,9 +316,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