af15ee640d
We find that when traffic is light, a small number of packets will have wrong metadata (e.g. packet type), however this issue will not happen when traffic is heavy. The root cause is some fields in fm10k_rx_desc are read at the wrong time, since the descriptor (being 16-bytes big) is not read as a single atomic operation. When the input speed is slower than software's capability, fm10k scalar Rx function accesses descriptors at about the same time as HW writes them, so the scenario can occur: some fields like pkt_info in fm10k_rx_desc are read before HW writeback but some fields like DD bit are read after HW writeback, this will lead to the later packet parsing function using incorrect value. This patch fixes this issue by reading and parsing Rx descriptor only after first checking that the DD bit is set. Fixes: |
||
---|---|---|
.. | ||
base | ||
fm10k_ethdev.c | ||
fm10k_logs.h | ||
fm10k_rxtx_vec.c | ||
fm10k_rxtx.c | ||
fm10k.h | ||
Makefile | ||
rte_pmd_fm10k_version.map |