summaryrefslogtreecommitdiffstats
path: root/src/plugins/vmxnet3
AgeCommit message (Expand)AuthorFilesLines
2018-10-27vmxnet3: add logging support to the control plane [VPP-1470]Steven4-17/+87
2018-10-26vmxnet3: enable promiscuous modeSteven1-1/+1
2018-10-23Numa-aware, growable physical memory allocator (pmalloc)Damjan Marion2-51/+28
2018-10-23c11 safe string handling supportDave Barach4-12/+12
2018-10-22vlib: pci improvementsDamjan Marion2-15/+16
2018-10-22vlib: introduce vlib_buffer_get_{pa,va,current_va,current_pa} inlinesDamjan Marion2-7/+5
2018-10-16vmxnet3: show vmxnet3 with filtering capability [VPP-1452]Steven3-12/+234
2018-10-16vmxnet3: vmxnet3_test_plugin.so: undefined symbol: format_vlib_pci_addr [VPP-...Steven1-1/+9
2018-10-10vmxnet3: better error handlingSteven2-20/+42
2018-10-03vmxnet3: coverity woeSteven2-12/+12
2018-10-03vmxnet3: error handlingSteven4-60/+84
2018-09-26vmxnet3: delete interface causes a crashSteven1-9/+4
2018-09-25vmxnet3: guard against array overflowSteven1-2/+3
2018-09-21vmxnet3: Add hardware link status handlingSteven6-8/+66
2018-09-20vmxnet3: invoke vlib_buffer_enqueue_to_next() with the wrong buffers for chai...Steven1-7/+8
2018-09-18vmxnet3: add support for "non-default" next nodeSteven3-2/+76
2018-09-16vmxnet3: fix clang initialization errorFlorin Coras1-1/+2
2018-09-14vmxnet3 device driverSteven Luong14-0/+3173
# as follows: # 1. from workspace root directory, 'make -C build/external build-deb' # 2. Verify that the file build/external/dpdk_mlx_default.sh was generated # and contains 'DPDK_MLX_DEFAULT=y' # rdma-core_version := 45.0 rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz rdma-core_tarball_md5sum_39.1 := 63ba4632fd01173a2331e5b990373330 rdma-core_tarball_md5sum_41.0 := 2250389cb61a7130133e6411fdeef2f9 rdma-core_tarball_md5sum_43.0 := 3785fd2b35cd41043ab53226fc112d41 rdma-core_tarball_md5sum_45.0 := 2b170e6d2ad66fb688580520a16d1ad5 rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version)) rdma-core_tarball_strip_dirs := 1 rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball) RDMA_BUILD_TYPE:=RelWithDebInfo ifeq ($(RDMA_CORE_DEBUG),y) RDMA_BUILD_TYPE:=Debug endif define rdma-core_config_cmds cd $(rdma-core_build_dir) && \ $(CMAKE) -G Ninja $(rdma-core_src_dir) \ -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0\ -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) -DCMAKE_INSTALL_PREFIX=$(rdma-core_install_dir) \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_RUNDIR:PATH=/run \ -DCMAKE_C_FLAGS='-fPIC' -DNO_MAN_PAGES=ON | tee $(rdma-core_config_log) endef define rdma-core_build_cmds $(CMAKE) --build $(rdma-core_build_dir) | tee $(rdma-core_build_log) endef define rdma-core_install_cmds $(CMAKE) --install $(rdma-core_build_dir) | tee $(rdma-core_install_log) endef $(eval $(call package,rdma-core))