diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-05-30 16:29:47 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-05-30 16:29:47 +0000 |
commit | 66de9e9a78cffd1b9bd1cd1e2c73f1876dc2b0dc (patch) | |
tree | 7949f855f7df182b5af7fa866eb81eb6844447a6 /sys/uvm/uvm.h | |
parent | 3715d6ffc902bd0c3dbb29632eb8cbd7cd86605e (diff) |
remove lots of comments about locking per beck's request
Diffstat (limited to 'sys/uvm/uvm.h')
-rw-r--r-- | sys/uvm/uvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm.h b/sys/uvm/uvm.h index 5a68492a528..4f2810ae702 100644 --- a/sys/uvm/uvm.h +++ b/sys/uvm/uvm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm.h,v 1.49 2013/05/30 15:17:59 tedu Exp $ */ +/* $OpenBSD: uvm.h,v 1.50 2013/05/30 16:29:46 tedu Exp $ */ /* $NetBSD: uvm.h,v 1.24 2000/11/27 08:40:02 chs Exp $ */ /* @@ -79,7 +79,7 @@ struct uvm { struct pglist page_active; /* allocated pages, in use */ struct pglist page_inactive_swp;/* pages inactive (reclaim or free) */ struct pglist page_inactive_obj;/* pages inactive (reclaim or free) */ - /* Lock order: object lock, pageqlock, then fpageqlock. */ + /* Lock order: pageqlock, then fpageqlock. */ struct mutex fpageqlock; /* lock for free page q + pdaemon */ boolean_t page_init_done; /* TRUE if uvm_page_init() finished */ boolean_t page_idle_zero; /* TRUE if we should try to zero |