From 6f5475993ff577ec90190dc38a34ef9a0e51da7f Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Mon, 22 Nov 2021 22:05:49 +0530 Subject: Tools: Update PktGen Container. This patch updates pktgen container. Signed-off-by: Sridhar K. N. Rao Change-Id: Id12ed71a2c531c3462985882e980a97f1151eefa --- .../test-containers/trafficgen-pods/pktgen/Dockerfile | 10 ++++++---- .../trafficgen-pods/pktgen/vhost_substitute.sh | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+), 4 deletions(-) create mode 100755 tools/docker/test-containers/trafficgen-pods/pktgen/vhost_substitute.sh (limited to 'tools') diff --git a/tools/docker/test-containers/trafficgen-pods/pktgen/Dockerfile b/tools/docker/test-containers/trafficgen-pods/pktgen/Dockerfile index 44bed3e2..33078609 100644 --- a/tools/docker/test-containers/trafficgen-pods/pktgen/Dockerfile +++ b/tools/docker/test-containers/trafficgen-pods/pktgen/Dockerfile @@ -20,6 +20,8 @@ RUN cp bin/libnetutil_api.so /lib64/libnetutil_api.so; cp bin/libnetutil_api.h / ## Download and Build DPDK ## + + ENV DPDK_VER 21.02 ENV DPDK_DIR /usr/src/dpdk-${DPDK_VER} WORKDIR /usr/src/ @@ -32,17 +34,17 @@ WORKDIR ${DPDK_DIR} COPY ./vhost_substitute.sh ./vhost_substitute.sh RUN ./vhost_substitute.sh +EXPOSE 22 8474 + RUN yum install -y epel-release && yum install -y dnf RUN dnf install -y meson ninja-build RUN pip3 install pyelftools RUN meson build && ninja -C build && ninja -C build install && ldconfig -EXPOSE 22 8474 - WORKDIR /usr/src/ ENV PKG_CONFIG_PATH /usr/local/lib64/pkgconfig RUN git clone http://dpdk.org/git/apps/pktgen-dpdk RUN yum install -y libpcap libpcap-devel -RUN cd pktgen-dpdk && make -j - +RUN yum install -y kernel-devel kernel-headers +RUN cd pktgen-dpdk && git checkout tags/pktgen-21.02.0 && make -j diff --git a/tools/docker/test-containers/trafficgen-pods/pktgen/vhost_substitute.sh b/tools/docker/test-containers/trafficgen-pods/pktgen/vhost_substitute.sh new file mode 100755 index 00000000..b33f3521 --- /dev/null +++ b/tools/docker/test-containers/trafficgen-pods/pktgen/vhost_substitute.sh @@ -0,0 +1,19 @@ +!/bin/bash + +# The first two commands update one of the 'if' checks to remove +# the check for 'master == VHOST_USER_SET_VRING_CALL'. +# +# Search for: " !(dev->flags & VIRTIO_DEV_VDPA_CONFIGURED) &&". +# Replace with: " !(dev->flags & VIRTIO_DEV_VDPA_CONFIGURED)) {". +sed -i -e 's/ !(dev->flags & VIRTIO_DEV_VDPA_CONFIGURED) &&/ !(dev->flags \& VIRTIO_DEV_VDPA_CONFIGURED)) {/g' lib/librte_vhost/vhost_user.c +# +# Search for line with: " msg.request.master == VHOST_USER_SET_VRING_CALL) {". +# Delete the line. +sed -i -e '/ msg\.request\.master == VHOST_USER_SET_VRING_CALL) {/d' lib/librte_vhost/vhost_user.c + + +# Force an RARP message to be sent out. +# +# Search for line with: " hw->started = true;". +# Append line: " virtio_notify_peers(dev);". +sed -i -e '/ hw->started = true;/a virtio_notify_peers(dev);' drivers/net/virtio/virtio_ethdev.c -- cgit 1.2.3-korg