Grammar fixes for r347690.

Submitted by:	alc
MFC after:	3 days
This commit is contained in:
kib 2019-05-17 21:18:11 +00:00
parent 47a17ec01a
commit a2f4dfb45b

View File

@ -936,13 +936,13 @@ __elfN(get_interp)(struct image_params *imgp, const Elf_Phdr *phdr,
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) {