Module Name:    src
Committed By:   pooka
Date:           Thu Jan  6 10:20:57 UTC 2011

Modified Files:
        src/sys/rump/librump/rumpvfs: rump_vfs.c

Log Message:
cwdi0 lock is now initialized in proc0_init()


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/rump/librump/rumpvfs/rump_vfs.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/rumpvfs/rump_vfs.c
diff -u src/sys/rump/librump/rumpvfs/rump_vfs.c:1.63 src/sys/rump/librump/rumpvfs/rump_vfs.c:1.64
--- src/sys/rump/librump/rumpvfs/rump_vfs.c:1.63	Tue Nov 30 15:41:35 2010
+++ src/sys/rump/librump/rumpvfs/rump_vfs.c	Thu Jan  6 10:20:57 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_vfs.c,v 1.63 2010/11/30 15:41:35 pooka Exp $	*/
+/*	$NetBSD: rump_vfs.c,v 1.64 2011/01/06 10:20:57 pooka Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.63 2010/11/30 15:41:35 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.64 2011/01/06 10:20:57 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -118,7 +118,6 @@
 	root_device = &rump_rootdev;
 
 	/* bootstrap cwdi (rest done in vfs_mountroot() */
-	rw_init(&cwdi0.cwdi_lock);
 	proc0.p_cwdi = &cwdi0;
 	proc0.p_cwdi = cwdinit();
 

Reply via email to