From e48395912095ece3057a0666f6a7a443e340cc8f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 8 Nov 2012 13:43:21 +0100 Subject: [PATCH] zipf: kill debug "generating series" messages Signed-off-by: Jens Axboe --- lib/zipf.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/zipf.c b/lib/zipf.c index c348c9c3..41e20554 100644 --- a/lib/zipf.c +++ b/lib/zipf.c @@ -18,12 +18,10 @@ static void zipf_update(struct zipf_state *zs) unsigned long to_gen; unsigned int i; - log_info("fio: generating zetan for theta=%f, ranges=%lu\n", zs->theta, zs->nranges); - /* * It can become very costly to generate long sequences. Just cap it at - * 10M max, that should be doable in 1-2s on even slow machines. Precision - * will take a slight hit, but nothing major. + * 10M max, that should be doable in 1-2s on even slow machines. + * Precision will take a slight hit, but nothing major. */ to_gen = min(zs->nranges, ZIPF_MAX_GEN); -- 2.25.1