Module Name: src
Committed By: pooka
Date: Sat May 1 14:46:32 UTC 2010
Modified Files:
src/sys/rump/librump/rumpvfs: rump_vfs.c
Log Message:
cleanup non-used code (superceded by rump_printevcnts)
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 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.48 src/sys/rump/librump/rumpvfs/rump_vfs.c:1.49
--- src/sys/rump/librump/rumpvfs/rump_vfs.c:1.48 Fri Apr 30 21:02:36 2010
+++ src/sys/rump/librump/rumpvfs/rump_vfs.c Sat May 1 14:46:32 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: rump_vfs.c,v 1.48 2010/04/30 21:02:36 pooka Exp $ */
+/* $NetBSD: rump_vfs.c,v 1.49 2010/05/01 14:46:32 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.48 2010/04/30 21:02:36 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.49 2010/05/01 14:46:32 pooka Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@@ -364,13 +364,6 @@
int
rump_vfs_unmount(struct mount *mp, int mntflags)
{
-#if 0
- struct evcnt *ev;
-
- printf("event counters:\n");
- TAILQ_FOREACH(ev, &allevents, ev_list)
- printf("%s: %llu\n", ev->ev_name, ev->ev_count);
-#endif
return VFS_UNMOUNT(mp, mntflags);
}