diff --git a/sys/rump/librump/rumpkern/vm.c b/sys/rump/librump/rumpkern/vm.c index 417c48d12845..32a9c084b9fc 100644 --- a/sys/rump/librump/rumpkern/vm.c +++ b/sys/rump/librump/rumpkern/vm.c @@ -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 -__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 #include @@ -894,6 +894,12 @@ uvmpdpol_anfree(struct vm_anon *an) /* nada */ } +kmutex_t * +uvmpd_trylockowner(struct vm_page *pg) +{ + return NULL; +} + /* * Physical address accessors. */