Blame view

samples/pktgen/pktgen_bench_xmit_mode_queue_xmit.sh 2.42 KB
6fd980ac3   John Fastabend   net: samples: pkt...
1
  #!/bin/bash
b24413180   Greg Kroah-Hartman   License cleanup: ...
2
  # SPDX-License-Identifier: GPL-2.0
6fd980ac3   John Fastabend   net: samples: pkt...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #
  # Benchmark script:
  #  - developed for benchmarking egress qdisc path, derived (more
  #    like cut'n'pasted) from ingress benchmark script.
  #
  # Script for injecting packets into egress qdisc path of the stack
  # with pktgen "xmit_mode queue_xmit".
  #
  basedir=`dirname $0`
  source ${basedir}/functions.sh
  root_check_run_with_sudo "$@"
  
  # Parameter parsing via include
  source ${basedir}/parameters.sh
0f06a6787   Martin KaFai Lau   samples: Add an I...
17
18
19
  if [ -z "$DEST_IP" ]; then
      [ -z "$IP6" ] && DEST_IP="198.18.0.42" || DEST_IP="FD00::1"
  fi
6fd980ac3   John Fastabend   net: samples: pkt...
20
21
22
23
24
25
  [ -z "$DST_MAC" ] && DST_MAC="90:e2:ba:ff:ff:ff"
  
  # Burst greater than 1 are invalid for queue_xmit mode
  if [[ -n "$BURST" ]]; then
      err 1 "Bursting not supported for this mode"
  fi
69137ea60   Tariq Toukan   pktgen: Specify n...
26
  [ -z "$COUNT" ] && COUNT="10000000" # Zero means indefinitely
40f843ee5   Daniel T. Lee   samples: pktgen: ...
27
28
29
30
  if [ -n "$DEST_IP" ]; then
      validate_addr${IP6} $DEST_IP
      read -r DST_MIN DST_MAX <<< $(parse_addr${IP6} $DEST_IP)
  fi
6e32a74a6   Daniel T. Lee   samples: pktgen: ...
31
  if [ -n "$DST_PORT" ]; then
723d2904a   Daniel T. Lee   samples: pktgen: ...
32
33
      read -r UDP_DST_MIN UDP_DST_MAX <<< $(parse_ports $DST_PORT)
      validate_ports $UDP_DST_MIN $UDP_DST_MAX
6e32a74a6   Daniel T. Lee   samples: pktgen: ...
34
  fi
6fd980ac3   John Fastabend   net: samples: pkt...
35
36
37
  
  # Base Config
  DELAY="0"        # Zero means max speed
6fd980ac3   John Fastabend   net: samples: pkt...
38
39
40
41
42
  
  # General cleanup everything since last run
  pg_ctrl "reset"
  
  # Threads are specified with parameter -t value in $THREADS
e0e16672e   Tariq Toukan   pktgen: Specify t...
43
  for ((thread = $F_THREAD; thread <= $L_THREAD; thread++)); do
6fd980ac3   John Fastabend   net: samples: pkt...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
      # The device name is extended with @name, using thread number to
      # make then unique, but any name will do.
      dev=${DEV}@${thread}
  
      # Add remove all other devices and add_device $dev to thread
      pg_thread $thread "rem_device_all"
      pg_thread $thread "add_device" $dev
  
      # Base config of dev
      pg_set $dev "flag QUEUE_MAP_CPU"
      pg_set $dev "count $COUNT"
      pg_set $dev "pkt_size $PKT_SIZE"
      pg_set $dev "delay $DELAY"
      pg_set $dev "flag NO_TIMESTAMP"
  
      # Destination
      pg_set $dev "dst_mac $DST_MAC"
40f843ee5   Daniel T. Lee   samples: pktgen: ...
61
62
      pg_set $dev "dst${IP6}_min $DST_MIN"
      pg_set $dev "dst${IP6}_max $DST_MAX"
6fd980ac3   John Fastabend   net: samples: pkt...
63

6e32a74a6   Daniel T. Lee   samples: pktgen: ...
64
65
66
      if [ -n "$DST_PORT" ]; then
  	# Single destination port or random port range
  	pg_set $dev "flag UDPDST_RND"
723d2904a   Daniel T. Lee   samples: pktgen: ...
67
68
  	pg_set $dev "udp_dst_min $UDP_DST_MIN"
  	pg_set $dev "udp_dst_max $UDP_DST_MAX"
6e32a74a6   Daniel T. Lee   samples: pktgen: ...
69
      fi
6fd980ac3   John Fastabend   net: samples: pkt...
70
71
72
73
74
75
76
77
78
79
      # Inject packet into TX qdisc egress path of stack
      pg_set $dev "xmit_mode queue_xmit"
  done
  
  # start_run
  echo "Running... ctrl^C to stop" >&2
  pg_ctrl "start"
  echo "Done" >&2
  
  # Print results
e0e16672e   Tariq Toukan   pktgen: Specify t...
80
  for ((thread = $F_THREAD; thread <= $L_THREAD; thread++)); do
6fd980ac3   John Fastabend   net: samples: pkt...
81
82
83
84
      dev=${DEV}@${thread}
      echo "Device: $dev"
      cat /proc/net/pktgen/$dev | grep -A2 "Result:"
  done