Module Name: src Committed By: pooka Date: Tue Nov 3 20:25:31 UTC 2009
Modified Files: src/sys/rump/librump/rumpkern: rump.c Log Message: Weak aliazeize usermount_common_policy() to uncouple rumpkern linkage from rumpvfs once again after the secmodel changes. (temp solution, should find a better one) To generate a diff of this commit: cvs rdiff -u -r1.131 -r1.132 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.131 src/sys/rump/librump/rumpkern/rump.c:1.132 --- src/sys/rump/librump/rumpkern/rump.c:1.131 Tue Nov 3 20:22:33 2009 +++ src/sys/rump/librump/rumpkern/rump.c Tue Nov 3 20:25:31 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.131 2009/11/03 20:22:33 pooka Exp $ */ +/* $NetBSD: rump.c,v 1.132 2009/11/03 20:25:31 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.131 2009/11/03 20:22:33 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.132 2009/11/03 20:25:31 pooka Exp $"); #include <sys/param.h> #include <sys/atomic.h> @@ -133,6 +133,7 @@ __weak_alias(vn_stat,rump__unavailable_vfs_panic); __weak_alias(vn_close,rump__unavailable_vfs_panic); __weak_alias(namei,rump__unavailable_vfs_panic); +__weak_alias(usermount_common_policy,rump__unavailable_vfs_panic); static void pvfsinit_nop(struct proc *p)