Module Name:    src
Committed By:   pooka
Date:           Tue Jun  8 21:57:50 UTC 2010

Modified Files:
        src/sys/rump/librump/rumpvfs: rump_vfs.c

Log Message:
The previous revision worked brilliantly if all you wanted to test
was autoload *not* working with an alternate path.  This revision
make the code double as good in the sense that it now works also
in case you *do* want it to work.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/rump/librump/rumpvfs/rump_vfs.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/rumpvfs/rump_vfs.c
diff -u src/sys/rump/librump/rumpvfs/rump_vfs.c:1.53 src/sys/rump/librump/rumpvfs/rump_vfs.c:1.54
--- src/sys/rump/librump/rumpvfs/rump_vfs.c:1.53	Tue Jun  8 17:17:33 2010
+++ src/sys/rump/librump/rumpvfs/rump_vfs.c	Tue Jun  8 21:57:49 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_vfs.c,v 1.53 2010/06/08 17:17:33 pooka Exp $	*/
+/*	$NetBSD: rump_vfs.c,v 1.54 2010/06/08 21:57:49 pooka Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.53 2010/06/08 17:17:33 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.54 2010/06/08 21:57:49 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -153,7 +153,7 @@
 		mbase = module_base;
 
 	if (strlen(mbase) != 0 && *mbase != '0') {
-		rump_etfs_register(mbase, mbase, RUMP_ETFS_DIR_SUBDIRS);
+		rump_etfs_register(module_base, mbase, RUMP_ETFS_DIR_SUBDIRS);
 	}
 	}
 #endif

Reply via email to