Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern fix comment
details: https://anonhg.NetBSD.org/src/rev/8717f30d94c2
branches: trunk
changeset: 358664:8717f30d94c2
user: para <para%NetBSD.org@localhost>
date: Fri Jan 12 18:54:37 2018 +0000
description:
fix comment
pool stats are listed 'vmstat -m' not 'vmstat -i'
diffstat:
sys/kern/subr_pool.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r df675f08d3ef -r 8717f30d94c2 sys/kern/subr_pool.c
--- a/sys/kern/subr_pool.c Fri Jan 12 18:22:35 2018 +0000
+++ b/sys/kern/subr_pool.c Fri Jan 12 18:54:37 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_pool.c,v 1.220 2017/12/29 16:13:26 christos Exp $ */
+/* $NetBSD: subr_pool.c,v 1.221 2018/01/12 18:54:37 para Exp $ */
/*-
* Copyright (c) 1997, 1999, 2000, 2002, 2007, 2008, 2010, 2014, 2015
@@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.220 2017/12/29 16:13:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.221 2018/01/12 18:54:37 para Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@@ -71,7 +71,7 @@
* an internal pool of page headers (`phpool').
*/
-/* List of all pools. Non static as needed by 'vmstat -i' */
+/* List of all pools. Non static as needed by 'vmstat -m' */
TAILQ_HEAD(, pool) pool_head = TAILQ_HEAD_INITIALIZER(pool_head);
/* Private pool for page header structures */
Home |
Main Index |
Thread Index |
Old Index