From 1472849a6e4df8aeb15a83df2776ba55a966d2b2 Mon Sep 17 00:00:00 2001 From: Paul Traina Date: Sat, 3 Aug 1996 19:51:05 +0000 Subject: Re-import netperf package under benchmarks. Requested by: asami --- benchmarks/netperf/files/patch-aa | 341 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 341 insertions(+) create mode 100644 benchmarks/netperf/files/patch-aa (limited to 'benchmarks/netperf/files/patch-aa') diff --git a/benchmarks/netperf/files/patch-aa b/benchmarks/netperf/files/patch-aa new file mode 100644 index 000000000000..76491aad25b0 --- /dev/null +++ b/benchmarks/netperf/files/patch-aa @@ -0,0 +1,341 @@ +*** makefile.orig Thu Jul 25 12:54:42 1996 +--- makefile Sat Aug 3 12:24:17 1996 +*************** +*** 15,22 **** + # for the rest of the world, it is probably better to put the binaries + # in /usr/local/netperf or /opt/netperf + # +! #NETPERF_HOME = /usr/local/netperf +! NETPERF_HOME = /opt/netperf + + # The compiler on your system might be somewhere else, and/or have + # a different name. +--- 15,22 ---- + # for the rest of the world, it is probably better to put the binaries + # in /usr/local/netperf or /opt/netperf + # +! NETPERF_HOME = /usr/local/netperf +! #NETPERF_HOME = /opt/netperf + + # The compiler on your system might be somewhere else, and/or have + # a different name. +*************** +*** 36,42 **** + # You may safely ignore that warning. + # + +! CC = cc + + # Adding flags to CFLAGS enables some non-mainline features. For + # more information, please consult the source code. +--- 36,42 ---- + # You may safely ignore that warning. + # + +! CC = cc -Wall + + # Adding flags to CFLAGS enables some non-mainline features. For + # more information, please consult the source code. +*************** +*** 83,89 **** + # -U__hpux - Use this when compiling _on_ HP-UX *for* an HP-RT system + + LOG_FILE=DEBUG_LOG_FILE="\"/tmp/netperf.debug\"" +! CFLAGS = -O -Ae -D$(LOG_FILE) -DUSE_LOOPER + + # Some platforms, and some options, require additional libraries. + # you can add to the "LIBS =" line to accomplish this. if you find +--- 83,89 ---- + # -U__hpux - Use this when compiling _on_ HP-UX *for* an HP-RT system + + LOG_FILE=DEBUG_LOG_FILE="\"/tmp/netperf.debug\"" +! CFLAGS = %CFLAGS% -D$(LOG_FILE) -DUSE_LOOPER -DHISTOGRAM -DDO_UNIX + + # Some platforms, and some options, require additional libraries. + # you can add to the "LIBS =" line to accomplish this. if you find +*************** +*** 181,186 **** +--- 181,187 ---- + netserver.o: netserver.c nettest_bsd.h netlib.h makefile + + install: netperf netserver ++ mkdir -p $(NETPERF_HOME) + chmod -w *.[ch] + chmod +x $(NETPERF_SCRIPTS) + cp netperf $(NETPERF_HOME) +*** netlib.c.orig Thu Jul 25 12:54:36 1996 +--- netlib.c Sat Aug 3 12:42:13 1996 +*************** +*** 1285,1291 **** + dump_request(); + + fprintf(where, +! "\nsend_request: about to send %ld bytes from %p\n", + sizeof(netperf_request), + &netperf_request); + fflush(where); +--- 1285,1291 ---- + dump_request(); + + fprintf(where, +! "\nsend_request: about to send %d bytes from %p\n", + sizeof(netperf_request), + &netperf_request); + fflush(where); +*************** +*** 2785,2791 **** + /* program, but that doesn't really seem worthwhile - raj 4/95 */ + if (debug > 1) { + fprintf(where, +! "Looper child %d is born, pid %d\n", + child_index, + getpid()); + fflush(where); +--- 2785,2791 ---- + /* program, but that doesn't really seem worthwhile - raj 4/95 */ + if (debug > 1) { + fprintf(where, +! "Looper child %d is born, pid %ld\n", + child_index, + getpid()); + fflush(where); +*** netlib.h.orig Thu Jul 25 12:54:36 1996 +--- netlib.h Sat Aug 3 12:16:21 1996 +*************** +*** 262,267 **** +--- 262,268 ---- + extern int dl_open(); + extern char format_cpu_method(); + extern unsigned int convert(); ++ extern int delta_micro(); + + /* these are all for the confidence interval stuff */ + extern double confidence; +*************** +*** 274,279 **** +--- 275,285 ---- + #define HAVE_BCOPY + #define HAVE_BZERO + #endif ++ ++ #if defined(__FreeBSD__) || defined(__NetBSD__) ++ #define HAVE_BCOPY ++ #define HAVE_BZERO ++ #endif /* __FreeBSD__ || __NetBSD__ */ + + #ifndef HAVE_BCOPY + #define bcopy(s,d,h) memcpy((d),(s),(h)) +*** netserver.c.orig Thu Jul 25 12:54:36 1996 +--- netserver.c Sat Aug 3 12:16:21 1996 +*************** +*** 405,411 **** + fclose(stdin); + fclose(stderr); + /* can I just use setsid on all systems? raj 4/96 */ +! #if defined(__NetBSD__) || defined(__bsdi__) || defined(sun) || defined(__FREEBSD__) + setsid(); + #else + setpgrp(); +--- 405,411 ---- + fclose(stdin); + fclose(stderr); + /* can I just use setsid on all systems? raj 4/96 */ +! #if defined(__NetBSD__) || defined(__bsdi__) || defined(sun) || defined(__FreeBSD__) + setsid(); + #else + setpgrp(); +*** netsh.h.orig Thu Jul 25 12:54:36 1996 +--- netsh.h Sat Aug 3 12:16:21 1996 +*************** +*** 28,34 **** + #define REM_SEND_ALIGN 4 /* alignment for remote sends */ + + /* misc defines for the hell of it */ +! #define MAXLONG 4294967295L + + #ifndef NETSH + /* stuff to say where this test is going */ +--- 28,34 ---- + #define REM_SEND_ALIGN 4 /* alignment for remote sends */ + + /* misc defines for the hell of it */ +! #define MAXLONG 4294967295LU + + #ifndef NETSH + /* stuff to say where this test is going */ +*** nettest_bsd.c.orig Thu Jul 25 12:54:37 1996 +--- nettest_bsd.c Sat Aug 3 12:16:22 1996 +*************** +*** 54,59 **** +--- 54,60 ---- + #include + #include + #include ++ #include + #else /* WIN32 */ + #include + #include +*************** +*** 64,69 **** +--- 65,75 ---- + #include "netlib.h" + #include "netsh.h" + #include "nettest_bsd.h" ++ ++ #ifdef BSD ++ #include ++ #include ++ #endif /* BSD */ + + #ifdef HISTOGRAM + #include "hist.h" +*** nettest_unix.c.orig Thu Jul 25 12:54:39 1996 +--- nettest_unix.c Sat Aug 3 12:16:22 1996 +*************** +*** 45,51 **** + #include + #include + #include +! #ifndef __bsdi__ + #include + #endif + +--- 45,52 ---- + #include + #include + #include +! #include +! #ifndef BSD + #include + #endif + +*** snapshot_script.orig Thu Jul 25 12:54:35 1996 +--- snapshot_script Sat Aug 3 12:16:22 1996 +*************** +*** 34,40 **** + # + # where is netperf installed, there are a few possible places: + +! NETPERF_CMD=${NETPERF_CMD:=/opt/netperf} + + + # there should be no more than two parms passed +--- 34,40 ---- + # + # where is netperf installed, there are a few possible places: + +! NETPERF_CMD=${NETPERF_CMD:=/usr/local/netperf/netperf} + + + # there should be no more than two parms passed +*** tcp_range_script.orig Thu Jul 25 12:54:35 1996 +--- tcp_range_script Sat Aug 3 12:16:23 1996 +*************** +*** 43,49 **** + # where is netperf, and are there any "constant" options such as + # the netserver port number + #NETHOME=/usr/etc/net_perf +! NETHOME="." + NETPERF=$NETHOME/netperf $PORT + + # How accurate we want the estimate of performance: +--- 43,49 ---- + # where is netperf, and are there any "constant" options such as + # the netserver port number + #NETHOME=/usr/etc/net_perf +! NETHOME="/usr/local/netperf" + NETPERF=$NETHOME/netperf $PORT + + # How accurate we want the estimate of performance: +*** tcp_rr_script.orig Thu Jul 25 12:54:35 1996 +--- tcp_rr_script Sat Aug 3 12:16:23 1996 +*************** +*** 23,31 **** + fi + + # where the programs are +! #NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! NETHOME=. + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +--- 23,31 ---- + fi + + # where the programs are +! NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! #NETHOME=. + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +*** tcp_stream_script.orig Thu Jul 25 12:54:34 1996 +--- tcp_stream_script Sat Aug 3 12:16:23 1996 +*************** +*** 22,30 **** + fi + + # where the programs are +! #NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! NETHOME=. + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +--- 22,30 ---- + fi + + # where the programs are +! NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! #NETHOME=. + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +*** udp_rr_script.orig Thu Jul 25 12:54:35 1996 +--- udp_rr_script Sat Aug 3 12:16:23 1996 +*************** +*** 20,28 **** + + # where the programs are + +! #NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! NETHOME="." + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +--- 20,28 ---- + + # where the programs are + +! NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! #NETHOME="." + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +*** udp_stream_script.orig Thu Jul 25 12:54:34 1996 +--- udp_stream_script Sat Aug 3 12:16:23 1996 +*************** +*** 17,25 **** + + # where the programs are + +! #NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! NETHOME="." + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set +--- 17,25 ---- + + # where the programs are + +! NETHOME=/usr/local/netperf + #NETHOME="/opt/netperf" +! #NETHOME="." + + # at what port will netserver be waiting? If you decide to run + # netserver at a differnet port than the default of 12865, then set -- cgit v1.2.3