summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2003-01-20 09:24:03 +0000
committeralc <alc@FreeBSD.org>2003-01-20 09:24:03 +0000
commit43a8628b32c6dbffadc0cd1ddba3f22fbad79f5c (patch)
treee463d5506b6cd99ef4f170f5b50d6261d0e3822f /sys/kern
parent3d94105a2503d1efd45d8a06f53a0efa630af67e (diff)
downloadFreeBSD-src-43a8628b32c6dbffadc0cd1ddba3f22fbad79f5c.zip
FreeBSD-src-43a8628b32c6dbffadc0cd1ddba3f22fbad79f5c.tar.gz
- Hold the page queues lock around vm_page_hold().
- Assert that the page queues lock rather than Giant is held in vm_page_hold().
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_bio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index 1f1914c..b8a156c 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -3579,7 +3579,9 @@ vmapbuf(struct buf *bp)
if (pa == 0)
panic("vmapbuf: page not present");
m = PHYS_TO_VM_PAGE(pa);
+ vm_page_lock_queues();
vm_page_hold(m);
+ vm_page_unlock_queues();
bp->b_pages[pidx] = m;
}
if (pidx > btoc(MAXPHYS))
OpenPOWER on IntegriCloud