From: Florian Forster Date: Tue, 4 Jun 2013 06:36:10 +0000 (+0200) Subject: zfs_arc plugin: Fix indentation. X-Git-Tag: collectd-5.4.0~29^2 X-Git-Url: https://git.tokkee.org/?p=collectd.git;a=commitdiff_plain;h=0e6248ffcaea42b5ea501035f92bedfaf983cad9 zfs_arc plugin: Fix indentation. --- diff --git a/src/zfs_arc.c b/src/zfs_arc.c index 6bf7daef..2edba6d1 100644 --- a/src/zfs_arc.c +++ b/src/zfs_arc.c @@ -160,16 +160,16 @@ static int za_read (void) za_read_gauge (ksp, "size", "cache_size", "arc"); za_read_gauge (ksp, "l2_size", "cache_size", "L2"); - /* Operations */ + /* Operations */ za_read_derive (ksp, "allocated","cache_operation", "allocated"); za_read_derive (ksp, "deleted", "cache_operation", "deleted"); za_read_derive (ksp, "stolen", "cache_operation", "stolen"); - /* Issue indicators */ - za_read_derive (ksp, "mutex_miss", "mutex_operations", "miss"); + /* Issue indicators */ + za_read_derive (ksp, "mutex_miss", "mutex_operations", "miss"); za_read_derive (ksp, "hash_collisions", "hash_collisions", ""); - /* Evictions */ + /* Evictions */ za_read_derive (ksp, "evict_l2_cached", "cache_eviction", "cached"); za_read_derive (ksp, "evict_l2_eligible", "cache_eviction", "eligible"); za_read_derive (ksp, "evict_l2_ineligible", "cache_eviction", "ineligible");