diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2016-08-18 12:00:44 +0100 |
---|---|---|
committer | Martin Klozik <martinx.klozik@intel.com> | 2016-08-18 14:19:17 +0100 |
commit | 1ea5c5239f9003f9cb8492f1d5b00a75724a7180 (patch) | |
tree | 1622aa4f0e59bb7fb32e295096b42b8aa23cf2a3 /src/dpdk/Makefile | |
parent | 21c787b5bb7dd4592bc83718756ac670232a8347 (diff) |
cuse: Remove vHost Cuse support
Support of vHost Cuse interface is not supported
by OVS anymore, so it was removed also from VSPERF.
Cuse can be used with older VSPERF release if needed.
JIRA: VSPERF-376
Change-Id: Id786bddf5fa9dce5706a93de7b089707a60317cd
Signed-off-by: Martin Klozik <martinx.klozik@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Reviewed-by: Al Morton <acmorton@att.com>
Reviewed-by: Christian Trautman <ctrautma@redhat.com>
Reviewed-by: Bill Michalowski <bmichalo@redhat.com>
Diffstat (limited to 'src/dpdk/Makefile')
-rwxr-xr-x | src/dpdk/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index 69255f75..1cd85e3e 100755 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -30,7 +30,6 @@ ifndef VHOST_USER endif WORK_DIR = dpdk TAG_DONE_FLAG = $(WORK_DIR)/.$(DPDK_TAG).tag.done -DPDK_CUSE = ../../src_cuse/dpdk # VHOST configuration options are stored in different files based on DPDK version # v1.2.3r0-v1.6.0r2 - configuration inside config/defconfig_x86_64-default-linuxapp-gcc @@ -99,7 +98,6 @@ clean: $(AT)cd $(WORK_DIR) && git clean -xfd *.o clobber: $(AT)rm -rf $(WORK_DIR) - $(AT)rm -rf $(DPDK_CUSE) # distclean is for developer who would like to keep the # clone git repo, saving time to fetch again from url @@ -114,8 +112,6 @@ sanity: $(WORK_DIR): $(AT)git clone $(DPDK_URL) - $(AT)mkdir -p $(DPDK_CUSE) - $(AT)cp -rf ./* $(DPDK_CUSE) $(TAG_DONE_FLAG): $(WORK_DIR) $(AT)cd $(WORK_DIR); git checkout $(DPDK_TAG) |