Merge "Support of configurable background load and implementation of LTD.CPU.RFC2544...
[vswitchperf.git] / conf / 02_vswitch.conf
1 # Copyright 2015 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # ############################
16 # vswitch configuration
17 # ############################
18 RTE_SDK = '~/dpdk'
19 OVS_DIR = '~/openvswitch'
20
21 # ############################
22 # DPDK configuration
23 # ############################
24
25 # DPDK target used when builing DPDK
26 RTE_TARGET = 'x86_64-ivshmem-linuxapp-gcc'
27
28 # list of NIC HWIDs which will be bound to the 'igb_uio' driver on
29 # system init
30 WHITELIST_NICS = ['05:00.0', '05:00.1']
31
32 # list of NIC HWIDs which will be ignored by the 'igb_uio' driver on
33 # system init
34 BLACKLIST_NICS = ['0000:09:00.0', '0000:09:00.1', '0000:09:00.2',
35                   '0000:09:00.3']
36
37 # These are DPDK EAL parameters and they may need to be changed depending on
38 # hardware configuration, like cpu numbering and NUMA.
39 VSWITCHD_DPDK_ARGS = ['-c', '0x4', '-n', '4', '--socket-mem 1024,0']
40
41 VSWITCHD_VANILLA_ARGS = ['--pidfile']
42 VSWITCH_VANILLA_PHY_PORT_NAMES = ['', '']
43 VSWITCH_VANILLA_KERNEL_MODULES = ['openvswitch']
44
45 # directory where hugepages will be mounted on system init
46 HUGEPAGE_DIR = '/dev/hugepages'
47
48 # Sets OVS PMD core mask to 2 for CPU core 1 affinitization
49 VSWITCH_PMD_CPU_MASK = '2'
50 VSWITCH_AFFINITIZATION_ON = 1
51
52 VSWITCH_FLOW_TIMEOUT = '30000'
53
54 # list of tuples of format (path, module_name), which will be inserted
55 # using 'insmod' on system init
56
57 # for OVS modules the path is in reference to the OVS directory.
58 OVS_MODULES = []
59
60 # for DPDK_MODULES the path is in reference to the build directory
61 DPDK_MODULES = [
62     ('kmod', 'igb_uio'),
63 ]
64
65 VHOST_MODULE = [
66     ('eventfd_link', 'eventfd_link')
67 ]
68
69 # list of modules that will be inserted using 'modprobe' on system init
70 SYS_MODULES = ['uio', 'cuse']
71
72 # vhost character device file used by dpdkvhostport QemuWrap cases
73 VHOST_DEV_FILE = 'ovs-vhost-net'
74
75 # location of vhost-user sockets
76 VHOST_USER_SOCKS = ['/tmp/dpdkvhostuser0', '/tmp/dpdkvhostuser1',
77                     '/tmp/dpdkvhostuser2', '/tmp/dpdkvhostuser3',
78                     '/tmp/myport0', '/tmp/helloworld123', '/tmp/abcstuff0']
79
80 # log file for ovs-vswitchd
81 LOG_FILE_VSWITCHD = 'vswitchd.log'
82
83 # log file for ovs-dpdk
84 LOG_FILE_OVS = 'ovs.log'
85
86 VSWITCH_DIR = os.path.join(ROOT_DIR, 'vswitches')
87 VSWITCH = "OvsDpdkVhost"
88
89 VHOST_METHOD = 'cuse'