Print this page
Revert "OS-8005 bhyve memory pressure needs to target ARC better (#354)"
This reverts commit a6033573eedd94118d2b9e65f45deca0bf4b42f7.
   1 #
   2 # This file and its contents are supplied under the terms of the
   3 # Common Development and Distribution License ("CDDL"), version 1.0.
   4 # You may only use this file in accordance with the terms of version
   5 # 1.0 of the CDDL.
   6 #
   7 # A full copy of the text of the CDDL should have accompanied this
   8 # source.  A copy of the CDDL is also available via the Internet at
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 #
  13 # Copyright 2013 Pluribus Networks Inc.
  14 # Copyright 2020 Joyent, Inc.
  15 #
  16 
  17 #
  18 #       Path to the base of the uts directory tree (usually /usr/src/uts).
  19 #
  20 UTSBASE = ../..
  21 
  22 #
  23 #       Define the module and object file sets.
  24 #
  25 MODULE          = vmm
  26 OBJECTS         = $(VMM_OBJS:%=$(OBJS_DIR)/%)
  27 ROOTMODULE      = $(USR_DRV_DIR)/$(MODULE)
  28 CONF_SRCDIR     = $(UTSBASE)/i86pc/io/vmm
  29 MAPFILE         = $(UTSBASE)/i86pc/io/vmm/vmm.mapfile
  30 
  31 #
  32 #       Include common rules.
  33 #
  34 include $(UTSBASE)/i86pc/Makefile.i86pc
  35 
  36 #
  37 #       Define targets
  38 #
  39 ALL_TARGET      = $(BINARY)
  40 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  41 
  42 #
  43 #       Overrides and additions
  44 #
  45 

  46 # 3rd party code
  47 SMOFF += all_func_returns
  48 
  49 # needs work
  50 $(OBJS_DIR)/vmm_sol_dev.o := SMOFF += signed_integer_overflow_check
  51 
  52 ALL_BUILDS      = $(ALL_BUILDSONLY64)
  53 DEF_BUILDS      = $(DEF_BUILDSONLY64)
  54 PRE_INC_PATH    = -I$(COMPAT)/bhyve -I$(COMPAT)/bhyve/amd64 \
  55         -I$(CONTRIB)/bhyve -I$(CONTRIB)/bhyve/amd64
  56 INC_PATH        += -I$(UTSBASE)/i86pc/io/vmm -I$(UTSBASE)/i86pc/io/vmm/io
  57 AS_INC_PATH     += -I$(UTSBASE)/i86pc/io/vmm -I$(OBJS_DIR)
  58 
  59 # enable collection of VMM statistics
  60 CFLAGS          += -DVMM_KEEP_STATS
  61 
  62 LDFLAGS         += -N misc/acpica -N misc/pcie -N fs/dev -N fs/zfs
  63 LDFLAGS         += -z type=kmod -M $(MAPFILE)
  64 
  65 OFFSETS_VMX     = $(CONF_SRCDIR)/intel/offsets.in
  66 OFFSETS_SVM     = $(CONF_SRCDIR)/amd/offsets.in
  67 ASSYM_VMX       = $(OBJS_DIR)/vmx_assym.h
  68 ASSYM_SVM       = $(OBJS_DIR)/svm_assym.h
  69 ASSYM_H         = $(ASSYM_VMX) $(ASSYM_SVM)
  70 
  71 CLEANFILES      += $(ASSYM_H)
  72 
  73 #
  74 #       Default build targets.
  75 #
  76 .KEEP_STATE:
  77 
  78 def:            $(DEF_DEPS)
  79 
  80 all:            $(ALL_DEPS)
  81 
  82 clean:          $(CLEAN_DEPS)
   1 #
   2 # This file and its contents are supplied under the terms of the
   3 # Common Development and Distribution License ("CDDL"), version 1.0.
   4 # You may only use this file in accordance with the terms of version
   5 # 1.0 of the CDDL.
   6 #
   7 # A full copy of the text of the CDDL should have accompanied this
   8 # source.  A copy of the CDDL is also available via the Internet at
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 #
  13 # Copyright 2013 Pluribus Networks Inc.
  14 # Copyright 2019 Joyent, Inc.
  15 #
  16 
  17 #
  18 #       Path to the base of the uts directory tree (usually /usr/src/uts).
  19 #
  20 UTSBASE = ../..
  21 
  22 #
  23 #       Define the module and object file sets.
  24 #
  25 MODULE          = vmm
  26 OBJECTS         = $(VMM_OBJS:%=$(OBJS_DIR)/%)
  27 ROOTMODULE      = $(USR_DRV_DIR)/$(MODULE)
  28 CONF_SRCDIR     = $(UTSBASE)/i86pc/io/vmm
  29 MAPFILE         = $(UTSBASE)/i86pc/io/vmm/vmm.mapfile
  30 
  31 #
  32 #       Include common rules.
  33 #
  34 include $(UTSBASE)/i86pc/Makefile.i86pc
  35 
  36 #
  37 #       Define targets
  38 #
  39 ALL_TARGET      = $(BINARY)
  40 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  41 
  42 #
  43 #       Overrides and additions
  44 #
  45 
  46 
  47 # 3rd party code
  48 SMOFF += all_func_returns
  49 
  50 # needs work
  51 $(OBJS_DIR)/vmm_sol_dev.o := SMOFF += signed_integer_overflow_check
  52 
  53 ALL_BUILDS      = $(ALL_BUILDSONLY64)
  54 DEF_BUILDS      = $(DEF_BUILDSONLY64)
  55 PRE_INC_PATH    = -I$(COMPAT)/bhyve -I$(COMPAT)/bhyve/amd64 \
  56         -I$(CONTRIB)/bhyve -I$(CONTRIB)/bhyve/amd64
  57 INC_PATH        += -I$(UTSBASE)/i86pc/io/vmm -I$(UTSBASE)/i86pc/io/vmm/io
  58 AS_INC_PATH     += -I$(UTSBASE)/i86pc/io/vmm -I$(OBJS_DIR)
  59 
  60 # enable collection of VMM statistics
  61 CFLAGS          += -DVMM_KEEP_STATS
  62 
  63 LDFLAGS         += -N misc/acpica -N misc/pcie -N fs/dev
  64 LDFLAGS         += -z type=kmod -M $(MAPFILE)
  65 
  66 OFFSETS_VMX     = $(CONF_SRCDIR)/intel/offsets.in
  67 OFFSETS_SVM     = $(CONF_SRCDIR)/amd/offsets.in
  68 ASSYM_VMX       = $(OBJS_DIR)/vmx_assym.h
  69 ASSYM_SVM       = $(OBJS_DIR)/svm_assym.h
  70 ASSYM_H         = $(ASSYM_VMX) $(ASSYM_SVM)
  71 
  72 CLEANFILES      += $(ASSYM_H)
  73 
  74 #
  75 #       Default build targets.
  76 #
  77 .KEEP_STATE:
  78 
  79 def:            $(DEF_DEPS)
  80 
  81 all:            $(ALL_DEPS)
  82 
  83 clean:          $(CLEAN_DEPS)