[PATCH v2 4/4] mtd: mtdconcat: add suspend lock handling
Boris Brezillon
boris.brezillon at collabora.com
Wed Oct 20 01:55:47 PDT 2021
On Wed, 20 Oct 2021 10:45:34 +0200
Sean Nyekjaer <sean at geanix.com> wrote:
> Use MTD hooks to control suspend/resume of MTD devices.
Please explain in great details why this is needed.
>
> Fixes: 013e6292aaf5 ("mtd: rawnand: Simplify the locking")
> Suggested-by: Boris Brezillon <boris.brezillon at collabora.com>
> Signed-off-by: Sean Nyekjaer <sean at geanix.com>
This patch should be moved earlier (before 'mtd: core: protect access to
MTD devices while in suspend') in the series.
> ---
> drivers/mtd/mtdconcat.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/mtdconcat.c b/drivers/mtd/mtdconcat.c
> index f685a581df48..1ec36890118f 100644
> --- a/drivers/mtd/mtdconcat.c
> +++ b/drivers/mtd/mtdconcat.c
> @@ -566,9 +566,11 @@ static int concat_suspend(struct mtd_info *mtd)
>
> for (i = 0; i < concat->num_subdev; i++) {
> struct mtd_info *subdev = concat->subdev[i];
> - if ((rc = mtd_suspend(subdev)) < 0)
> + rc = subdev->_suspend ? subdev->_suspend(subdev) : 0;
> + if (rc < 0)
> return rc;
Same here, you need a fat comment explaining why mtd_suspend() is not
used.
> }
> +
> return rc;
> }
>
> @@ -579,7 +581,8 @@ static void concat_resume(struct mtd_info *mtd)
>
> for (i = 0; i < concat->num_subdev; i++) {
> struct mtd_info *subdev = concat->subdev[i];
> - mtd_resume(subdev);
> + if (subdev->_resume)
> + subdev->_resume(subdev);
Ditto.
> }
> }
>
More information about the linux-mtd
mailing list