netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 net] net/mlx4_core: Test interrupts fail if not all comp vectors called request_irq
@ 2015-10-06 21:27 clsoto
  2015-10-06 21:27 ` [PATCH 2/2] Do not set shared_ports when nreq > MAX_MSIX clsoto
  2015-10-08 11:51 ` [PATCH 1/2 net] net/mlx4_core: Test interrupts fail if not all comp vectors called request_irq Or Gerlitz
  0 siblings, 2 replies; 10+ messages in thread
From: clsoto @ 2015-10-06 21:27 UTC (permalink / raw)
  To: davem; +Cc: netdev, ogerlitz, brking, Carol L Soto

From: Carol L Soto <clsoto@linux.vnet.ibm.com>

Test interrupts fails if not all completion vectors called
request_irq. This case can happen if only mlx4_en loads and
we have more completion vectors than rx rings. 

Fixes: c66fa19c405a ('net/mlx4: Add EQ pool')
Acked-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Carol L Soto <clsoto@linux.vnet.ibm.com>

---
 drivers/net/ethernet/mellanox/mlx4/eq.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/ethernet/mellanox/mlx4/eq.c b/drivers/net/ethernet/mellanox/mlx4/eq.c
index 8e81e53..c344884 100644
--- a/drivers/net/ethernet/mellanox/mlx4/eq.c
+++ b/drivers/net/ethernet/mellanox/mlx4/eq.c
@@ -1364,6 +1364,10 @@ int mlx4_test_interrupts(struct mlx4_dev *dev)
 	 * and performing a NOP command
 	 */
 	for(i = 0; !err && (i < dev->caps.num_comp_vectors); ++i) {
+		/* Make sure request_irq was called */
+		if (!priv->eq_table.eq[i].have_irq)
+			continue;
+
 		/* Temporary use polling for command completions */
 		mlx4_cmd_use_polling(dev);
 
-- 
Can we push this patch to 4.2-stable as the bug was introduced in 4.2-rc1 
1.8.3.1

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

end of thread, other threads:[~2015-10-08 11:51 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-06 21:27 [PATCH 1/2 net] net/mlx4_core: Test interrupts fail if not all comp vectors called request_irq clsoto
2015-10-06 21:27 ` [PATCH 2/2] Do not set shared_ports when nreq > MAX_MSIX clsoto
2015-10-06 21:39   ` Or Gerlitz
2015-10-06 21:46     ` Carol Soto
2015-10-07  7:25       ` Matan Barak
2015-10-07  8:08         ` Matan Barak
2015-10-07 14:20           ` Carol Soto
2015-10-08 11:54       ` David Miller
2015-10-08 11:49         ` Or Gerlitz
2015-10-08 11:51 ` [PATCH 1/2 net] net/mlx4_core: Test interrupts fail if not all comp vectors called request_irq Or Gerlitz

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).