From owner-svn-src-all@FreeBSD.ORG Fri Apr 22 12:42:41 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E31EE1065670; Fri, 22 Apr 2011 12:42:41 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D2F4D8FC0A; Fri, 22 Apr 2011 12:42:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p3MCgfCJ042862; Fri, 22 Apr 2011 12:42:41 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p3MCgfaZ042859; Fri, 22 Apr 2011 12:42:41 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201104221242.p3MCgfaZ042859@svn.freebsd.org> From: Marius Strobl Date: Fri, 22 Apr 2011 12:42:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r220949 - in head/sys/sun4v: include/cddl sun4v X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 22 Apr 2011 12:42:42 -0000 Author: marius Date: Fri Apr 22 12:42:41 2011 New Revision: 220949 URL: http://svn.freebsd.org/changeset/base/220949 Log: Correct spelling in comments. Submitted by: brucec Modified: head/sys/sun4v/include/cddl/mdesc_impl.h head/sys/sun4v/sun4v/tte_hash.c Modified: head/sys/sun4v/include/cddl/mdesc_impl.h ============================================================================== --- head/sys/sun4v/include/cddl/mdesc_impl.h Fri Apr 22 12:39:48 2011 (r220948) +++ head/sys/sun4v/include/cddl/mdesc_impl.h Fri Apr 22 12:42:41 2011 (r220949) @@ -53,7 +53,7 @@ extern "C" { * * Elements in the first (description list) section are defined by their * index location within the node block. An index is simply the byte offset - * within the block / element size (16bytes). All elements are refered to + * within the block / element size (16bytes). All elements are referred to * by their index, to avoid bugs related to alignment etc. * * The name_len field holds the storage length of an ASCII name, NOT the strlen. Modified: head/sys/sun4v/sun4v/tte_hash.c ============================================================================== --- head/sys/sun4v/sun4v/tte_hash.c Fri Apr 22 12:39:48 2011 (r220948) +++ head/sys/sun4v/sun4v/tte_hash.c Fri Apr 22 12:42:41 2011 (r220949) @@ -589,7 +589,7 @@ tte_hash_update(tte_hash_t th, vm_offset tte_t otte_data, tte_tag; tte_hash_field_t field = NULL; - entry = find_entry(th, va, PAGE_SHIFT); /* should actualy be a function of tte_data */ + entry = find_entry(th, va, PAGE_SHIFT); /* should actually be a function of tte_data */ tte_tag = (((uint64_t)th->th_context << TTARGET_CTX_SHIFT)|(va >> TTARGET_VA_SHIFT)); s = hash_bucket_lock(entry->the_fields);