Module Name: src Committed By: christos Date: Fri Mar 29 02:09:14 UTC 2019
Modified Files: src/sys/rump/librump/rumpkern: rump.c Log Message: fix the build (pnbuf_cache move to vfs_init.c) To generate a diff of this commit: cvs rdiff -u -r1.332 -r1.333 src/sys/rump/librump/rumpkern/rump.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/rumpkern/rump.c diff -u src/sys/rump/librump/rumpkern/rump.c:1.332 src/sys/rump/librump/rumpkern/rump.c:1.333 --- src/sys/rump/librump/rumpkern/rump.c:1.332 Wed Dec 26 17:16:27 2018 +++ src/sys/rump/librump/rumpkern/rump.c Thu Mar 28 22:09:14 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.332 2018/12/26 22:16:27 thorpej Exp $ */ +/* $NetBSD: rump.c,v 1.333 2019/03/29 02:09:14 christos Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.332 2018/12/26 22:16:27 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.333 2019/03/29 02:09:14 christos Exp $"); #include <sys/systm.h> #define ELFSIZE ARCH_ELFSIZE @@ -112,6 +112,8 @@ static char rump_msgbuf[16*1024] __alig bool rump_ttycomponent = false; +pool_cache_t pnbuf_cache; + static void rump_aiodone_worker(struct work *wk, void *dummy) {