[netperf-dev] netperf2 commit notice r619 - in trunk: . src

raj at netperf.org raj at netperf.org
Fri Dec 14 13:26:53 PST 2012


Author: raj
Date: 2012-12-14 13:26:53 -0800 (Fri, 14 Dec 2012)
New Revision: 619

Modified:
   trunk/AUTHORS
   trunk/src/nettest_omni.c
Log:
report the correct send size in a migrated TCP_MAERTS test, fix from Amos Kong for a bug reported by Wenli Quan

Modified: trunk/AUTHORS
===================================================================
--- trunk/AUTHORS	2012-12-11 20:49:33 UTC (rev 618)
+++ trunk/AUTHORS	2012-12-14 21:26:53 UTC (rev 619)
@@ -287,3 +287,6 @@
 
 Steven Noonan - found a variable name bug for the ever unlikely case
 of a platform not defining SO_SNDBUF
+
+Amos Kong - a fix to report the correct send size in a migrated
+TCP_MAERTS test. Bug reported by Wenli Quan

Modified: trunk/src/nettest_omni.c
===================================================================
--- trunk/src/nettest_omni.c	2012-12-11 20:49:33 UTC (rev 618)
+++ trunk/src/nettest_omni.c	2012-12-14 21:26:53 UTC (rev 619)
@@ -6135,7 +6135,7 @@
 		cpu_fmt_1,		/* the format string */
 		rsr_size,		/* remote recvbuf size */
 		lss_size,		/* local sendbuf size */
-		send_size,		/* how large were the recvs */
+		remote_send_size,	/* how large were the recvs */
 		elapsed_time,		/* how long was the test */
 		thruput, 		/* what was the xfer rate */
 		local_cpu_utilization,	/* local cpu */
@@ -6167,9 +6167,9 @@
 		tput_fmt_1,		/* the format string */
 		lsr_size, 		/* local recvbuf size */
 		rss_size, 		/* remot sendbuf size */
-		remote_send_size,		/* how large were the recvs */
+		remote_send_size,	/* how large were the recvs */
 		elapsed_time, 		/* how long did it take */
-		thruput,                  /* how fast did it go */
+		thruput,                /* how fast did it go */
 		((print_headers) ||
 		 (result_brand == NULL)) ? "" : result_brand);
 	break;



More information about the netperf-dev mailing list