Module Name:    src
Committed By:   hannken
Date:           Sun Jun 19 11:22:42 UTC 2011

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

Log Message:
Add a noop wrapper for ubc_purge() to make file system tests work again.

Not really sure if this is the right way -- Antti?


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/rump/librump/rumpvfs/vm_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/vm_vfs.c
diff -u src/sys/rump/librump/rumpvfs/vm_vfs.c:1.30 src/sys/rump/librump/rumpvfs/vm_vfs.c:1.31
--- src/sys/rump/librump/rumpvfs/vm_vfs.c:1.30	Thu Jun 16 09:21:03 2011
+++ src/sys/rump/librump/rumpvfs/vm_vfs.c	Sun Jun 19 11:22:42 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vm_vfs.c,v 1.30 2011/06/16 09:21:03 hannken Exp $	*/
+/*	$NetBSD: vm_vfs.c,v 1.31 2011/06/19 11:22:42 hannken Exp $	*/
 
 /*
  * Copyright (c) 2008-2011 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm_vfs.c,v 1.30 2011/06/16 09:21:03 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_vfs.c,v 1.31 2011/06/19 11:22:42 hannken Exp $");
 
 #include <sys/param.h>
 
@@ -233,3 +233,9 @@
 	kmem_free(pgs, pgalloc);
 	return rv;
 }
+
+void
+ubc_purge(struct uvm_object *uobj)
+{
+
+}

Reply via email to