Merge "run_traffic: capture and exit gracefully if crash in trex run_traffic"
[yardstick.git] / yardstick / benchmark / scenarios / networking / testpmd_vsperf.bash
1 ##############################################################################
2 # Copyright (c) 2017 Nokia
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 #!/bin/bash
10
11 set -e
12
13 # Commandline arguments
14 MOONGEN_PORT1_MAC=$1         # MAC address of the peer port
15 MOONGEN_PORT2_MAC=$2         # MAC address of the peer port
16
17 DPDK_ROOT='/home/ubuntu/vswitchperf/src/dpdk/dpdk'
18
19 load_modules()
20 {
21     if ! lsmod | grep "uio" &> /dev/null; then
22         modprobe uio
23     fi
24
25     if ! lsmod | grep "igb_uio" &> /dev/null; then
26         insmod ${DPDK_ROOT}/x86_64-native-linuxapp-gcc/kmod/igb_uio.ko
27     fi
28
29     if ! lsmod | grep "rte_kni" &> /dev/null; then
30         insmod ${DPDK_ROOT}/x86_64-native-linuxapp-gcc/kmod/rte_kni.ko
31     fi
32 }
33
34 change_permissions()
35 {
36     chmod 777 /sys/bus/pci/drivers/virtio-pci/*
37     chmod 777 /sys/bus/pci/drivers/igb_uio/*
38 }
39
40 add_interface_to_dpdk(){
41     interfaces=$(lspci |grep Eth |tail -n +2 |awk '{print $1}')
42     ${DPDK_ROOT}/tools/dpdk-devbind.py --bind=igb_uio $interfaces &> /dev/null
43 }
44
45 run_testpmd()
46 {
47     blacklist=$(lspci |grep Eth |awk '{print $1}'|head -1)
48     cd ${DPDK_ROOT}
49     sudo ./dpdk/bin/testpmd -c 0x3f -n 4 -b $blacklist -- -a --nb-cores=4 --coremask=0x3c --burst=64 --txd=4096 --rxd=4096 --rxq=2 --txq=2 --rss-udp --eth-peer=0,$MOONGEN_PORT1_MAC --eth-peer=1,$MOONGEN_PORT2_MAC --forward-mode=mac
50 }
51
52 main()
53 {
54     load_modules
55     change_permissions
56     add_interface_to_dpdk
57     run_testpmd
58 }
59
60 main