Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump/rumpkern Initialize the new kernconfig_lock...



details:   https://anonhg.NetBSD.org/src/rev/ed7a573f57d4
branches:  trunk
changeset: 757282:ed7a573f57d4
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Aug 23 14:00:40 2010 +0000

description:
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.

diffstat:

 sys/rump/librump/rumpkern/rump.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 2375e15ca062 -r ed7a573f57d4 sys/rump/librump/rumpkern/rump.c
--- a/sys/rump/librump/rumpkern/rump.c  Mon Aug 23 10:49:27 2010 +0000
+++ b/sys/rump/librump/rumpkern/rump.c  Mon Aug 23 14:00:40 2010 +0000
@@ -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();



Home | Main Index | Thread Index | Old Index