Module Name:    src
Committed By:   pgoyette
Date:           Mon Aug 23 14:00:40 UTC 2010

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

Log Message:
Initialize the new kernconfig_lock for rump kernels before it can be used.

Should fix the rather massive breakage in the automated test runs, too.
Sorry for breaking rump.


To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.181 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.180 src/sys/rump/librump/rumpkern/rump.c:1.181
--- src/sys/rump/librump/rumpkern/rump.c:1.180	Sun Jul 11 11:37:24 2010
+++ src/sys/rump/librump/rumpkern/rump.c	Mon Aug 23 14:00:40 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump.c,v 1.180 2010/07/11 11:37:24 pooka Exp $	*/
+/*	$NetBSD: rump.c,v 1.181 2010/08/23 14:00:40 pgoyette 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.180 2010/07/11 11:37:24 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.181 2010/08/23 14:00:40 pgoyette Exp $");
 
 #include <sys/systm.h>
 #define ELFSIZE ARCH_ELFSIZE
@@ -286,6 +286,7 @@
 	evcnt_init();
 
 	once_init();
+	kernconfig_lock_init();
 	prop_kern_init();
 
 	pool_subsystem_init();

Reply via email to