Module Name:    src
Committed By:   pooka
Date:           Mon Oct 19 22:35:11 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpkern: rump.c

Log Message:
__weak_alias for uvm_readahead() since it's used also in sys_descrip.c


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 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.126 src/sys/rump/librump/rumpkern/rump.c:1.127
--- src/sys/rump/librump/rumpkern/rump.c:1.126	Fri Oct 16 00:14:53 2009
+++ src/sys/rump/librump/rumpkern/rump.c	Mon Oct 19 22:35:11 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump.c,v 1.126 2009/10/16 00:14:53 pooka Exp $	*/
+/*	$NetBSD: rump.c,v 1.127 2009/10/19 22:35:11 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.126 2009/10/16 00:14:53 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.127 2009/10/19 22:35:11 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -125,6 +125,7 @@
 
 __weak_alias(biodone,rump__unavailable);
 __weak_alias(sopoll,rump__unavailable);
+__weak_alias(uvm_readahead,rump__unavailable);
 
 void rump__unavailable_vfs_panic(void);
 void rump__unavailable_vfs_panic() {panic("vfs component not available");}

Reply via email to