Module Name: src Committed By: pgoyette Date: Wed Nov 16 23:24:47 UTC 2016
Modified Files: src/sys/rump/librump/rumpvfs: rump_vfs.c Log Message: Initialize the bufq stuff for rump, too. This should fix the large number of tests that recently started to fail. To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 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.84 src/sys/rump/librump/rumpvfs/rump_vfs.c:1.85 --- src/sys/rump/librump/rumpvfs/rump_vfs.c:1.84 Tue Jan 26 23:12:18 2016 +++ src/sys/rump/librump/rumpvfs/rump_vfs.c Wed Nov 16 23:24:47 2016 @@ -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 @@ __KERNEL_RCSID(0, "$NetBSD: rump_vfs.c,v #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 @@ RUMP_COMPONENT(RUMP__FACTION_VFS) bufpages = rump_physmemlimit / (20 * PAGE_SIZE); } + bufq_init(); vfsinit(); bufinit(); cwd_sys_init();