Skip to content

Commit 0bf824c

Browse files
authored
Merge pull request #2127 from tkatila/dpdk-fix-core-selection
qat: fix dpdk core selection on high core count systems
2 parents b33acec + d13b656 commit 0bf824c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

demo/crypto-perf/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@ RUN echo "deb-src http://deb.debian.org/debian unstable main" >> \
88
RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip pkg-config dpkg-dev libipsec-mb-dev
99

1010
# Download & unpack DPDK tarball
11-
ARG DPDK_TARBALL=dpdk-24.03.tar.xz
12-
ARG DPDK_TARBALL_SHA256="33ed973b3945af4f5923096ddca250b401dc80be3b5c6393b4e4fe43a1a6c2ad"
11+
ARG DPDK_TARBALL=dpdk-25.03.tar.xz
12+
ARG DPDK_TARBALL_SHA256="6a40a731328286ebd79685b18ffa5992e6b770c13843d65fd0d1157cfccff63d"
1313

1414
RUN wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
1515
&& echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \
1616
&& tar -xf $DPDK_TARBALL && rm $DPDK_TARBALL
1717

18-
ARG SOVERSION=24
18+
ARG SOVERSION=25
1919
RUN cd dpdk-* && meson setup \
2020
-Dplatform=generic \
2121
-Dcpu_instruction_set=westmere \
22+
-Dmax_lcores=256 \
2223
"-Denable_drivers=common/qat,compress/qat,crypto/qat" \
2324
"-Denable_apps=test-crypto-perf,test-compress-perf" \
2425
--prefix $(pwd)/installdir \

demo/dsa-dpdk-dmadevtest/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ WORKDIR $DIR
66
RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip pkg-config dpkg-dev libipsec-mb-dev
77

88
# Download & unpack DPDK tarball
9-
ARG DPDK_TARBALL=dpdk-24.11.1.tar.xz
10-
ARG DPDK_TARBALL_SHA256="bcae7d42c449fc456dfb279feabcbe0599a29bebb2fe2905761e187339d96b8e"
9+
ARG DPDK_TARBALL=dpdk-25.03.tar.xz
10+
ARG DPDK_TARBALL_SHA256="6a40a731328286ebd79685b18ffa5992e6b770c13843d65fd0d1157cfccff63d"
1111

1212
RUN wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
1313
&& echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \

0 commit comments

Comments
 (0)