Module Name: src
Committed By: pooka
Date: Tue Nov 10 17:02:36 UTC 2009
Modified Files:
src/sys/rump/librump/rumpkern: rump.c
Log Message:
init uvm readahead
To generate a diff of this commit:
cvs rdiff -u -r1.135 -r1.136 src/sys/rump/librump/rumpkern/rump.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/rump.c
diff -u src/sys/rump/librump/rumpkern/rump.c:1.135 src/sys/rump/librump/rumpkern/rump.c:1.136
--- src/sys/rump/librump/rumpkern/rump.c:1.135 Fri Nov 6 15:22:33 2009
+++ src/sys/rump/librump/rumpkern/rump.c Tue Nov 10 17:02:36 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.c,v 1.135 2009/11/06 15:22:33 pooka Exp $ */
+/* $NetBSD: rump.c,v 1.136 2009/11/10 17:02:36 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.135 2009/11/06 15:22:33 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.136 2009/11/10 17:02:36 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -65,6 +65,8 @@
#include <prop/proplib.h>
+#include <uvm/uvm_readahead.h>
+
#include "rump_private.h"
#include "rump_net_private.h"
#include "rump_vfs_private.h"
@@ -230,6 +232,8 @@
pool_subsystem_init();
kmem_init();
+ uvm_ra_init();
+
mutex_obj_init();
kprintf_init();