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,
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to