svn commit: r280167 - projects/sendfile/sys/kern
Gleb Smirnoff
glebius at FreeBSD.org
Tue Mar 17 09:51:03 UTC 2015
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++) {
More information about the svn-src-projects
mailing list