Date: Fri, 17 May 2019 21:18:12 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r347946 - head/sys/kern Message-ID: <201905172118.x4HLIC4N091288@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905172118.x4HLIC4N091288>