From owner-svn-src-all@FreeBSD.ORG Tue Jan 21 03:27:48 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E0AA9BC; Tue, 21 Jan 2014 03:27:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 384F219F8; Tue, 21 Jan 2014 03:27:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L3Rm8A042400; Tue, 21 Jan 2014 03:27:48 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L3RlZi042399; Tue, 21 Jan 2014 03:27:48 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201401210327.s0L3RlZi042399@svn.freebsd.org> From: John Baldwin Date: Tue, 21 Jan 2014 03:27:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r260975 - head/sys/vm 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.17 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, 21 Jan 2014 03:27:48 -0000 Author: jhb Date: Tue Jan 21 03:27:47 2014 New Revision: 260975 URL: http://svnweb.freebsd.org/changeset/base/260975 Log: Fix a couple of typos. Modified: head/sys/vm/vm_pageout.c Modified: head/sys/vm/vm_pageout.c ============================================================================== --- head/sys/vm/vm_pageout.c Tue Jan 21 03:24:52 2014 (r260974) +++ head/sys/vm/vm_pageout.c Tue Jan 21 03:27:47 2014 (r260975) @@ -1121,7 +1121,7 @@ vm_pageout_scan(struct vm_domain *vmd, i } else if ((m->flags & PG_WINATCFLS) == 0 && pass < 2) { /* * Dirty pages need to be paged out, but flushing - * a page is extremely expensive verses freeing + * a page is extremely expensive versus freeing * a clean page. Rather then artificially limiting * the number of pages we can flush, we instead give * dirty pages extra priority on the inactive queue @@ -1183,7 +1183,7 @@ vm_pageout_scan(struct vm_domain *vmd, i * to be freed and dirty pages to be moved to the end * of the queue. Since dirty pages are also moved to * the end of the queue once-cleaned, this gives - * way too large a weighting to defering the freeing + * way too large a weighting to deferring the freeing * of dirty pages. * * We can't wait forever for the vnode lock, we might