Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1291253 > unrolled thread

[PATCH] spi: fix parent-device reference leak

Started byJohan Hovold <johan@kernel.org>
First post2015-12-14 16:20 +0100
Last post2015-12-14 16:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] spi: fix parent-device reference leak Johan Hovold <johan@kernel.org> - 2015-12-14 16:20 +0100

#1291253 — [PATCH] spi: fix parent-device reference leak

FromJohan Hovold <johan@kernel.org>
Date2015-12-14 16:20 +0100
Subject[PATCH] spi: fix parent-device reference leak
Message-ID<qFD4R-7Rv-3@gated-at.bofh.it>
Fix parent-device reference leak due to SPI-core taking an unnecessary
reference to the parent when allocating the master structure, a
reference that was never released.

Note that driver core takes its own reference to the parent when the
master device is registered.

Fixes: 49dce689ad4e ("spi doesn't need class_device")
Cc: stable <stable@vger.kernel.org>	# v2.6.24
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/spi/spi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 2b0a8ec3affb..dee1cb87d24f 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1705,7 +1705,7 @@ struct spi_master *spi_alloc_master(struct device *dev, unsigned size)
 	master->bus_num = -1;
 	master->num_chipselect = 1;
 	master->dev.class = &spi_master_class;
-	master->dev.parent = get_device(dev);
+	master->dev.parent = dev;
 	spi_master_set_devdata(master, &master[1]);
 
 	return master;
-- 
2.4.10

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web