分类: LINUX
2006-06-15 22:31:22
A Sample Configuration
Some example settings are described below. These numbers are for illustration purposes only. For
optimal performance, the exact controller configuration is best determined through actual
experimentation.
The discussion below assumes that software is optimizing for full-size frames of 1538 bytes.
The calculations below make use of the following facts:
•Gigabit Ethernet operates at 1.0 Gb/s or 1,000,000,000 bits per second. At this speed, the time required to transmit or receive a single bit (in other words, the bit-time) is 1.0 nanosecond.
•A full-size Ethernet frame requires 1538 bytes (12,304 bits) of bandwidth:
—8-byte preamble and start-of-frame delimiter
—14-byte Ethernet header
—1500-byte payload
—4-byte FCS
—12-byte inter-packet gap
•The controller can transmit or receive a full-size frame every 12.3 microseconds or approximately 81,000 packets per second.
Absolute Timers
Configuring the absolute timers is typically a matter of determining the desired interrupt rate or the
desired number of packets per interrupt. To receive approximately 3000 interrupts per second,software would configure the absolute timers to interrupt every 333 microseconds.
Alternately, to receive approximately 50 packets per interrupt, the controller must interruptapproximately 1620 times per second (81,000 packets-per-second at 50 packets-per-interrupt).
Software would then configure the absolute timers to interrupt every 617 microseconds.
Packet Timers
Experiments have shown that values between 20 and 40 microseconds work well for the packettimers.
Software might set the packet timers to expire after 2 full-length packet-times, or approximately 25
microseconds. The packet timers would then expire when throughput falls below about 333Mbps
(two unused packet-times follow every packet arrival, so approximately one-third of the total
bandwidth is in use). At greater levels of utilization, the packet timers would likely chain
repeatedly until the one of the absolute timers expired.
Interrupt Throttle Timer
Configuring the throttle timer is simply a question of determining the desired maximum interrupt
rate. As described earlier, software may realize better results by setting the throttle timer to
interrupt slightly more often than desired to reduce unnecessary latencies.
For typical applications, software might configure the controller to interrupt no more than 5000
times per second.
Different operating systems and environments will be capable of sustaining different maximum
interrupt rates. Experiments have demonstrated that Microsoft Windows-based operating systems
perform best when the device interrupts between 4,000 and 12,000 times per second. Linux-based
operating systems appear to perform best with an interrupt rate between 1,000 and 8,000 interrupts
per second. Other operating systems will perform differently.
Additional Tuning Considerations
The example configuration described above will require modifications to suit the intended
environment. The following factors may influence the tuning of the interrupt moderationparameters:
•The latency associated with scheduling an interrupt handler. Larger scheduling latencies
imply larger packet latencies. Lower interrupt delays may be required in these situations
to avoid overrun conditions and excessive per-packet delays.
•The cost associated with handling an interrupt. In OS with low-cost interrupts, higher interrupt rates may be acceptable. In OS with high-cost interrupts, lower interrupt rates may be required.
•The expected mixture of packet sizes. The preceding discussion assumes that software is optimizing for full-size frames. Optimizing for small packets or for a variety of packet sizes requires recalculating the expected packet rate.
•The expected network utilization. High utilization implies high traffic rates, which makes the controller more susceptible to overrun conditions if it delays interrupts too long.