From: Sean Hefty Date: Tue, 5 Mar 2013 21:39:42 +0000 (-0800) Subject: Refresh of xfer-cnt X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4a95082051018df2651eb390c7d85c5fb308951d;p=~shefty%2Flibrdmacm.git Refresh of xfer-cnt --- 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)