Module Name:    src
Committed By:   pooka
Date:           Sun Sep 13 19:09:13 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpkern: rump.c

Log Message:
call prop_kern_init()


To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 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.113 src/sys/rump/librump/rumpkern/rump.c:1.114
--- src/sys/rump/librump/rumpkern/rump.c:1.113	Tue Sep  8 20:10:44 2009
+++ src/sys/rump/librump/rumpkern/rump.c	Sun Sep 13 19:09:13 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump.c,v 1.113 2009/09/08 20:10:44 pooka Exp $	*/
+/*	$NetBSD: rump.c,v 1.114 2009/09/13 19:09:13 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.113 2009/09/08 20:10:44 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.114 2009/09/13 19:09:13 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -62,6 +62,8 @@
 
 #include <secmodel/secmodel.h>
 
+#include <prop/proplib.h>
+
 #include "rump_private.h"
 #include "rump_net_private.h"
 #include "rump_vfs_private.h"
@@ -207,6 +209,7 @@
 	evcnt_init();
 
 	once_init();
+	prop_kern_init();
 
 	rump_sleepers_init();
 

Reply via email to