All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] net/mlx4: double free of dev_vfs
@ 2015-06-01 14:41 clsoto
  2015-06-01 14:41 ` [PATCH net] net/mlx4: need to call close fw if alloc icm is called twice clsoto
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: clsoto @ 2015-06-01 14:41 UTC (permalink / raw)
  To: davem; +Cc: netdev, amirv, jackm, brking, clsoto

If user loads mlx4_core with num_vfs greater than supported
then variable dev->dev_vfs is freed 2 times after unloading
the driver.

Signed-off-by: Carol L Soto <clsoto@linux.vnet.ibm.com>
---
 drivers/net/ethernet/mellanox/mlx4/main.c |    1 +
 1 file changed, 1 insertion(+)

--- a/drivers/net/ethernet/mellanox/mlx4/main.c
+++ b/drivers/net/ethernet/mellanox/mlx4/main.c
@@ -2685,6 +2685,7 @@ disable_sriov:
 free_mem:
 	dev->persist->num_vfs = 0;
 	kfree(dev->dev_vfs);
+	dev->dev_vfs = NULL;
 	return dev_flags & ~MLX4_FLAG_MASTER;
 }
 

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

end of thread, other threads:[~2015-06-02  7:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-01 14:41 [PATCH net] net/mlx4: double free of dev_vfs clsoto
2015-06-01 14:41 ` [PATCH net] net/mlx4: need to call close fw if alloc icm is called twice clsoto
2015-06-02  7:25   ` Or Gerlitz
2015-06-01 14:41 ` [PATCH net] net/mlx4: fix typo in mlx4_set_vf_mac clsoto
2015-06-02  7:25 ` [PATCH net] net/mlx4: double free of dev_vfs Or Gerlitz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.