From owner-svn-src-projects@FreeBSD.ORG Tue Mar 17 09:51:02 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB20C6D5; Tue, 17 Mar 2015 09:51:02 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D683318F; Tue, 17 Mar 2015 09:51:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2H9p2Qs093667; Tue, 17 Mar 2015 09:51:02 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2H9p2Mj093666; Tue, 17 Mar 2015 09:51:02 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201503170951.t2H9p2Mj093666@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Tue, 17 Mar 2015 09:51:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r280167 - projects/sendfile/sys/kern X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2015 09:51:03 -0000 Author: glebius Date: Tue Mar 17 09:51:01 2015 New Revision: 280167 URL: https://svnweb.freebsd.org/changeset/base/280167 Log: Tiny comment fix. Modified: projects/sendfile/sys/kern/uipc_syscalls.c Modified: projects/sendfile/sys/kern/uipc_syscalls.c ============================================================================== --- projects/sendfile/sys/kern/uipc_syscalls.c Tue Mar 17 09:21:31 2015 (r280166) +++ projects/sendfile/sys/kern/uipc_syscalls.c Tue Mar 17 09:51:01 2015 (r280167) @@ -2192,8 +2192,8 @@ sendfile_swapin(vm_object_t obj, struct * * If calculated count yields in value greater than npages, * then we are doing optional readahead, and we need to grab - * and wire pages for it. Since readahead is optional, we - * prefer failure over sleep and thus say VM_ALLOC_NOWAIT. + * pages for it. Since readahead is optional, we prefer + * failure over sleep and thus say VM_ALLOC_NOWAIT. */ count = min(a + 1, npages + rhpages - i); for (j = npages; j < i + count; j++) {