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
DPDK use requires a couple of changes for the DSA configuration. The workqueue mode has to be `dedicated` and the name has to have a prefix of `dpdk_`.
140
+
141
+
e.g.
142
+
```
143
+
{
144
+
"dev":"wqX.0",
145
+
"mode":"dedicated",
146
+
"size":16,
147
+
"group_id":0,
148
+
"priority":10,
149
+
"block_on_fault":1,
150
+
"type":"user",
151
+
"name":"dpdk_X0",
152
+
"driver_name":"user",
153
+
"threshold":15
154
+
}
155
+
```
156
+
157
+
For testing DPDK, one can use the test container in the [demo directory](../../demo/dsa-dpdk-dmadevtest/) and its deployment [file](../../demo/dsa-dpdk-dmadevtest.yaml).
0 commit comments