Skip to content

Commit ae52fc5

Browse files
authored
Merge pull request #1017 from hyunsun/master
Update DPDK version to 19.11.4
2 parents 8adb7b0 + b72059b commit ae52fc5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bessctl/conf/port/vhost/launch_vm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def run_forward(vm_id, num_nics):
175175
nics += ' 00:1{nic}.0'.format(nic=i)
176176

177177
scp(vm_id, os.path.join(bess_dir, 'bin/dpdk-devbind.py'), '')
178-
scp(vm_id, os.path.join(bess_dir, 'deps/dpdk-19.11.3/build/app/testpmd'), '')
178+
scp(vm_id, os.path.join(bess_dir, 'deps/dpdk-19.11.4/build/app/testpmd'), '')
179179

180180
# virtio-pci devices should not be bound to any driver
181181
cmd = ssh_cmd(vm_id, 'sudo ./dpdk-devbind.py -u %s' % nics)

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def cmd(cmd, quiet=False, shell=False):
8989
DEPS_DIR = '%s/deps' % BESS_DIR
9090

9191
DPDK_URL = 'https://fast.dpdk.org/rel'
92-
DPDK_VER = 'dpdk-19.11.3'
92+
DPDK_VER = 'dpdk-19.11.4'
9393
DPDK_TARGET = 'x86_64-native-linuxapp-gcc'
9494

9595
kernel_release = cmd('uname -r', quiet=True).strip()

core/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ endif
6161

6262
HAS_PKG_CONFIG := $(shell command -v $(PKG_CONFIG) 2>&1 >/dev/null && echo yes || echo no)
6363

64-
RTE_SDK ?= $(abspath ../deps/dpdk-19.11.3)
64+
RTE_SDK ?= $(abspath ../deps/dpdk-19.11.4)
6565
RTE_TARGET ?= $(shell uname -m)-native-linuxapp-gcc
6666
DPDK_LIB ?= dpdk
6767

env/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ARG BESS_DPDK_BRANCH=master
2929
RUN cd /build/bess && \
3030
curl -s -L https://github.com/NetSys/bess/archive/${BESS_DPDK_BRANCH}.tar.gz | tar zx --strip-components=1 && \
3131
./build.py dpdk && \
32-
cp /build/bess/deps/dpdk-19.11.3/build/app/testpmd /usr/local/bin/ && \
32+
cp /build/bess/deps/dpdk-19.11.4/build/app/testpmd /usr/local/bin/ && \
3333
rm -rf /build/bess
3434

3535
ENV CCACHE_DIR=/tmp/ccache

0 commit comments

Comments
 (0)