mirror of
https://github.com/opnsense/src.git
synced 2026-06-17 04:29:12 -04:00
This change adds the necessary kernelspace bits required for supporting NUMA domains in bhyve VMs. The layout of system memory segments and how they're created has been reworked. Each guest NUMA domain will now have its own memory segment. Furthermore, this change allows users to tweak the domain's backing vm_object domainset(9) policy. Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D44565
15 lines
217 B
Makefile
15 lines
217 B
Makefile
PACKAGE=lib${LIB}
|
|
LIB= vmmapi
|
|
SHLIB_MAJOR= 7
|
|
SRCS= vmmapi.c
|
|
INCS= vmmapi.h
|
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
.PATH: ${.CURDIR}/${MACHINE_CPUARCH}
|
|
|
|
.include "${MACHINE_CPUARCH}/Makefile.inc"
|
|
|
|
LIBADD= util
|
|
|
|
.include <bsd.lib.mk>
|