diff options
-rw-r--r-- | Documentation/networking/pktgen.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Documentation/networking/pktgen.txt b/Documentation/networking/pktgen.txt index 0e30c7845b2b..0dffc6e37902 100644 --- a/Documentation/networking/pktgen.txt +++ b/Documentation/networking/pktgen.txt | |||
@@ -24,6 +24,34 @@ For monitoring and control pktgen creates: | |||
24 | /proc/net/pktgen/ethX | 24 | /proc/net/pktgen/ethX |
25 | 25 | ||
26 | 26 | ||
27 | Tuning NIC for max performance | ||
28 | ============================== | ||
29 | |||
30 | The default NIC setting are (likely) not tuned for pktgen's artificial | ||
31 | overload type of benchmarking, as this could hurt the normal use-case. | ||
32 | |||
33 | Specifically increasing the TX ring buffer in the NIC: | ||
34 | # ethtool -G ethX tx 1024 | ||
35 | |||
36 | A larger TX ring can improve pktgen's performance, while it can hurt | ||
37 | in the general case, 1) because the TX ring buffer might get larger | ||
38 | than the CPUs L1/L2 cache, 2) because it allow more queueing in the | ||
39 | NIC HW layer (which is bad for bufferbloat). | ||
40 | |||
41 | One should be careful to conclude, that packets/descriptors in the HW | ||
42 | TX ring cause delay. Drivers usually delay cleaning up the | ||
43 | ring-buffers (for various performance reasons), thus packets stalling | ||
44 | the TX ring, might just be waiting for cleanup. | ||
45 | |||
46 | This cleanup issues is specifically the case, for the driver ixgbe | ||
47 | (Intel 82599 chip). This driver (ixgbe) combine TX+RX ring cleanups, | ||
48 | and the cleanup interval is affected by the ethtool --coalesce setting | ||
49 | of parameter "rx-usecs". | ||
50 | |||
51 | For ixgbe use e.g "30" resulting in approx 33K interrupts/sec (1/30*10^6): | ||
52 | # ethtool -C ethX rx-usecs 30 | ||
53 | |||
54 | |||
27 | Viewing threads | 55 | Viewing threads |
28 | =============== | 56 | =============== |
29 | /proc/net/pktgen/kpktgend_0 | 57 | /proc/net/pktgen/kpktgend_0 |