Lines Matching +full:burst +full:- +full:read
2 # SPDX-License-Identifier: GPL-2.0
5 # - If correctly tuned[1], single CPU 10G wirespeed small pkts is possible[2]
7 # Using pktgen "burst" option (use -b $N)
8 # - To boost max performance
9 # - Avail since: kernel v3.18
10 # * commit 38b2cf2982dc73 ("net: pktgen: packet bursting via skb->xmit_more")
11 # - This avoids writing the HW tailptr on every driver xmit
12 # - The performance boost is impressive, see commit and blog [2]
19 # [1] http://netoptimizer.blogspot.dk/2014/06/pktgen-for-network-overload-testing.html
20 # [2] http://netoptimizer.blogspot.dk/2014/10/unlocked-10gbps-tx-wirespeed-smallest.html
33 if [ -z "$DEST_IP" ]; then
34 [ -z "$IP6" ] && DEST_IP="198.18.0.42" || DEST_IP="FD00::1"
36 [ -z "$DST_MAC" ] && DST_MAC="90:e2:ba:ff:ff:ff"
37 [ -z "$BURST" ] && BURST=32
38 [ -z "$CLONE_SKB" ] && CLONE_SKB="0" # No need for clones when bursting
39 [ -z "$COUNT" ] && COUNT="0" # Zero means indefinitely
40 if [ -n "$DEST_IP" ]; then
42 read -r DST_MIN DST_MAX <<< $(parse_addr${IP6} $DEST_IP)
44 if [ -n "$DST_PORT" ]; then
45 read -r UDP_DST_MIN UDP_DST_MAX <<< $(parse_ports $DST_PORT)
50 [ -z "$APPEND" ] && pg_ctrl "reset"
52 # Threads are specified with parameter -t value in $THREADS
57 [ -z "$APPEND" ] && pg_thread $thread "rem_device_all"
73 if [ -n "$DST_PORT" ]; then
80 [ ! -z "$UDP_CSUM" ] && pg_set $dev "flag UDPCSUM"
82 # Setup burst, for easy testing -b 0 disable bursting
83 # (internally in pktgen default and minimum burst=1)
84 if [[ ${BURST} -ne 0 ]]; then
85 pg_set $dev "burst $BURST"
87 info "$dev: Not using burst"
91 # Run if user hits control-c
97 cat /proc/net/pktgen/$dev | grep -A2 "Result:"
100 # trap keyboard interrupt (Ctrl-C)
103 if [ -z "$APPEND" ]; then