Add DPDK 16.04-rc2 support
Can be used by specifying DPDK_VERSION=16.04-rc2 in the make command line Change-Id: I657b44d7ca22f1ef57756e7703088020fab12bc6 Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
committed by
Gerrit Code Review
parent
23650e6cad
commit
0df78dda5a
3
Makefile
3
Makefile
@ -31,7 +31,7 @@ RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel
|
||||
RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
|
||||
EPEL_DEPENDS = libconfuse-devel ganglia-devel
|
||||
|
||||
ifneq ("$(wildcard $(STARTUP_DIR)/startup.conf),"")
|
||||
ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
|
||||
STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
|
||||
endif
|
||||
|
||||
@ -76,6 +76,7 @@ help:
|
||||
@echo " STARTUP_DIR = $(STARTUP_DIR)"
|
||||
@echo " GDB = $(GDB)"
|
||||
@echo " PLATFORM = $(PLATFORM)"
|
||||
@echo " DPDK_VERSION = $(DPDK_VERSION)"
|
||||
|
||||
$(BR)/.bootstrap.ok:
|
||||
ifeq ("$(shell lsb_release -si)", "Ubuntu")
|
||||
|
@ -29,6 +29,7 @@ DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.gz
|
||||
DPDK_TAR_URL := $(DPDK_BASE_URL)/$(DPDK_TARBALL)
|
||||
DPDK_2.1.0_TARBALL_MD5_CKSUM := 205a0d12bfd6eb717d57506272f43519
|
||||
DPDK_2.2.0_TARBALL_MD5_CKSUM := 22e2fd68cd5504f43fe9a5a6fd6dd938
|
||||
DPDK_16.04-rc2_TARBALL_MD5_CKSUM := a642985d2694d8cf8fdfdf0723be3406
|
||||
DPDK_SOURCE := $(B)/dpdk-$(DPDK_VERSION)
|
||||
DPDK_TARGET := x86_64-native-linuxapp-gcc
|
||||
JOBS := $(shell grep processor /proc/cpuinfo | wc -l)
|
||||
@ -82,7 +83,7 @@ all: build
|
||||
|
||||
$(B)/custom-config: $(B)/.patch.ok Makefile
|
||||
@echo --- generating custom config from $(DPDK_SOURCE)/config/common_linuxapp ---
|
||||
@cp $(DPDK_SOURCE)/config/common_linuxapp $@
|
||||
@cpp -undef -ffreestanding -x assembler-with-cpp $(DPDK_SOURCE)/config/common_linuxapp $@
|
||||
$(call set,RTE_MACHINE,$(DPDK_MACHINE))
|
||||
$(call set,RTE_ARCH,"x86_64")
|
||||
$(call set,RTE_ARCH_X86_64,y)
|
||||
@ -145,11 +146,13 @@ $(B)/.extract.ok: $(B)/.download.ok
|
||||
extract: $(B)/.extract.ok
|
||||
|
||||
$(B)/.patch.ok: $(B)/.extract.ok
|
||||
ifneq ($(wildcard $(CURDIR)/dpdk-$(DPDK_VERSION)_patches/*.patch),)
|
||||
@echo --- patching ---
|
||||
for f in $(CURDIR)/dpdk-$(DPDK_VERSION)_patches/*.patch ; do \
|
||||
echo Applying patch: $$(basename $$f) ; \
|
||||
patch -p1 -d $(DPDK_SOURCE) < $$f ; \
|
||||
done
|
||||
endif
|
||||
@touch $@
|
||||
|
||||
.PHONY: patch
|
||||
|
@ -78,11 +78,11 @@ typedef struct vhost_user_memory {
|
||||
vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS];
|
||||
} vhost_user_memory_t;
|
||||
|
||||
typedef struct vhost_vring_state {
|
||||
typedef struct {
|
||||
unsigned int index, num;
|
||||
} vhost_vring_state_t;
|
||||
|
||||
typedef struct vhost_vring_addr {
|
||||
typedef struct {
|
||||
unsigned int index, flags;
|
||||
u64 desc_user_addr, used_user_addr, avail_user_addr, log_guest_addr;
|
||||
} vhost_vring_addr_t;
|
||||
|
Reference in New Issue
Block a user