Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/subr_pool.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/kern/subr_pool.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.60.2.3 retrieving revision 1.80 diff -u -p -r1.60.2.3 -r1.80 --- src/sys/kern/subr_pool.c 2002/09/06 08:48:04 1.60.2.3 +++ src/sys/kern/subr_pool.c 2002/09/27 15:37:46 1.80 @@ -1,4 +1,4 @@ -/* $NetBSD: subr_pool.c,v 1.60.2.3 2002/09/06 08:48:04 jdolecek Exp $ */ +/* $NetBSD: subr_pool.c,v 1.80 2002/09/27 15:37:46 provos Exp $ */ /*- * Copyright (c) 1997, 1999, 2000 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.60.2.3 2002/09/06 08:48:04 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.80 2002/09/27 15:37:46 provos Exp $"); #include "opt_pool.h" #include "opt_poollog.h" @@ -564,7 +564,7 @@ pool_destroy(struct pool *pp) #ifdef DIAGNOSTIC if (pp->pr_nout != 0) { pr_printlog(pp, NULL, printf); - panic("pool_destroy: pool busy: still out: %u\n", + panic("pool_destroy: pool busy: still out: %u", pp->pr_nout); } #endif @@ -715,7 +715,7 @@ pool_get(struct pool *pp, int flags) simple_unlock(&pp->pr_slock); printf("pool_get: %s: curpage NULL, nitems %u\n", pp->pr_wchan, pp->pr_nitems); - panic("pool_get: nitems inconsistent\n"); + panic("pool_get: nitems inconsistent"); } #endif @@ -785,7 +785,7 @@ pool_get(struct pool *pp, int flags) simple_unlock(&pp->pr_slock); printf("pool_get: %s: items on itemlist, nitems %u\n", pp->pr_wchan, pp->pr_nitems); - panic("pool_get: nitems inconsistent\n"); + panic("pool_get: nitems inconsistent"); } #endif