Deleted Added
full compact
68c68
< * $FreeBSD: head/sys/vm/vm_pageout.c 61058 2000-05-29 02:31:55Z dillon $
---
> * $FreeBSD: head/sys/vm/vm_pageout.c 61081 2000-05-29 22:40:54Z dillon $
236c236
< * Don't mess with the page if it's busy.
---
> * Don't mess with the page if it's busy, held, or special
239c239
< ((m->busy != 0) || (m->flags & PG_BUSY)))
---
> ((m->busy != 0) || (m->flags & (PG_BUSY|PG_UNMANAGED)))) {
240a241
> }
282c283
< (p->flags & PG_BUSY) || p->busy) {
---
> (p->flags & (PG_BUSY|PG_UNMANAGED)) || p->busy) {
312c313
< (p->flags & PG_BUSY) || p->busy) {
---
> (p->flags & (PG_BUSY|PG_UNMANAGED)) || p->busy) {
477c478
< (p->flags & PG_BUSY) ||
---
> (p->flags & (PG_BUSY|PG_UNMANAGED)) ||
1050c1051,1054
< if ((m->flags & PG_BUSY) || m->busy || m->hold_count || m->wire_count) {
---
> if ((m->flags & (PG_BUSY|PG_UNMANAGED)) ||
> m->busy ||
> m->hold_count ||
> m->wire_count) {