37e3a6d349
This commit, long overdue, contains contributions in the last 2 years from Stefano Garzarella, Giuseppe Lettieri, Vincenzo Maffione, including: + fixes on monitor ports + the 'ptnet' virtual device driver, and ptnetmap backend, for high speed virtual passthrough on VMs (bhyve fixes in an upcoming commit) + improved emulated netmap mode + more robust error handling + removal of stale code + various fixes to code and documentation (some mixup between RX and TX parameters, and private and public variables) We also include an additional tool, nmreplay, which is functionally equivalent to tcpreplay but operating on netmap ports.
28 lines
711 B
Makefile
28 lines
711 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Compile netmap as a module, useful if you want a netmap bridge
|
|
# or loadable drivers.
|
|
|
|
.include <bsd.own.mk> # FreeBSD 10 and earlier
|
|
# .include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
.PATH: ${.CURDIR}/../../dev/netmap
|
|
.PATH.h: ${.CURDIR}/../../net
|
|
CFLAGS += -I${.CURDIR}/../../ -D INET
|
|
KMOD = netmap
|
|
SRCS = device_if.h bus_if.h pci_if.h opt_netmap.h
|
|
SRCS += netmap.c netmap.h netmap_kern.h
|
|
SRCS += netmap_mem2.c netmap_mem2.h
|
|
SRCS += netmap_generic.c
|
|
SRCS += netmap_mbq.c netmap_mbq.h
|
|
SRCS += netmap_vale.c
|
|
SRCS += netmap_freebsd.c
|
|
SRCS += netmap_offloadings.c
|
|
SRCS += netmap_pipe.c
|
|
SRCS += netmap_monitor.c
|
|
SRCS += netmap_pt.c
|
|
SRCS += if_ptnet.c
|
|
SRCS += opt_inet.h opt_inet6.h
|
|
|
|
.include <bsd.kmod.mk>
|