zipf: kill debug "generating series" messages
authorJens Axboe <axboe@kernel.dk>
Thu, 8 Nov 2012 12:43:21 +0000 (13:43 +0100)
committerJens Axboe <axboe@kernel.dk>
Thu, 8 Nov 2012 12:43:21 +0000 (13:43 +0100)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
lib/zipf.c

index c348c9c3fd5cbac2eb2985092157a4e29dd72902..41e20554b3d019885ed76c9fbe9b66183c4100cf 100644 (file)
@@ -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);