From owner-svn-src-all@freebsd.org Tue May 3 22:07:20 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E76FB2C4C5; Tue, 3 May 2016 22:07:20 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4E3B12CD; Tue, 3 May 2016 22:07:19 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u43M7JuL005095; Tue, 3 May 2016 22:07:19 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u43M7IZ5005090; Tue, 3 May 2016 22:07:18 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201605032207.u43M7IZ5005090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Tue, 3 May 2016 22:07:18 +0000 (UTC) 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 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2016 22:07:20 -0000 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; }