Module Name: src
Committed By: christos
Date: Thu Sep 1 21:09:08 UTC 2011
Modified Files:
src/sys/rump/librump/rumpkern: vm.c
Log Message:
fix the build for rumpserver.
To generate a diff of this commit:
cvs rdiff -u -r1.117 -r1.118 src/sys/rump/librump/rumpkern/vm.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/vm.c
diff -u src/sys/rump/librump/rumpkern/vm.c:1.117 src/sys/rump/librump/rumpkern/vm.c:1.118
--- src/sys/rump/librump/rumpkern/vm.c:1.117 Sun Jun 19 14:29:25 2011
+++ src/sys/rump/librump/rumpkern/vm.c Thu Sep 1 17:09:07 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: vm.c,v 1.117 2011/06/19 18:29:25 hannken Exp $ */
+/* $NetBSD: vm.c,v 1.118 2011/09/01 21:09:07 christos Exp $ */
/*
* Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.117 2011/06/19 18:29:25 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.118 2011/09/01 21:09:07 christos Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -894,6 +894,12 @@
/* nada */
}
+kmutex_t *
+uvmpd_trylockowner(struct vm_page *pg)
+{
+ return NULL;
+}
+
/*
* Physical address accessors.
*/