Module Name:    src
Committed By:   ad
Date:           Sun Apr 19 14:04:52 UTC 2009

Modified Files:
        src/sys/kern: init_main.c

Log Message:
call rw_obj_init()


To generate a diff of this commit:
cvs rdiff -u -r1.388 -r1.389 src/sys/kern/init_main.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/kern/init_main.c
diff -u src/sys/kern/init_main.c:1.388 src/sys/kern/init_main.c:1.389
--- src/sys/kern/init_main.c:1.388	Tue Apr  7 10:49:54 2009
+++ src/sys/kern/init_main.c	Sun Apr 19 14:04:51 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: init_main.c,v 1.388 2009/04/07 10:49:54 tsutsui Exp $	*/
+/*	$NetBSD: init_main.c,v 1.389 2009/04/19 14:04:51 ad Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_main.c,v 1.388 2009/04/07 10:49:54 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_main.c,v 1.389 2009/04/19 14:04:51 ad Exp $");
 
 #include "opt_ddb.h"
 #include "opt_ipsec.h"
@@ -308,6 +308,7 @@
 
 	/* Initialize lock caches. */
 	mutex_obj_init();
+	rw_obj_init();
 
 	/* Initialize the extent manager. */
 	extent_init();

Reply via email to