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) {
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to