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 Initialize the bufq stuff for rump, ...



details:   https://anonhg.NetBSD.org/src/rev/43c6a19fb6ad
branches:  trunk
changeset: 348941:43c6a19fb6ad
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Nov 16 23:24:47 2016 +0000

description:
Initialize the bufq stuff for rump, too.

This should fix the large number of tests that recently started to fail.

diffstat:

 sys/rump/librump/rumpvfs/rump_vfs.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r 070a6f402185 -r 43c6a19fb6ad sys/rump/librump/rumpvfs/rump_vfs.c
--- a/sys/rump/librump/rumpvfs/rump_vfs.c       Wed Nov 16 22:05:19 2016 +0000
+++ b/sys/rump/librump/rumpvfs/rump_vfs.c       Wed Nov 16 23:24:47 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rump_vfs.c,v 1.84 2016/01/26 23:12:18 pooka Exp $      */
+/*     $NetBSD: rump_vfs.c,v 1.85 2016/11/16 23:24:47 pgoyette 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.84 2016/01/26 23:12:18 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v 1.85 2016/11/16 23:24:47 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -47,6 +47,7 @@
 #include <sys/vfs_syscalls.h>
 #include <sys/vnode.h>
 #include <sys/wapbl.h>
+#include <sys/bufq.h>
 
 #include <miscfs/specfs/specdev.h>
 
@@ -120,6 +121,7 @@
                bufpages = rump_physmemlimit / (20 * PAGE_SIZE);
        }
 
+       bufq_init();
        vfsinit();
        bufinit();
        cwd_sys_init();



Home | Main Index | Thread Index | Old Index