You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/plugins/input/dpdk/README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ input_plugin:
17
17
workers_cpu_list: []
18
18
eal_opts: null
19
19
mtu: 1518
20
+
rss_offload: null
20
21
```
21
22
22
23
## Parameters
@@ -36,6 +37,7 @@ input_plugin:
36
37
|__workers_cpu_list__| [] (autofill) | List of CPU cores assigned to RX queues (must match number of rx_queues) |
37
38
|__eal_opts__ | null | Extra options to be passed to the DPDK EAL (Environment Abstraction Layer). Can be used for fine-tuning DPDK behavior.|
38
39
|__mtu__ | 1518 | Maximum Transmission Unit size for the interface. Defines the maximum packet size that can be received.|
40
+
|__rss_offload__ | null | RSS offload configuration. Can be used to override the default RSS offload configuration.|
39
41
40
42
## How to use
41
43
@@ -240,9 +242,12 @@ grubby --update-kernel ALL --args "isolcpus=2-19,22-39"
240
242
```
241
243
242
244
243
-
### 4. Validate with dpdk-testpmd
245
+
### 4. Troubleshooting
244
246
245
-
TODO
247
+
⚠️ RSS on Intel X710 (i40e)
248
+
249
+
We observed that RSS on Intel X710 (i40e) may not distribute packets across multiple RX queues with the default RTE_ETH_RSS_IP.
250
+
For X710 (i40e) we use full RSS offload provided by the driver. If you experience similar issues, try to set `rss_offload` explicitly to override the default RSS offload configuration.
0 commit comments