Deleted Added
full compact
80c80
< __FBSDID("$FreeBSD: head/sys/vm/vm_page.c 235776 2012-05-22 07:04:23Z andrew $");
---
> __FBSDID("$FreeBSD: head/sys/vm/vm_page.c 237168 2012-06-16 18:56:19Z alc $");
933c933
< if (m->aflags & PGA_WRITEABLE)
---
> if (pmap_page_is_write_mapped(m))
2678c2678
< * PGA_WRITEABLE, then the page's dirty field cannot possibly be
---
> * write mapped, then the page's dirty field cannot possibly be
2682c2682
< if ((m->oflags & VPO_BUSY) == 0 && (m->aflags & PGA_WRITEABLE) == 0)
---
> if ((m->oflags & VPO_BUSY) == 0 && !pmap_page_is_write_mapped(m))