From: Sean Hefty Date: Tue, 16 Jul 2013 23:27:53 +0000 (-0700) Subject: delete X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f40a976bd8504620b746a62892f9025ee5174daf;p=~shefty%2Flibrdmacm.git delete --- diff --git a/meta b/meta index b4773d89..af7f0916 100644 --- a/meta +++ b/meta @@ -1,5 +1,5 @@ Version: 1 -Previous: 678fecb001bbbfac6a3a44fdcf61d410a7dd15cb +Previous: 4f432bb26d7636bf00cd0897c2370a53edceba0e Head: 8d7ff5ef8dd0af977baac97976103a7494c2f3e0 Applied: ex-ib: d71ebf70cf74111cfd5f0982d9abe6ec68fb38e3 @@ -18,7 +18,6 @@ Unapplied: seterr: 47eb0c419687c2690292c1910acae83a46e5388c clisvr: 0db572abcf3d78374a5ea0f91b709136948809cc af_ib_hack_loopback: e755d041f218772a8323936176c8f10e2024ae0f - xfer-cnt: 52a03dfbd23c1f257303d05c489041eb75ce76eb af-ib-conn: cf7b9e73d471477d4c7dff2592e5b0d3a7dea8ae addrtype: 23a84fed89ba3f6b0eb63e5f8b37c0df504d0d3e resv-rs-len: 7b6ff5c4894f54b221d877adcd709795dffb2fe9 diff --git a/patches/xfer-cnt b/patches/xfer-cnt deleted file mode 100644 index a14246da..00000000 --- a/patches/xfer-cnt +++ /dev/null @@ -1,37 +0,0 @@ -Bottom: 2737e70c64c9617bb741fff20192947019c4f7d9 -Top: 9e4d4d5be5d43c36c3a83ea2b8cb84c37e0312f3 -Author: Sean Hefty -Date: 2013-03-05 13:39:00 -0800 - -librdmacm/rstream: Adjust transfer counts - -A customer has reported that 100 transfers for large sizes -is insufficient to achieve the top bandwidth over a high -latency link. Contrary, 100,000 transfers is too high for -small latency ping-pong over a slow connection. - -Signed-off-by: Sean Hefty - - ---- - -diff --git a/examples/common.c b/examples/common.c -index 4eb5bbe..34f3af5 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 300; - else if (size >= (1 << 16)) - return 1000; - else if (size >= (1 << 10)) - return 10000; - else -- return 100000; -+ return 30000; - } - - void format_buf(void *buf, int size)