]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
refresh (create temporary patch)
authorSean Hefty <sean.hefty@intel.com>
Sun, 16 Dec 2012 01:58:43 +0000 (17:58 -0800)
committerSean Hefty <sean.hefty@intel.com>
Sun, 16 Dec 2012 01:58:43 +0000 (17:58 -0800)
meta
patches/refresh-temp [new file with mode: 0644]

diff --git a/meta b/meta
index 98388a1b06654956182292b92e97ef38bc3321be..d5d63e94a6d0ed2e44ad27a48a6ca7de2a3190c9 100644 (file)
--- a/meta
+++ b/meta
@@ -1,9 +1,10 @@
 Version: 1
-Previous: 5685af224e524ad013a1f4724ec340cc8bba1828
-Head: fc2c0185311b13fd8e9f46f5ff43e080917c4237
+Previous: b9364f11d0953b12ec5293720b571e07aeb253aa
+Head: 78c96ee3a6c30893360472ff00e3ddb1b21d40a3
 Applied:
   dsocket: 30a3a196b65c1c0637c01d0829f1ed00ba53225d
   udpong: fc2c0185311b13fd8e9f46f5ff43e080917c4237
+  refresh-temp: 78c96ee3a6c30893360472ff00e3ddb1b21d40a3
 Unapplied:
   test-udp: f6c78ad2a26f452cf166aff1baa7b76160bd8bf7
   iom-dbg: 88434072d07f8edc58f454ac954d78bd39441eed
diff --git a/patches/refresh-temp b/patches/refresh-temp
new file mode 100644 (file)
index 0000000..1a5e0d4
--- /dev/null
@@ -0,0 +1,30 @@
+Bottom: 0193ea3f86e40817c7a07fa255410a2807ce8df3
+Top:    ce7ef4114d141880b0e48f6f365c5c2c0dfd730c
+Author: Sean Hefty <sean.hefty@intel.com>
+Date:   2012-12-15 17:58:43 -0800
+
+Refresh of udpong
+
+---
+
+diff --git a/examples/udpong.c b/examples/udpong.c
+index af8deb9..d7d6962 100644
+--- a/examples/udpong.c
++++ b/examples/udpong.c
+@@ -132,7 +132,7 @@ static void init_latency_test(int size)
+       size_str(sstr, sizeof sstr, size);
+       snprintf(test_name, sizeof test_name, "%s_lat", sstr);
+       transfer_size = size;
+-      transfer_count = size_to_count(transfer_size) / 10;
++      transfer_count = 10;//size_to_count(transfer_size) / 10;
+       echo = 1;
+ }
+@@ -143,7 +143,7 @@ static void init_bandwidth_test(int size)
+       size_str(sstr, sizeof sstr, size);
+       snprintf(test_name, sizeof test_name, "%s_bw", sstr);
+       transfer_size = size;
+-      transfer_count = size_to_count(transfer_size);
++      transfer_count = 10;//size_to_count(transfer_size);
+       echo = 0;
+ }