[netperf-dev] netperf2 commit notice r228 - in trunk: . src
raj at netperf.org
raj at netperf.org
Tue Feb 12 14:02:41 PST 2008
Author: raj
Date: 2008-02-12 14:02:41 -0800 (Tue, 12 Feb 2008)
New Revision: 228
Modified:
trunk/Release_Notes
trunk/src/netlib.c
Log:
cleanup
Modified: trunk/Release_Notes
===================================================================
--- trunk/Release_Notes 2008-02-12 21:48:15 UTC (rev 227)
+++ trunk/Release_Notes 2008-02-12 22:02:41 UTC (rev 228)
@@ -2,6 +2,30 @@
Things changed in this release:
+*) The "omni" suite has been added on an experimental basis. If it
+ works-out then many of the tests in src/nettest_bsd.c,
+ src/nettest_sdp.c, and src/nettest_sctp.c will be "migrated" to use
+ the "omni infrastructure" (aka two routines to measure them
+ all...). Apart from reduced socket code, the omni suite has
+ user-configurable output in either "human readable" or CSV format.
+ By default, a VERY large quantity of data is output when asking for
+ csv format (test-specific -o option). The omni suite is not yet
+ documented (there are some as-yet undiagnosed problems with
+ doc/netperf.texi in emacs texinfo mode and updating nodes and links
+ and such - any help there would be appreciated) but there is a
+ small text file in doc/ describing the names (most) of the
+ available output's. For the most up-to-date list consult
+ src/nettest_omni.c and the enum netperf_output_name.
+
+*) Coming along for the ride are some new platform specific files to
+ determine the probable egress interface for each end of a test, as
+ well as driver information for that interface. There is also
+ reporting of "uname" like information for both local and remote
+ system, and eventually perhaps something about the vendor's model
+ name for the systems as well as the processor types. The end goal
+ is to make it easy to get most if not all what one would want in a
+ database of netperf results.
+
*) The UDP_RR test now understands the global -f option to change
output units. It also understands the -B option to tag
results. Courtesy of Alexander Duyck.
Modified: trunk/src/netlib.c
===================================================================
--- trunk/src/netlib.c 2008-02-12 21:48:15 UTC (rev 227)
+++ trunk/src/netlib.c 2008-02-12 22:02:41 UTC (rev 228)
@@ -2654,8 +2654,7 @@
(sizeof(netperf_response) - 7); /* OBOB? */
*token = 0;
#endif
- printf("sizeof %d start %p token %p delim %s\n",
- sizeof(netperf_response), &netperf_response,token,delim);
+
token = strtok((char *)netperf_response.content.test_specific_data,delim);
if (token) remote_sysname = strdup(token);
else remote_sysname = strdup("UnknownRemoteSysname");
More information about the netperf-dev
mailing list