Module Name: src Committed By: pooka Date: Thu Oct 15 00:34:06 UTC 2009
Modified Files: src/sys/rump/librump/rumpvfs: rump_vfs.c Log Message: rump_cpu is now a pointer To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 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.32 src/sys/rump/librump/rumpvfs/rump_vfs.c:1.33 --- src/sys/rump/librump/rumpvfs/rump_vfs.c:1.32 Wed Oct 14 18:18:53 2009 +++ src/sys/rump/librump/rumpvfs/rump_vfs.c Thu Oct 15 00:34:05 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: rump_vfs.c,v 1.32 2009/10/14 18:18:53 pooka Exp $ */ +/* $NetBSD: rump_vfs.c,v 1.33 2009/10/15 00:34:05 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.32 2009/10/14 18:18:53 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.33 2009/10/15 00:34:05 pooka Exp $"); #include <sys/param.h> #include <sys/buf.h> @@ -89,7 +89,7 @@ rumpblk_init(); - cache_cpu_init(&rump_cpu); + cache_cpu_init(rump_cpu); vfsinit(); bufinit(); wapbl_init();