From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Richard Weinberger <richard@nod.at>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
Marek Vasut <marek.vasut@gmail.com>,
linux-mtd@lists.infradead.org
Subject: Re: [PATCH] mtd: Fallback to ->_read/write() when ->_read/write_oob() is missing
Date: Wed, 18 Jul 2018 20:29:32 +0200 [thread overview]
Message-ID: <20180718202932.50880e48@bbrezillon> (raw)
In-Reply-To: <20180714124200.17148-1-miquel.raynal@bootlin.com>
On Sat, 14 Jul 2018 14:42:00 +0200
Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> Some MTD sublayers/drivers are implementing ->_read/write() and
> not ->_read/write_oob().
>
> While for NAND devices both are usually valid, for NOR devices, using
> the _oob variant has no real meaning. But, as the MTD layer is supposed
> to hide as much as possible the flash complexity to the user, there is
> no reason to error out while it is just a matter of rewritting things
> internally.
>
> Add a fallback on mtd->_read() (resp. mtd->_write()) when the user calls
> mtd_read_oob() (resp. mtd_write_oob()) while mtd->_read_oob() (resp.
> mtd->_write_oob) is not implemented. There is already a fallback on the
> _oob variant if the former is used.
>
> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Applied.
Thanks,
Boris
> ---
> drivers/mtd/mtdcore.c | 28 ++++++++++++++++++++++------
> 1 file changed, 22 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
> index 42395df06be9..97ac219c082e 100644
> --- a/drivers/mtd/mtdcore.c
> +++ b/drivers/mtd/mtdcore.c
> @@ -1155,21 +1155,29 @@ int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops)
> {
> int ret_code;
> ops->retlen = ops->oobretlen = 0;
> - if (!mtd->_read_oob)
> - return -EOPNOTSUPP;
>
> ret_code = mtd_check_oob_ops(mtd, from, ops);
> if (ret_code)
> return ret_code;
>
> ledtrig_mtd_activity();
> +
> + /* Check the validity of a potential fallback on mtd->_read */
> + if (!mtd->_read_oob && (!mtd->_read || ops->oobbuf))
> + return -EOPNOTSUPP;
> +
> + if (mtd->_read_oob)
> + ret_code = mtd->_read_oob(mtd, from, ops);
> + else
> + ret_code = mtd->_read(mtd, from, ops->len, &ops->retlen,
> + ops->datbuf);
> +
> /*
> * In cases where ops->datbuf != NULL, mtd->_read_oob() has semantics
> * similar to mtd->_read(), returning a non-negative integer
> * representing max bitflips. In other cases, mtd->_read_oob() may
> * return -EUCLEAN. In all cases, perform similar logic to mtd_read().
> */
> - ret_code = mtd->_read_oob(mtd, from, ops);
> if (unlikely(ret_code < 0))
> return ret_code;
> if (mtd->ecc_strength == 0)
> @@ -1184,8 +1192,7 @@ int mtd_write_oob(struct mtd_info *mtd, loff_t to,
> int ret;
>
> ops->retlen = ops->oobretlen = 0;
> - if (!mtd->_write_oob)
> - return -EOPNOTSUPP;
> +
> if (!(mtd->flags & MTD_WRITEABLE))
> return -EROFS;
>
> @@ -1194,7 +1201,16 @@ int mtd_write_oob(struct mtd_info *mtd, loff_t to,
> return ret;
>
> ledtrig_mtd_activity();
> - return mtd->_write_oob(mtd, to, ops);
> +
> + /* Check the validity of a potential fallback on mtd->_write */
> + if (!mtd->_write_oob && (!mtd->_write || ops->oobbuf))
> + return -EOPNOTSUPP;
> +
> + if (mtd->_write_oob)
> + return mtd->_write_oob(mtd, to, ops);
> + else
> + return mtd->_write(mtd, to, ops->len, &ops->retlen,
> + ops->datbuf);
> }
> EXPORT_SYMBOL_GPL(mtd_write_oob);
>
prev parent reply other threads:[~2018-07-18 18:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-14 12:42 [PATCH] mtd: Fallback to ->_read/write() when ->_read/write_oob() is missing Miquel Raynal
2018-07-18 18:29 ` Boris Brezillon [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180718202932.50880e48@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=richard@nod.at \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).