From 3e95108c8e2c1e804f54d1512f83eb6eff90cc13 Mon Sep 17 00:00:00 2001 From: Aaron Carroll Date: Wed, 13 Feb 2008 18:46:40 +1100 Subject: [PATCH] btt: fix iostat interval default Change the default iostat interval from 1ns to 1s, which is the default implied by btt.1 and common sense. Signed-off-by: Aaron Carroll --- btt/iostat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btt/iostat.c b/btt/iostat.c index f46d572..e920c80 100644 --- a/btt/iostat.c +++ b/btt/iostat.c @@ -49,7 +49,7 @@ } while (0) __u64 last_start, iostat_last_stamp; -__u64 iostat_interval = 1; +__u64 iostat_interval = 1000000000; char *iostat_name = NULL; FILE *iostat_ofp = NULL; -- 2.25.1