From d1cd9d97080f0f74739fbfa37d4e1341c75053d1 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Sat, 19 Feb 2005 00:47:03 +0000 Subject: [PATCH] Call the "cluster_save buffer" type just "cluster_save", it doesn't fit the type column in vmstat -m output. --- sys/kern/vfs_cluster.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index f6f60307da..fd6fa35ea5 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -34,7 +34,7 @@ * * @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94 * $FreeBSD: src/sys/kern/vfs_cluster.c,v 1.92.2.9 2001/11/18 07:10:59 dillon Exp $ - * $DragonFly: src/sys/kern/vfs_cluster.c,v 1.11 2004/07/14 03:10:17 hmp Exp $ + * $DragonFly: src/sys/kern/vfs_cluster.c,v 1.12 2005/02/19 00:47:03 joerg Exp $ */ #include "opt_debug_cluster.h" @@ -62,7 +62,7 @@ static int rcluster= 0; SYSCTL_INT(_debug, OID_AUTO, rcluster, CTLFLAG_RW, &rcluster, 0, ""); #endif -static MALLOC_DEFINE(M_SEGMENT, "cluster_save buffer", "cluster_save buffer"); +static MALLOC_DEFINE(M_SEGMENT, "cluster_save", "cluster_save buffer"); static struct cluster_save * cluster_collectbufs (struct vnode *vp, struct buf *last_bp); -- 2.41.0