Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Oct 2016 15:57:55 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r308050 - head/sys/amd64/vmm/amd
Message-ID:  <201610281557.u9SFvtiX008256@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610281557.u9SFvtiX008256>