Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/librump/rumpvfs Call spec_init() to avoid device op...



details:   https://anonhg.NetBSD.org/src/rev/e219948539f0
branches:  trunk
changeset: 749584:e219948539f0
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Dec 03 12:52:42 2009 +0000

description:
Call spec_init() to avoid device open lossage.

diffstat:

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

diffs (26 lines):

diff -r 0ab1bc871b10 -r e219948539f0 sys/rump/librump/rumpvfs/rump_vfs.c
--- a/sys/rump/librump/rumpvfs/rump_vfs.c       Thu Dec 03 12:44:57 2009 +0000
+++ b/sys/rump/librump/rumpvfs/rump_vfs.c       Thu Dec 03 12:52:42 2009 +0000
@@ -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,



Home | Main Index | Thread Index | Old Index