Module Name:    src
Committed By:   pooka
Date:           Thu Dec  3 12:52:42 UTC 2009

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

Log Message:
Call spec_init() to avoid device open lossage.


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 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.39 src/sys/rump/librump/rumpvfs/rump_vfs.c:1.40
--- src/sys/rump/librump/rumpvfs/rump_vfs.c:1.39	Thu Dec  3 12:35:35 2009
+++ src/sys/rump/librump/rumpvfs/rump_vfs.c	Thu Dec  3 12:52:42 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_vfs.c,v 1.39 2009/12/03 12:35:35 pooka Exp $	*/
+/*	$NetBSD: rump_vfs.c,v 1.40 2009/12/03 12:52:42 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.39 2009/12/03 12:35:35 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.40 2009/12/03 12:52:42 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -100,6 +100,7 @@
 	wapbl_init();
 	cwd_sys_init();
 	lf_init();
+	spec_init();
 
 	if (rump_threads) {
 		if ((rv = kthread_create(PRI_BIO, KTHREAD_MPSAFE, NULL,

Reply via email to