svn commit: r308050 - head/sys/amd64/vmm/amd

Andriy Gapon avg at FreeBSD.org
Fri Oct 28 15:57:57 UTC 2016


Author: avg
Date: Fri Oct 28 15:57:55 2016
New Revision: 308050
URL: https://svnweb.freebsd.org/changeset/base/308050

Log:
  fix a syntax error in r308039 ...
  
  that I somehow introduced between testing the change
  iand committing it.
  
  MFC after:	1 week
  X-MFC with:	r307903

Modified:
  head/sys/amd64/vmm/amd/svm.c

Modified: head/sys/amd64/vmm/amd/svm.c
==============================================================================
--- head/sys/amd64/vmm/amd/svm.c	Fri Oct 28 15:30:10 2016	(r308049)
+++ head/sys/amd64/vmm/amd/svm.c	Fri Oct 28 15:57:55 2016	(r308050)
@@ -514,7 +514,7 @@ svm_vminit(struct vm *vm, pmap_t pmap)
 {
 	struct svm_softc *svm_sc;
 	struct svm_vcpu *vcpu;
-	vm_paddr_t msrpm_pa, iopm_pa, pml4_pa
+	vm_paddr_t msrpm_pa, iopm_pa, pml4_pa;
 	int i;
 
 	svm_sc = contigmalloc(sizeof (*svm_sc), M_SVM, M_WAITOK | M_ZERO,


More information about the svn-src-head mailing list