doc: update links in nfb guide
[dpdk.git] / doc / guides / sample_app_ug / vmdq_forwarding.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2020 Intel Corporation.
3
4 VMDq Forwarding Sample Application
5 ==========================================
6
7 The VMDq Forwarding sample application is a simple example of packet processing using the DPDK.
8 The application performs L2 forwarding using VMDq to divide the incoming traffic into queues.
9 The traffic splitting is performed in hardware by the VMDq feature of the Intel® 82599 and X710/XL710 Ethernet Controllers.
10
11 Overview
12 --------
13
14 This sample application can be used as a starting point for developing a new application that is based on the DPDK and
15 uses VMDq for traffic partitioning.
16
17 VMDq filters split the incoming packets up into different "pools" - each with its own set of RX queues - based upon
18 the MAC address and VLAN ID within the VLAN tag of the packet.
19
20 All traffic is read from a single incoming port and output on another port, without any processing being performed.
21 With Intel® 82599 NIC, for example, the traffic is split into 128 queues on input, where each thread of the application reads from
22 multiple queues. When run with 8 threads, that is, with the -c FF option, each thread receives and forwards packets from 16 queues.
23
24 As supplied, the sample application configures the VMDq feature to have 32 pools with 4 queues each.
25 The Intel® 82599 10 Gigabit Ethernet Controller NIC also supports the splitting of traffic into 16 pools of 2 queues.
26 While the Intel® X710 or XL710 Ethernet Controller NICs support many configurations of VMDq pools of 4 or 8 queues each.
27 And queues numbers for each VMDq pool can be changed by setting RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM
28 in config/rte_config.h file.
29 The nb-pools and enable-rss parameters can be passed on the command line, after the EAL parameters:
30
31 .. code-block:: console
32
33     ./<build_dir>/examples/dpdk-vmdq [EAL options] -- -p PORTMASK --nb-pools NP --enable-rss
34
35 where, NP can be 8, 16 or 32, rss is disabled by default.
36
37 In Linux* user space, the application can display statistics with the number of packets received on each queue.
38 To have the application display the statistics, send a SIGHUP signal to the running application process.
39
40 The VMDq Forwarding sample application is in many ways simpler than the L2 Forwarding application
41 (see :doc:`l2_forward_real_virtual`)
42 as it performs unidirectional L2 forwarding of packets from one port to a second port.
43 No command-line options are taken by this application apart from the standard EAL command-line options.
44
45 Compiling the Application
46 -------------------------
47
48 To compile the sample application see :doc:`compiling`.
49
50 The application is located in the ``vmdq`` sub-directory.
51
52 Running the Application
53 -----------------------
54
55 To run the example in a Linux environment:
56
57 .. code-block:: console
58
59     user@target:~$ ./<build_dir>/examples/dpdk-vmdq -l 0-3 -n 4 -- -p 0x3 --nb-pools 16
60
61 Refer to the *DPDK Getting Started Guide* for general information on running applications and
62 the Environment Abstraction Layer (EAL) options.
63
64 Explanation
65 -----------
66
67 The following sections provide some explanation of the code.
68
69 Initialization
70 ~~~~~~~~~~~~~~
71
72 The EAL, driver and PCI configuration is performed largely as in the L2 Forwarding sample application,
73 as is the creation of the mbuf pool.
74 See :doc:`l2_forward_real_virtual`.
75 Where this example application differs is in the configuration of the NIC port for RX.
76
77 The VMDq hardware feature is configured at port initialization time by setting the appropriate values in the
78 rte_eth_conf structure passed to the rte_eth_dev_configure() API.
79 Initially in the application,
80 a default structure is provided for VMDq configuration to be filled in later by the application.
81
82 .. literalinclude:: ../../../examples/vmdq/main.c
83     :language: c
84     :start-after: Default structure for VMDq. 8<
85     :end-before: >8 End of Empty vdmq configuration structure.
86
87 The get_eth_conf() function fills in an rte_eth_conf structure with the appropriate values,
88 based on the global vlan_tags array.
89 For the VLAN IDs, each one can be allocated to possibly multiple pools of queues.
90 For destination MAC, each VMDq pool will be assigned with a MAC address. In this sample, each VMDq pool
91 is assigned to the MAC like 52:54:00:12:<port_id>:<pool_id>, that is,
92 the MAC of VMDq pool 2 on port 1 is 52:54:00:12:01:02.
93
94 .. literalinclude:: ../../../examples/vmdq/main.c
95     :language: c
96     :start-after: vlan_tags 8<
97     :end-before: >8 End of vlan_tags.
98
99 .. literalinclude:: ../../../examples/vmdq/main.c
100     :language: c
101     :start-after: Pool mac address template. 8<
102     :end-before: >8 End of mac addr template.
103
104 .. literalinclude:: ../../../examples/vmdq/main.c
105     :language: c
106     :start-after: Building correct configruration for vdmq. 8<
107     :end-before: >8 End of get_eth_conf.
108
109 Once the network port has been initialized using the correct VMDq values,
110 the initialization of the port's RX and TX hardware rings is performed similarly to that
111 in the L2 Forwarding sample application.
112 See :doc:`l2_forward_real_virtual` for more information.
113
114 Statistics Display
115 ~~~~~~~~~~~~~~~~~~
116
117 When run in a Linux environment,
118 the VMDq Forwarding sample application can display statistics showing the number of packets read from each RX queue.
119 This is provided by way of a signal handler for the SIGHUP signal,
120 which simply prints to standard output the packet counts in grid form.
121 Each row of the output is a single pool with the columns being the queue number within that pool.
122
123 To generate the statistics output, use the following command:
124
125 .. code-block:: console
126
127     user@host$ sudo killall -HUP vmdq_app
128
129 Please note that the statistics output will appear on the terminal where the vmdq_app is running,
130 rather than the terminal from which the HUP signal was sent.