kern: Fix a typo in a source code comment

- s/explicity/explicitly/

(cherry picked from commit 15ce9a0544e9d850fb332b4bae3313ff38584d61)
This commit is contained in:
Gordon Bergling 2024-12-28 07:39:50 +01:00
parent 07afd89912
commit 13bd8f0111

View file

@ -367,7 +367,7 @@ proc_rwmem(struct proc *p, struct uio *uio)
/*
* If we are writing, then we request vm_fault() to create a private
* copy of each page. Since these copies will not be writeable by the
* process, we must explicity request that they be dirtied.
* process, we must explicitly request that they be dirtied.
*/
writing = uio->uio_rw == UIO_WRITE;
reqprot = writing ? VM_PROT_COPY | VM_PROT_READ : VM_PROT_READ;