Skip to content

Commit e0fe159

Browse files
committed
dpdk: Use DPDK 17.11.3 release.
Modify travis linux build script to use the latest DPDK stable release 17.11.3. Update docs for latest DPDK stable releases. Signed-off-by: Ian Stokes <[email protected]> Acked-by: Shahaf Shuler <[email protected]> Acked-by: Flavio Leitner <[email protected]>
1 parent 23626bc commit e0fe159

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.travis/linux-build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fi
8383

8484
if [ "$DPDK" ]; then
8585
if [ -z "$DPDK_VER" ]; then
86-
DPDK_VER="17.11.2"
86+
DPDK_VER="17.11.3"
8787
fi
8888
install_dpdk $DPDK_VER
8989
if [ "$CC" = "clang" ]; then

Documentation/faq/releases.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ Q: What DPDK version does each Open vSwitch release work with?
163163
2.4.x 2.0
164164
2.5.x 2.2
165165
2.6.x 16.07.2
166-
2.7.x 16.11.6
166+
2.7.x 16.11.7
167167
2.8.x 17.05.2
168-
2.9.x 17.11.2
168+
2.9.x 17.11.3
169169
============ =======
170170

171171
Q: Are all the DPDK releases that OVS versions work with maintained?

Documentation/intro/install/dpdk.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Build requirements
4040
In addition to the requirements described in :doc:`general`, building Open
4141
vSwitch with DPDK will require the following:
4242

43-
- DPDK 17.11.2
43+
- DPDK 17.11.3
4444

4545
- A `DPDK supported NIC`_
4646

@@ -69,9 +69,9 @@ Install DPDK
6969
#. Download the `DPDK sources`_, extract the file and set ``DPDK_DIR``::
7070

7171
$ cd /usr/src/
72-
$ wget http://fast.dpdk.org/rel/dpdk-17.11.2.tar.xz
73-
$ tar xf dpdk-17.11.2.tar.xz
74-
$ export DPDK_DIR=/usr/src/dpdk-stable-17.11.2
72+
$ wget http://fast.dpdk.org/rel/dpdk-17.11.3.tar.xz
73+
$ tar xf dpdk-17.11.3.tar.xz
74+
$ export DPDK_DIR=/usr/src/dpdk-stable-17.11.3
7575
$ cd $DPDK_DIR
7676

7777
#. (Optional) Configure DPDK as a shared library

Documentation/topics/dpdk/vhost-user.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ To begin, instantiate a guest as described in :ref:`dpdk-vhost-user` or
320320
DPDK sources to VM and build DPDK::
321321

322322
$ cd /root/dpdk/
323-
$ wget http://fast.dpdk.org/rel/dpdk-17.11.2.tar.xz
324-
$ tar xf dpdk-17.11.2.tar.xz
325-
$ export DPDK_DIR=/root/dpdk/dpdk-stable-17.11.2
323+
$ wget http://fast.dpdk.org/rel/dpdk-17.11.3.tar.xz
324+
$ tar xf dpdk-17.11.3.tar.xz
325+
$ export DPDK_DIR=/root/dpdk/dpdk-stable-17.11.3
326326
$ export DPDK_TARGET=x86_64-native-linuxapp-gcc
327327
$ export DPDK_BUILD=$DPDK_DIR/$DPDK_TARGET
328328
$ cd $DPDK_DIR

0 commit comments

Comments
 (0)