svn commit: r347946 - head/sys/kern

Konstantin Belousov kib at FreeBSD.org
Fri May 17 21:18:13 UTC 2019


Author: kib
Date: Fri May 17 21:18:11 2019
New Revision: 347946
URL: https://svnweb.freebsd.org/changeset/base/347946

Log:
  Grammar fixes for r347690.
  
  Submitted by:	alc
  MFC after:	3 days

Modified:
  head/sys/kern/imgact_elf.c

Modified: head/sys/kern/imgact_elf.c
==============================================================================
--- head/sys/kern/imgact_elf.c	Fri May 17 20:59:59 2019	(r347945)
+++ head/sys/kern/imgact_elf.c	Fri May 17 21:18:11 2019	(r347946)
@@ -936,13 +936,13 @@ __elfN(get_interp)(struct image_params *imgp, const El
 	if (phdr->p_offset > PAGE_SIZE ||
 	    interp_name_len > PAGE_SIZE - phdr->p_offset) {
 		/*
-		 * The vnode lock might be needed by pagedaemon to
+		 * The vnode lock might be needed by the pagedaemon to
 		 * clean pages owned by the vnode.  Do not allow sleep
 		 * waiting for memory with the vnode locked, instead
 		 * try non-sleepable allocation first, and if it
 		 * fails, go to the slow path were we drop the lock
-		 * and do M_WAITOK.  Text reference prevents
-		 * modifications of the vnode content.
+		 * and do M_WAITOK.  A text reference prevents
+		 * modifications to the vnode content.
 		 */
 		interp = malloc(interp_name_len + 1, M_TEMP, M_NOWAIT);
 		if (interp == NULL) {


More information about the svn-src-all mailing list