Date: Tue, 28 Dec 2010 20:02:30 +0000 (UTC) From: Alan Cox <alc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r216772 - head/sys/vm Message-ID: <201012282002.oBSK2UtD075596@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: alc Date: Tue Dec 28 20:02:30 2010 New Revision: 216772 URL: http://svn.freebsd.org/changeset/base/216772 Log: Correct a typo in vm_fault_quick_hold_pages(). Reported by: Bartosz Stec Modified: head/sys/vm/vm_fault.c Modified: head/sys/vm/vm_fault.c ============================================================================== --- head/sys/vm/vm_fault.c Tue Dec 28 19:26:57 2010 (r216771) +++ head/sys/vm/vm_fault.c Tue Dec 28 20:02:30 2010 (r216772) @@ -1084,7 +1084,7 @@ vm_fault_quick_hold_pages(vm_map_t map, if (*mp == NULL) pmap_failed = TRUE; else if ((prot & VM_PROT_WRITE) != 0 && - (*ma)->dirty != VM_PAGE_BITS_ALL) { + (*mp)->dirty != VM_PAGE_BITS_ALL) { /* * Explicitly dirty the physical page. Otherwise, the * caller's changes may go unnoticed because they are
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012282002.oBSK2UtD075596>