Module Name: src Committed By: riastradh Date: Sat Oct 28 19:19:10 UTC 2017
Modified Files: src/sys/sys: pool.h Log Message: Define the new flag too for previous commit. XXX pullup-8 XXX pullup-7 XXX pullup-6 XXX pullup-5... To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 src/sys/sys/pool.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/pool.h diff -u src/sys/sys/pool.h:1.79 src/sys/sys/pool.h:1.80 --- src/sys/sys/pool.h:1.79 Wed Jul 29 00:10:25 2015 +++ src/sys/sys/pool.h Sat Oct 28 19:19:10 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: pool.h,v 1.79 2015/07/29 00:10:25 christos Exp $ */ +/* $NetBSD: pool.h,v 1.80 2017/10/28 19:19:10 riastradh Exp $ */ /*- * Copyright (c) 1997, 1998, 1999, 2000, 2007 The NetBSD Foundation, Inc. @@ -147,6 +147,7 @@ struct pool { #define PR_NOTOUCH 0x400 /* don't use free items to keep internal state*/ #define PR_NOALIGN 0x800 /* don't assume backend alignment */ #define PR_LARGECACHE 0x1000 /* use large cache groups */ +#define PR_GROWING 0x2000 /* pool_grow in progress */ /* * `pr_lock' protects the pool's data structures when removing