From 4a95082051018df2651eb390c7d85c5fb308951d Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Tue, 5 Mar 2013 13:39:42 -0800 Subject: [PATCH] Refresh of xfer-cnt --- examples/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/common.c b/examples/common.c index 4eb5bbec..54339d5c 100644 --- a/examples/common.c +++ b/examples/common.c @@ -118,13 +118,13 @@ void cnt_str(char *str, size_t ssize, long long cnt) int size_to_count(int size) { if (size >= (1 << 20)) - return 100; + return 250; else if (size >= (1 << 16)) return 1000; else if (size >= (1 << 10)) return 10000; else - return 100000; + return 25000; } void format_buf(void *buf, int size) -- 2.41.0