From: Florian Forster Date: Thu, 29 Nov 2012 06:58:25 +0000 (+0100) Subject: zfs_arc plugin: Fix the type used for mutex misses. X-Git-Tag: collectd-5.1.2~13 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=4d99b79f9a36e76a26cc39afa825d61d5676af08;p=collectd.git zfs_arc plugin: Fix the type used for mutex misses. Thanks to Yves Mettier for pointing this out! --- diff --git a/src/zfs_arc.c b/src/zfs_arc.c index 046b7b02..aa900193 100644 --- a/src/zfs_arc.c +++ b/src/zfs_arc.c @@ -128,7 +128,7 @@ static int za_read (void) za_read_derive (ksp, "stolen", "cache_operation", "stolen"); /* Issue indicators */ - za_read_derive (ksp, "mutex_miss", "mutex_operation", "miss"); + za_read_derive (ksp, "mutex_miss", "mutex_operations", "miss"); za_read_derive (ksp, "hash_collisions", "hash_collisions", ""); /* Evictions */