DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] i40e: correct to disable interrupt of FDIR when stop device
@ 2015-11-04 15:01 Jingjing Wu
  2015-11-04 16:27 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Jingjing Wu @ 2015-11-04 15:01 UTC (permalink / raw)
  To: dev

When stop device, should disable interrupt of FDIR but not
enable it. This patch corrected it.

Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
---
 drivers/net/i40e/i40e_ethdev.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index a39bd28..ddf3d38 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -1530,8 +1530,8 @@ i40e_dev_stop(struct rte_eth_dev *dev)
 	}
 
 	if (pf->fdir.fdir_vsi) {
-		i40e_vsi_queues_bind_intr(pf->fdir.fdir_vsi);
-		i40e_vsi_enable_queues_intr(pf->fdir.fdir_vsi);
+		i40e_vsi_queues_unbind_intr(pf->fdir.fdir_vsi);
+		i40e_vsi_disable_queues_intr(pf->fdir.fdir_vsi);
 	}
 	/* Clear all queues and release memory */
 	i40e_dev_clear_queues(dev);
-- 
2.4.0

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] i40e: correct to disable interrupt of FDIR when stop device
  2015-11-04 15:01 [dpdk-dev] [PATCH] i40e: correct to disable interrupt of FDIR when stop device Jingjing Wu
@ 2015-11-04 16:27 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2015-11-04 16:27 UTC (permalink / raw)
  To: Jingjing Wu; +Cc: dev

2015-11-04 23:01, Jingjing Wu:
> When stop device, should disable interrupt of FDIR but not
> enable it. This patch corrected it.
> 
> Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-04 16:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-04 15:01 [dpdk-dev] [PATCH] i40e: correct to disable interrupt of FDIR when stop device Jingjing Wu
2015-11-04 16:27 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).