This patch series adds interrupt mode support for fm10k, contains four major parts:
1. implement rx_descriptor_done function in fm10k 2. add rx interrupt support in fm10k PF and VF 3. make sure default VID available in dev_init in fm10k 4. fix a memory leak for non-ip packet in l3fwd-power, which happens mostly when testing fm10k interrupt mode. v5 changes: - remove one unnecessary NULL check for rte_free - fix a wrong error message - add more clean up when memory allocation fails - split line over 80 characters to 2 lines - update interrupt mode limitation in fm10k.rst v4 changes: - rebase to latest code - update release 2.3 note in corresponding patches v3 changes: - rebase to latest code - macro renaming according to the EAL change v2 changes: - reword some comments and commit messages - split one big patch into three smaller ones Shaopeng He (6): fm10k: implement rx_descriptor_done function fm10k: setup rx queue interrupts for PF and VF fm10k: remove rx queue interrupts when dev stops fm10k: add rx queue interrupt en/dis functions fm10k: make sure default VID available in dev_init l3fwd-power: fix a memory leak for non-ip packet doc/guides/nics/fm10k.rst | 7 ++ doc/guides/rel_notes/release_2_3.rst | 8 ++ drivers/net/fm10k/fm10k.h | 6 ++ drivers/net/fm10k/fm10k_ethdev.c | 174 ++++++++++++++++++++++++++++++++--- drivers/net/fm10k/fm10k_rxtx.c | 25 +++++ examples/l3fwd-power/main.c | 3 +- 6 files changed, 211 insertions(+), 12 deletions(-) -- 1.9.3