Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump/rumpvfs Add a noop wrapper for ubc_purge() ...



details:   https://anonhg.NetBSD.org/src/rev/06d5a6556337
branches:  trunk
changeset: 766249:06d5a6556337
user:      hannken <hannken%NetBSD.org@localhost>
date:      Sun Jun 19 11:22:42 2011 +0000

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

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

diffstat:

 sys/rump/librump/rumpvfs/vm_vfs.c |  10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r 4447b68ddd1f -r 06d5a6556337 sys/rump/librump/rumpvfs/vm_vfs.c
--- a/sys/rump/librump/rumpvfs/vm_vfs.c Sun Jun 19 10:52:08 2011 +0000
+++ b/sys/rump/librump/rumpvfs/vm_vfs.c Sun Jun 19 11:22:42 2011 +0000
@@ -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)
+{
+
+}



Home | Main Index | Thread Index | Old Index