mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
spi: fix double-free on spi_unregister_master
After 49dce689ad
, device_for_each_child
iteration hits the master device itself. Do not call spi_unregister_device()
for the master device.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Acked-by: David Brownell <david-b@pacbell.net>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
cbff2fbf55
commit
350d0076c5
@ -457,10 +457,11 @@ done:
|
||||
EXPORT_SYMBOL_GPL(spi_register_master);
|
||||
|
||||
|
||||
static int __unregister(struct device *dev, void *unused)
|
||||
static int __unregister(struct device *dev, void *master_dev)
|
||||
{
|
||||
/* note: before about 2.6.14-rc1 this would corrupt memory: */
|
||||
spi_unregister_device(to_spi_device(dev));
|
||||
if (dev != master_dev)
|
||||
spi_unregister_device(to_spi_device(dev));
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -478,7 +479,8 @@ void spi_unregister_master(struct spi_master *master)
|
||||
{
|
||||
int dummy;
|
||||
|
||||
dummy = device_for_each_child(master->dev.parent, NULL, __unregister);
|
||||
dummy = device_for_each_child(master->dev.parent, &master->dev,
|
||||
__unregister);
|
||||
device_unregister(&master->dev);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(spi_unregister_master);
|
||||
|
Loading…
Reference in New Issue
Block a user