summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_bio.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2010-06-02 15:46:37 +0000
committeralc <alc@FreeBSD.org>2010-06-02 15:46:37 +0000
commit24ac89cf14c282421af2638eaf20a08c0649ab78 (patch)
tree7da5c63c04fad0ef79b4758aad12c540642e9863 /sys/kern/vfs_bio.c
parentb16b48273ab37f4a59084d43d95bb66e8434c813 (diff)
downloadFreeBSD-src-24ac89cf14c282421af2638eaf20a08c0649ab78.zip
FreeBSD-src-24ac89cf14c282421af2638eaf20a08c0649ab78.tar.gz
Minimize the use of the page queues lock for synchronizing access to the
page's dirty field. With the exception of one case, access to this field is now synchronized by the object lock.
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r--sys/kern/vfs_bio.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index efdb77d..bbced87 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -3630,7 +3630,6 @@ vfs_clean_pages(struct buf *bp)
KASSERT(bp->b_offset != NOOFFSET,
("vfs_clean_pages: no buffer offset"));
VM_OBJECT_LOCK(bp->b_bufobj->bo_object);
- vm_page_lock_queues();
for (i = 0; i < bp->b_npages; i++) {
m = bp->b_pages[i];
noff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK;
@@ -3642,7 +3641,6 @@ vfs_clean_pages(struct buf *bp)
/* vm_page_clear_dirty(m, foff & PAGE_MASK, eoff - foff); */
foff = noff;
}
- vm_page_unlock_queues();
VM_OBJECT_UNLOCK(bp->b_bufobj->bo_object);
}
OpenPOWER on IntegriCloud