Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Mar 2015 09:51:02 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r280167 - projects/sendfile/sys/kern
Message-ID:  <201503170951.t2H9p2Mj093666@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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++) {



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