svn commit: r330069 - stable/10/sys/amd64/vmm/amd

Andriy Gapon avg at FreeBSD.org
Tue Feb 27 14:47:57 UTC 2018


Author: avg
Date: Tue Feb 27 14:47:56 2018
New Revision: 330069
URL: https://svnweb.freebsd.org/changeset/base/330069

Log:
  MFC r329364: move vintr_intercept_enabled under INVARIANTS

Modified:
  stable/10/sys/amd64/vmm/amd/svm.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/amd64/vmm/amd/svm.c
==============================================================================
--- stable/10/sys/amd64/vmm/amd/svm.c	Tue Feb 27 14:47:17 2018	(r330068)
+++ stable/10/sys/amd64/vmm/amd/svm.c	Tue Feb 27 14:47:56 2018	(r330069)
@@ -965,6 +965,7 @@ svm_save_intinfo(struct svm_softc *svm_sc, int vcpu)
 	vm_exit_intinfo(svm_sc->vm, vcpu, intinfo);
 }
 
+#ifdef INVARIANTS
 static __inline int
 vintr_intercept_enabled(struct svm_softc *sc, int vcpu)
 {
@@ -972,6 +973,7 @@ vintr_intercept_enabled(struct svm_softc *sc, int vcpu
 	return (svm_get_intercept(sc, vcpu, VMCB_CTRL1_INTCPT,
 	    VMCB_INTCPT_VINTR));
 }
+#endif
 
 static __inline void
 enable_intr_window_exiting(struct svm_softc *sc, int vcpu)


More information about the svn-src-stable-10 mailing list