Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 May 2016 22:07:18 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r299009 - in head/sys/amd64/vmm: . amd intel io
Message-ID:  <201605032207.u43M7IZ5005090@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Tue May  3 22:07:18 2016
New Revision: 299009
URL: https://svnweb.freebsd.org/changeset/base/299009

Log:
  vmm(4): Small spelling fixes.
  
  Reviewed by:	grehan

Modified:
  head/sys/amd64/vmm/amd/vmcb.h
  head/sys/amd64/vmm/intel/vtd.c
  head/sys/amd64/vmm/io/vlapic.c
  head/sys/amd64/vmm/vmm_instruction_emul.c
  head/sys/amd64/vmm/vmm_stat.c

Modified: head/sys/amd64/vmm/amd/vmcb.h
==============================================================================
--- head/sys/amd64/vmm/amd/vmcb.h	Tue May  3 22:05:03 2016	(r299008)
+++ head/sys/amd64/vmm/amd/vmcb.h	Tue May  3 22:07:18 2016	(r299009)
@@ -313,7 +313,7 @@ struct vmcb_state {
 	uint64_t br_to;
 	uint64_t int_from;
 	uint64_t int_to;
-	uint8_t	 pad7[0x968];		/* Reserved upto end of VMCB */
+	uint8_t	 pad7[0x968];		/* Reserved up to end of VMCB */
 } __attribute__ ((__packed__));
 CTASSERT(sizeof(struct vmcb_state) == 0xC00);
 

Modified: head/sys/amd64/vmm/intel/vtd.c
==============================================================================
--- head/sys/amd64/vmm/intel/vtd.c	Tue May  3 22:05:03 2016	(r299008)
+++ head/sys/amd64/vmm/intel/vtd.c	Tue May  3 22:07:18 2016	(r299009)
@@ -463,7 +463,7 @@ vtd_update_mapping(void *arg, vm_paddr_t
 		panic("vtd_create_mapping: unaligned len 0x%0lx", len);
 
 	/*
-	 * Compute the size of the mapping that we can accomodate.
+	 * Compute the size of the mapping that we can accommodate.
 	 *
 	 * This is based on three factors:
 	 * - supported super page size

Modified: head/sys/amd64/vmm/io/vlapic.c
==============================================================================
--- head/sys/amd64/vmm/io/vlapic.c	Tue May  3 22:05:03 2016	(r299008)
+++ head/sys/amd64/vmm/io/vlapic.c	Tue May  3 22:07:18 2016	(r299009)
@@ -841,7 +841,7 @@ vlapic_calcdest(struct vm *vm, cpuset_t 
 	} else {
 		/*
 		 * In the "Flat Model" the MDA is interpreted as an 8-bit wide
-		 * bitmask. This model is only avilable in the xAPIC mode.
+		 * bitmask. This model is only available in the xAPIC mode.
 		 */
 		mda_flat_ldest = dest & 0xff;
 

Modified: head/sys/amd64/vmm/vmm_instruction_emul.c
==============================================================================
--- head/sys/amd64/vmm/vmm_instruction_emul.c	Tue May  3 22:05:03 2016	(r299008)
+++ head/sys/amd64/vmm/vmm_instruction_emul.c	Tue May  3 22:07:18 2016	(r299009)
@@ -1232,7 +1232,7 @@ emulate_stack_op(void *vm, int vcpuid, u
 		size = vie->opsize_override ? 2 : 8;
 	} else {
 		/*
-		 * In protected or compability mode the 'B' flag in the
+		 * In protected or compatibility mode the 'B' flag in the
 		 * stack-segment descriptor determines the size of the
 		 * stack pointer.
 		 */

Modified: head/sys/amd64/vmm/vmm_stat.c
==============================================================================
--- head/sys/amd64/vmm/vmm_stat.c	Tue May  3 22:05:03 2016	(r299008)
+++ head/sys/amd64/vmm/vmm_stat.c	Tue May  3 22:07:18 2016	(r299009)
@@ -69,7 +69,7 @@ vmm_stat_register(void *arg)
 		return;
 
 	if (vst_num_elems + vst->nelems >= MAX_VMM_STAT_ELEMS) {
-		printf("Cannot accomodate vmm stat type \"%s\"!\n", vst->desc);
+		printf("Cannot accommodate vmm stat type \"%s\"!\n", vst->desc);
 		return;
 	}
 



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