source: rtems/bsps/shared/net/README.tulipclone @ 27de4e1f

5
Last change on this file since 27de4e1f was 27de4e1f, checked in by Sebastian Huber <sebastian.huber@…>, on 04/03/18 at 05:20:11

bsps: Move libchip to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 4.1 KB
Line 
1*****************************************************************
2********                                          ***************
3******** ttcp benchmark tests of dec2114x driver  ***************
4******** adapted from FreeBSD's if_dc.c for RTEMS ***************
5********        by: Daron Chabot (12/15/03),      ***************
6********        <daron@nucleus.usask.ca>          ***************
7*****************************************************************
8
9Test Equipment:
10-----------------------
11- Intel 450 MHz P3's
12- RH Linux v7.3, 2.4.7-10 kernel, D-Link DFE-530TX (via-rhine)
13- RTEMS rtems-ss-20030703, pc386 BSP, Linksys LNE100TX ( actually,
14a cleverly disguised ADMtek Centaur, aka "Comet").
15- the PCs were directly connected ( RJ-45 X-over cable ) on a class C
16subnet (private)
17
18NOTE:
19-----------------------
20- the following lines must be added to the BSP's "bsp.h" file, or
21inserted into an application header (e.g. a "network_config.h" file, or
22similar):
23
24extern int rtems_dc_driver_attach(struct rtems_bsdnet_ifconfig *, int);
25#define BSP_DEC_NETWORK_DRIVER_NAME    "tl1" /* "tl" as in "tulip-clone" */
26#define BSP_DEC_NETWORK_DRIVER_ATTACH    rtems_dc_driver_attach
27
28
29**************************
30Linux Tx ----> RTEMS Rx: *
31**************************
32TRANSMITTER:
33ttcp-t: buflen=8192, nbuf=65536, align=16384/0, port=5001  tcp  -> rtems
34ttcp-t: 536870912 bytes in 45.72 real seconds = 11468.54 KB/sec +++
35ttcp-t: 536870912 bytes in 6.87 CPU seconds = 76315.57 KB/cpu sec
36ttcp-t: 65536 I/O calls, msec/call = 0.71, calls/sec = 1433.57
37ttcp-t: 0.1user 6.7sys 0:45real 15% 0i+0d 0maxrss 0+2pf 0+0csw
38
39
40RECEIVER:
41ttcp-r: buflen=8192, nbuf=65536, align=16384/0, port=5001  tcp
42ttcp-r: 536870912 bytes in 45.72 real seconds = 11467.37 KB/sec +++
43ttcp-r: 536870912 bytes in 45.87 CPU seconds = 11467.37 KB/cpu sec
44ttcp-r: 370837 I/O calls, msec/call = 0.13, calls/sec = 8111.05
45ttcp-r: 0.0user 45.7sys 0:45real 100% 0i+0d 0maxrss 0+0pf 0+0csw
46
47
48
49**************************
50RTEMS Tx ----> Linux Rx: *
51**************************
52TRANSMITTER:
53ttcp-t: buflen=8192, nbuf=65536, align=16384/0, port=5001  tcp  ->192.168.1.1
54ttcp-t: 536870912 bytes in 46.22 real seconds = 11343.31 KB/sec +++
55ttcp-t: 536870912 bytes in 46.22 CPU seconds = 11343.31 KB/cpu sec
56ttcp-t: 65536 I/O calls, msec/call = 0.72, calls/sec = 1417.91
57ttcp-t: 0.0user 46.2sys 0:46real 100% 0i+0d 0maxrss 0+0pf 0+0csw
58
59
60
61
62RECEIVER:
63ttcp-r: buflen=8192, nbuf=65536, align=16384/0, port=5001  tcp
64ttcp-r: 536870912 bytes in 46.22 real seconds = 11343.05 KB/sec +++
65ttcp-r: 536870912 bytes in 11.60 CPU seconds = 45197.24 KB/cpu sec
66ttcp-r: 356183 I/O calls, msec/call = 0.13, calls/sec = 7706.07
67ttcp-r: 0.6user 10.9sys 0:46real 25% 0i+0d 0maxrss 0+2pf 0+0csw
68
69
70
71****************************************************************************
72****************************************************************************
73****************************************************************************
74******************* Test with 40kB buffer size *****************************
75****************************************************************************
76****************************************************************************
77****************************************************************************
78
79
80**************************
81RTEMS Tx ----> Linux Rx: *
82**************************
83TRANSMITTER:
84ttcp-t: buflen=40960, nbuf=13107, align=16384/0, port=5001  tcp -> 192.168.1.1
85ttcp-t: 536862720 bytes in 46.23 real seconds = 11340.69 KB/sec +++
86ttcp-t: 536862720 bytes in 46.23 CPU seconds = 11340.69 KB/cpu sec
87ttcp-t: 13107 I/O calls, msec/call = 3.61, calls/sec = 283.52
88ttcp-t: 0.0user 46.2sys 0:46real 100% 0i+0d 0maxrss 0+0pf 0+0csw
89
90
91RECEIVER:
92ttcp-r: buflen=40960, nbuf=13107, align=16384/0, port=5001  tcp
93ttcp-r: 536862720 bytes in 46.23 real seconds = 11339.54 KB/sec +++
94ttcp-r: 536862720 bytes in 10.70 CPU seconds = 48998.13 KB/cpu sec
95ttcp-r: 355970 I/O calls, msec/call = 0.13, calls/sec = 7699.20
96ttcp-r: 0.5user 10.1sys 0:46real 23% 0i+0d 0maxrss 0+5pf 0+0csw
97
98
99
100****************************************************************************
101****************************************************************************
Note: See TracBrowser for help on using the repository browser.