i40e/base: fix padding in struct
[dpdk.git] / doc / guides / sample_app_ug / qos_metering.rst
index d947283..e1a6ac7 100644 (file)
@@ -31,7 +31,7 @@
 QoS Metering Sample Application
 ===============================
 
-The QoS meter sample application is an example that demonstrates the use of IntelĀ® DPDK to provide QoS marking and metering,
+The QoS meter sample application is an example that demonstrates the use of DPDK to provide QoS marking and metering,
 as defined by RFC2697 for Single Rate Three Color Marker (srTCM) and RFC 2698 for Two Rate Three Color Marker (trTCM) algorithm.
 
 Overview
@@ -100,7 +100,7 @@ The application execution command line is as below:
 The application is constrained to use a single core in the EAL core mask and 2 ports only in the application port mask
 (first port from the port mask is used for RX and the other port in the core mask is used for TX).
 
-Refer to *IntelĀ® DPDK Getting Started Guide* for general information on running applications and
+Refer to *DPDK Getting Started Guide* for general information on running applications and
 the Environment Abstraction Layer (EAL) options.
 
 Explanation
@@ -140,29 +140,29 @@ The traffic meter parameters are configured in the application source code with
 Assuming the input traffic is generated at line rate and all packets are 64 bytes Ethernet frames (IPv4 packet size of 46 bytes)
 and green, the expected output traffic should be marked as shown in the following table:
 
-.. _table_1:
-
-**Table 1. Output Traffic Marking**
-
-+-------------+------------------+-------------------+----------------+
-| **Mode**    | **Green (Mpps)** | **Yellow (Mpps)** | **Red (Mpps)** |
-|             |                  |                   |                |
-+=============+==================+===================+================+
-| srTCM blind | 1                | 1                 | 12.88          |
-|             |                  |                   |                |
-+-------------+------------------+-------------------+----------------+
-| srTCM color | 1                | 1                 | 12.88          |
-|             |                  |                   |                |
-+-------------+------------------+-------------------+----------------+
-| trTCM blind | 1                | 0.5               | 13.38          |
-|             |                  |                   |                |
-+-------------+------------------+-------------------+----------------+
-| trTCM color | 1                | 0.5               | 13.38          |
-|             |                  |                   |                |
-+-------------+------------------+-------------------+----------------+
-| FWD         | 14.88            | 0                 | 0              |
-|             |                  |                   |                |
-+-------------+------------------+-------------------+----------------+
+.. _table_qos_metering_1:
+
+.. table:: Output Traffic Marking
+
+   +-------------+------------------+-------------------+----------------+
+   | **Mode**    | **Green (Mpps)** | **Yellow (Mpps)** | **Red (Mpps)** |
+   |             |                  |                   |                |
+   +=============+==================+===================+================+
+   | srTCM blind | 1                | 1                 | 12.88          |
+   |             |                  |                   |                |
+   +-------------+------------------+-------------------+----------------+
+   | srTCM color | 1                | 1                 | 12.88          |
+   |             |                  |                   |                |
+   +-------------+------------------+-------------------+----------------+
+   | trTCM blind | 1                | 0.5               | 13.38          |
+   |             |                  |                   |                |
+   +-------------+------------------+-------------------+----------------+
+   | trTCM color | 1                | 0.5               | 13.38          |
+   |             |                  |                   |                |
+   +-------------+------------------+-------------------+----------------+
+   | FWD         | 14.88            | 0                 | 0              |
+   |             |                  |                   |                |
+   +-------------+------------------+-------------------+----------------+
 
 To set up the policing scheme as desired, it is necessary to modify the main.h source file,
 where this policy is implemented as a static structure, as follows: