Module Name: src
Committed By: pooka
Date: Thu Nov 26 17:36:22 UTC 2009
Modified Files:
src/sys/rump/librump/rumpkern: rump.c
Log Message:
remember to call pipe_init()
To generate a diff of this commit:
cvs rdiff -u -r1.138 -r1.139 src/sys/rump/librump/rumpkern/rump.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/rumpkern/rump.c
diff -u src/sys/rump/librump/rumpkern/rump.c:1.138 src/sys/rump/librump/rumpkern/rump.c:1.139
--- src/sys/rump/librump/rumpkern/rump.c:1.138 Thu Nov 26 09:50:38 2009
+++ src/sys/rump/librump/rumpkern/rump.c Thu Nov 26 17:36:22 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.c,v 1.138 2009/11/26 09:50:38 pooka Exp $ */
+/* $NetBSD: rump.c,v 1.139 2009/11/26 17:36:22 pooka 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.138 2009/11/26 09:50:38 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.139 2009/11/26 17:36:22 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -50,6 +50,7 @@
#include <sys/module.h>
#include <sys/once.h>
#include <sys/percpu.h>
+#include <sys/pipe.h>
#include <sys/queue.h>
#include <sys/reboot.h>
#include <sys/resourcevar.h>
@@ -282,6 +283,7 @@
module_init();
softint_init(rump_cpu);
devsw_init();
+ pipe_init();
/* these do nothing if not present */
rump_vfs_init();