summaryrefslogtreecommitdiff
path: root/.travis/build.sh
diff options
context:
space:
mode:
authorMark Kavanagh <mark.b.kavanagh@intel.com>2015-02-17 13:20:04 -0800
committerPravin B Shelar <pshelar@nicira.com>2015-03-04 10:05:39 -0800
commitb8e57534ece5f620af7d7fa0278c8e9746dd719c (patch)
treec46e454332afd69e950b9c2f11f44d12395d70bd /.travis/build.sh
parent09c28fa3210affd9ca79303348aaa502f5821139 (diff)
downloadopenvswitch-b8e57534ece5f620af7d7fa0278c8e9746dd719c.tar.gz
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 <mark.b.kavanagh@intel.com> Signed-off-by: Rory Sexton <rory.sexton@intel.com> Signed-off-by: Kevin Traynor <kevin.traynor@intel.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Diffstat (limited to '.travis/build.sh')
-rwxr-xr-x.travis/build.sh4
1 files changed, 2 insertions, 2 deletions
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