diff options
author | 2006-11-17 11:50:09 +0000 | |
---|---|---|
committer | 2006-11-17 11:50:09 +0000 | |
commit | 53647613a853c1043e82543e0df1a65eb3d8be8a (patch) | |
tree | 1e9e3e9dd679fe8c496b35310a095036c15e0972 /sys/kern/subr_pool.c | |
parent | There is no need to set IN_CHANGE or IN_UPDATE when no on-disk data is (diff) | |
download | wireguard-openbsd-53647613a853c1043e82543e0df1a65eb3d8be8a.tar.xz wireguard-openbsd-53647613a853c1043e82543e0df1a65eb3d8be8a.zip |
typos from bret lambert;
Diffstat (limited to 'sys/kern/subr_pool.c')
-rw-r--r-- | sys/kern/subr_pool.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c index be0fcbc3bb4..c92d4f7b447 100644 --- a/sys/kern/subr_pool.c +++ b/sys/kern/subr_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_pool.c,v 1.47 2006/05/20 18:29:23 mickey Exp $ */ +/* $OpenBSD: subr_pool.c,v 1.48 2006/11/17 11:50:09 jmc Exp $ */ /* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */ /*- @@ -109,7 +109,7 @@ struct pool_item { ((pp)->pr_nitems < (pp)->pr_minitems) /* - * Every pool get a unique serial number assigned to it. If this counter + * Every pool gets a unique serial number assigned to it. If this counter * wraps, we're screwed, but we shouldn't create so many pools anyway. */ unsigned int pool_serial; @@ -539,7 +539,7 @@ pool_init(struct pool *pp, size_t size, u_int align, u_int ioff, int flags, } /* - * De-commision a pool resource. + * Decommission a pool resource. */ void pool_destroy(struct pool *pp) @@ -1871,7 +1871,7 @@ pool_cache_reclaim(struct pool_cache *pc) * We have three different sysctls. * kern.pool.npools - the number of pools. * kern.pool.pool.<pool#> - the pool struct for the pool#. - * kern.pool.name.<pool#> - the name for pool#.[6~ + * kern.pool.name.<pool#> - the name for pool#. */ int sysctl_dopool(int *name, u_int namelen, char *where, size_t *sizep) |