Module Name: src
Committed By: pooka
Date: Sun Mar 7 16:46:10 UTC 2010
Modified Files:
src/sys/rump/librump/rumpdev: rump_dev.c
Log Message:
pmf wants buf_syncwait() which is a part of optional vfs
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/rump/librump/rumpdev/rump_dev.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/rumpdev/rump_dev.c
diff -u src/sys/rump/librump/rumpdev/rump_dev.c:1.15 src/sys/rump/librump/rumpdev/rump_dev.c:1.16
--- src/sys/rump/librump/rumpdev/rump_dev.c:1.15 Mon Mar 1 13:12:20 2010
+++ src/sys/rump/librump/rumpdev/rump_dev.c Sun Mar 7 16:46:10 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: rump_dev.c,v 1.15 2010/03/01 13:12:20 pooka Exp $ */
+/* $NetBSD: rump_dev.c,v 1.16 2010/03/07 16:46:10 pooka Exp $ */
/*
* Copyright (c) 2009 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.15 2010/03/01 13:12:20 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.16 2010/03/07 16:46:10 pooka Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -37,6 +37,7 @@
void nocomponent(void);
void nocomponent() {}
__weak_alias(rump_device_components,nocomponent);
+__weak_alias(buf_syncwait,nullop);
const char *rootspec = "rump0a"; /* usually comes from config */