From b8e57534ece5f620af7d7fa0278c8e9746dd719c Mon Sep 17 00:00:00 2001 From: Mark Kavanagh Date: Tue, 17 Feb 2015 13:20:04 -0800 Subject: lib: upgrade to DPDK v1.8.0 DPDK v1.8.0 makes significant changes to struct rte_mbuf, including removal of the 'pkt' and 'data' fields. The latter, formally a pointer, is now calculated via an offset from the start of the segment buffer. So now dp_packet data is also stored as offset from base pointer. Signed-off-by: Mark Kavanagh Signed-off-by: Rory Sexton Signed-off-by: Kevin Traynor Signed-off-by: Pravin B Shelar --- .travis/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.travis/build.sh') diff --git a/.travis/build.sh b/.travis/build.sh index a8a515b95..942265af3 100755 --- a/.travis/build.sh +++ b/.travis/build.sh @@ -67,10 +67,10 @@ fi if [ "$DPDK" ]; then if [ -z "$DPDK_VER" ]; then - DPDK_VER="1.7.1" + DPDK_VER="1.8.0" fi install_dpdk $DPDK_VER - # Disregard bad function cassts until DPDK is fixed + # Disregard bad function casts until DPDK is fixed CFLAGS="$CFLAGS -Wno-error=bad-function-cast -Wno-error=cast-align" EXTRA_OPTS+="--with-dpdk=./dpdk-$DPDK_VER/build" elif [ $CC != "clang" ]; then -- cgit v1.2.1