From: Sean Hefty Date: Thu, 17 May 2012 19:17:16 +0000 (-0700) Subject: refresh (create temporary patch) X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=6f9acbbecb80d67ea0eaed1437df6ee74de700c5;p=~shefty%2Flibrdmacm.git refresh (create temporary patch) --- diff --git a/meta b/meta index b26fc827..77ef185f 100644 --- a/meta +++ b/meta @@ -1,6 +1,6 @@ Version: 1 -Previous: b93748286eec8422b51298f9f9aaed4ade7b5498 -Head: 4c0e84b7d7a3298fe7d1d07eaf426cdf42100d67 +Previous: 36614b403df1fa003d0b8d9432be01217740e2b3 +Head: 66beec1c36ac85d0ee954acc4c537a6108db3ed8 Applied: reuseaddr: 5ce7d9c48d082fd1959918e9134f4bdd85c402d9 rs-nodelay: c7515656281368210d75c103cc68c131511debf6 @@ -9,5 +9,6 @@ Applied: rs-async-nonblock: 8cea41290e9c701beaa780fd2f412060916ca269 rs-group-tests: f484de0b80b9369ad12c6b5628bb49a51dfc4ef0 rs-fulltest: 4c0e84b7d7a3298fe7d1d07eaf426cdf42100d67 + refresh-temp: 66beec1c36ac85d0ee954acc4c537a6108db3ed8 Unapplied: Hidden: diff --git a/patches/refresh-temp b/patches/refresh-temp new file mode 100644 index 00000000..3a897c85 --- /dev/null +++ b/patches/refresh-temp @@ -0,0 +1,46 @@ +Bottom: 070f92a593aea528dcae7a68d42159b016d77109 +Top: a069666dc428f246f9dc954bdb50553367794189 +Author: Sean Hefty +Date: 2012-05-17 12:17:16 -0700 + +Refresh of rs-fulltest + +--- + +diff --git a/examples/rstream.c b/examples/rstream.c +index cb65911..104b318 100644 +--- a/examples/rstream.c ++++ b/examples/rstream.c +@@ -154,16 +154,16 @@ static void show_perf(void) + bytes = (long long) iterations * transfer_count * transfer_size * 2; + + /* name size transfers iterations bytes seconds Gb/sec usec/xfer */ +- printf("%s\t", test_name); ++ printf("%-10s", test_name); + size_str(str, transfer_size); +- printf("%s\t", str); ++ printf("%-8s", str); + cnt_str(str, transfer_count); +- printf("%s\t", str); ++ printf("%-8s", str); + cnt_str(str, iterations); +- printf("%s\t", str); ++ printf("%-8s", str); + size_str(str, bytes); +- printf("%s\t", str); +- printf("%.2fs \t%.2f \t%.2f\n", ++ printf("%-8s", str); ++ printf("%8.2fs%10.2f%11.2f\n", + usec / 1000000., (bytes * 8) / (1000. * usec), + (usec / iterations) / (transfer_count * 2)); + } +@@ -504,7 +504,8 @@ static int run(void) + goto free; + } + +- printf("name \tbytes \txfers \titers \ttotal \ttime \tGb/sec \tusec/xfer\n"); ++ printf("%-10s%-8s%-8s%-8s%-8s%8s %10s%13s\n", ++ "name", "bytes", "xfers", "iters", "total", "time", "Gb/sec", "usec/xfer"); + if (!custom) { + for (i = 0; i < TEST_CNT; i++) { + if (test_size[i].option > size_option)