[dpdk-dev] [PATCH 1/3] net/enic: cleanup interrupt setup when stopping port

2016-09-27 Thread Bruce Richardson
On Mon, Sep 19, 2016 at 11:50:09AM -0700, Nelson Escobar wrote: > enic_disable() wasn't calling rte_intr_disable() or > rte_intr_callback_unregister(). If stopping/starting a port, the > latter omission would result in the same interrupt callback being > registered multiple times, which would then

[dpdk-dev] [PATCH 1/3] net/enic: cleanup interrupt setup when stopping port

2016-09-19 Thread Nelson Escobar
enic_disable() wasn't calling rte_intr_disable() or rte_intr_callback_unregister(). If stopping/starting a port, the latter omission would result in the same interrupt callback being registered multiple times, which would then cause it to be called multiple times on every interrupt. Fixes: fefed3