public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] rapidio: use after free in unregister function
@ 2013-07-05  6:02 Dan Carpenter
  2013-07-05  7:06 ` Ryan Mallon
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Carpenter @ 2013-07-05  6:02 UTC (permalink / raw)
  To: Matt Porter; +Cc: Alexandre Bounine, linux-kernel, kernel-janitors

We need to use the _safe version of list_for_each_entry() because we
are freeing the iterator.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/rapidio/rio.c b/drivers/rapidio/rio.c
index f4f30af..84ac64a 100644
--- a/drivers/rapidio/rio.c
+++ b/drivers/rapidio/rio.c
@@ -1701,7 +1701,7 @@ EXPORT_SYMBOL_GPL(rio_register_scan);
 int rio_unregister_scan(int mport_id, struct rio_scan *scan_ops)
 {
 	struct rio_mport *port;
-	struct rio_scan_node *scan;
+	struct rio_scan_node *scan, *tmp;
 
 	pr_debug("RIO: %s for mport_id=%d\n", __func__, mport_id);
 
@@ -1715,7 +1715,7 @@ int rio_unregister_scan(int mport_id, struct rio_scan *scan_ops)
 		    (mport_id == RIO_MPORT_ANY && port->nscan == scan_ops))
 			port->nscan = NULL;
 
-	list_for_each_entry(scan, &rio_scans, node)
+	list_for_each_entry_safe(scan, tmp, &rio_scans, node)
 		if (scan->mport_id == mport_id) {
 			list_del(&scan->node);
 			kfree(scan);

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

end of thread, other threads:[~2013-07-08 11:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-05  6:02 [patch] rapidio: use after free in unregister function Dan Carpenter
2013-07-05  7:06 ` Ryan Mallon
2013-07-05  7:19   ` Dan Carpenter
2013-07-05 19:04     ` Bounine, Alexandre
2013-07-05 20:39   ` [patch v2] " Dan Carpenter
2013-07-05 23:26     ` Ryan Mallon
2013-07-08 11:55     ` Bounine, Alexandre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox