Module Name: src
Committed By: ad
Date: Sat Dec 14 17:31:53 UTC 2019
Modified Files:
src/sys/uvm: uvm_page.h
Log Message:
Merge from yamt-pagecache: use radixtree for page lookup.
rbtree page lookup was introduced during the NetBSD 5.0 development cycle to
bypass lock contention problems with the (then) global page hash, and was a
temporary solution to allow us to make progress.radixtree is the intended
replacement.
Ok yamt@.
To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 src/sys/uvm/uvm_page.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_page.h
diff -u src/sys/uvm/uvm_page.h:1.85 src/sys/uvm/uvm_page.h:1.86
--- src/sys/uvm/uvm_page.h:1.85 Fri Dec 13 20:10:22 2019
+++ src/sys/uvm/uvm_page.h Sat Dec 14 17:31:53 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_page.h,v 1.85 2019/12/13 20:10:22 ad Exp $ */
+/* $NetBSD: uvm_page.h,v 1.86 2019/12/14 17:31:53 ad Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -67,8 +67,6 @@
#include <uvm/uvm_extern.h>
#include <uvm/uvm_pglist.h>
-#include <sys/rbtree.h>
-
/*
* Management of resident (logical) pages.
*
@@ -151,8 +149,6 @@
*/
struct vm_page {
- struct rb_node rb_node; /* o: tree of pages in obj */
-
union {
TAILQ_ENTRY(vm_page) queue; /* w: wired page queue
* or uvm_pglistalloc output */