mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
mtd: core: Fix refcounting for unpartitioned MTDs
Apply changes to usecount also to the master partition.
Otherwise we have no refcounting at all if an MTD has no partitions.
Cc: stable@vger.kernel.org
Fixes: 46b5889cc2
("mtd: implement proper partition handling")
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20201206202220.27290-1-richard@nod.at
This commit is contained in:
committed by
Miquel Raynal
parent
18b9c94037
commit
1ca71415f0
@@ -993,6 +993,8 @@ int __get_mtd_device(struct mtd_info *mtd)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
master->usecount++;
|
||||||
|
|
||||||
while (mtd->parent) {
|
while (mtd->parent) {
|
||||||
mtd->usecount++;
|
mtd->usecount++;
|
||||||
mtd = mtd->parent;
|
mtd = mtd->parent;
|
||||||
@@ -1059,6 +1061,8 @@ void __put_mtd_device(struct mtd_info *mtd)
|
|||||||
mtd = mtd->parent;
|
mtd = mtd->parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
master->usecount--;
|
||||||
|
|
||||||
if (master->_put_device)
|
if (master->_put_device)
|
||||||
master->_put_device(master);
|
master->_put_device(master);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user