How do I run dpdk-dumpcap tool without the primary process crashing?
I’m trying to run dpdk-dumpcap 22.11.1 tool to capture packets received on one interface, but my primary process keeps crashing with one of the following signatures –
DPDK Flow director to multiple RX queues
Is there any way to use multiple RX queues in RTE_FLOW_ACTION_TYPE_QUEUE DPDK Flow director?
DPDK Flow director to multiple RX queues
Is there any way to use multiple RX queues in RTE_FLOW_ACTION_TYPE_QUEUE DPDK Flow director?
DPDK get only packet headers and discard data mbuf
I’m writing a DPDK program that filters only udp/tcp flows using rte_flow, and then I have a queue that holds all the different packet mbufs. But I only need the packet headers, can I somehow configure the program to insert only the packet headers into the queue? Or alternately, immediately free the data portions of the mbufs on receive?