summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2014-06-16 18:15:27 +0000
committerattilio <attilio@FreeBSD.org>2014-06-16 18:15:27 +0000
commit2802c525ad1ace89e32dfadc6121f67fcdd9132f (patch)
tree84adf2de9d1ba827bc45bbdc6f1e76f230319e94 /sys/dev/drm
parent4b840db0c44a4742d5d824c47328d0b1c89de43b (diff)
downloadFreeBSD-src-2802c525ad1ace89e32dfadc6121f67fcdd9132f.zip
FreeBSD-src-2802c525ad1ace89e32dfadc6121f67fcdd9132f.tar.gz
- Modify vm_page_unwire() and vm_page_enqueue() to directly accept
the queue where to enqueue pages that are going to be unwired. - Add stronger checks to the enqueue/dequeue for the pagequeues when adding and removing pages to them. Of course, for unmanaged pages the queue parameter of vm_page_unwire() will be ignored, just as the active parameter today. This makes adding new pagequeues quicker. This change effectively modifies the KPI. __FreeBSD_version will be, however, bumped just when the full cache of free pages will be evicted. Sponsored by: EMC / Isilon storage division Reviewed by: alc Tested by: pho
Diffstat (limited to 'sys/dev/drm')
-rw-r--r--sys/dev/drm/via_dmablit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/drm/via_dmablit.c b/sys/dev/drm/via_dmablit.c
index 70ba9d9..e8096f2 100644
--- a/sys/dev/drm/via_dmablit.c
+++ b/sys/dev/drm/via_dmablit.c
@@ -179,7 +179,7 @@ via_free_sg_info(drm_via_sg_info_t *vsg)
for (i=0; i < vsg->num_pages; ++i) {
page = vsg->pages[i];
vm_page_lock(page);
- vm_page_unwire(page, 0);
+ vm_page_unwire(page, PQ_INACTIVE);
vm_page_unlock(page);
}
case dr_via_pages_alloc:
OpenPOWER on IntegriCloud