From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: "Enrico Jörns" <ejo@pengutronix.de>, barebox@lists.infradead.org
Subject: Re: [PATCH] block: don't error while flushing when write support is disabled
Date: Thu, 15 Jan 2026 15:52:15 +0100 [thread overview]
Message-ID: <4ca9b8e4-c8c4-4a5c-a3a8-996be4e769d2@pengutronix.de> (raw)
In-Reply-To: <20260115142410.3422704-1-ejo@pengutronix.de>
On 1/15/26 3:24 PM, Enrico Jörns wrote:
> If write support for the underlying device is disabled (e.g. by
> disabling CONFIG_MCI_WRITE), blk->ops->write will be NULL.
> Unconditionally dereferencing/calling blk->ops->write() results in a
> NULL pointer dereference.
>
> Fix this by making chunk_flush() a noop for missing write support.
> Don't return an error since there should be nothing to flush if write
> support is disabled, anyway.
>
> Note that barebox currently does not prevent calling write/flush
> operations, even if CONFIG_MCI_WRITE and thus write support is actually
> disabled.
> But this should be handled on another level.
>
> Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Thanks,
Ahmad
> ---
> common/block.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/common/block.c b/common/block.c
> index ca2ed37dbd..abd05eab39 100644
> --- a/common/block.c
> +++ b/common/block.c
> @@ -60,6 +60,9 @@ static int chunk_flush(struct block_device *blk, struct chunk *chunk)
> if (!chunk->dirty)
> return 0;
>
> + if (!blk->ops->write)
> + return 0;
> +
> len = writebuffer_io_len(blk, chunk);
> ret = blk->ops->write(blk, chunk->data, chunk->block_start, len);
> if (ret < 0)
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2026-01-15 14:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-15 14:24 Enrico Jörns
2026-01-15 14:52 ` Ahmad Fatoum [this message]
2026-01-16 7:12 ` Sascha Hauer
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=4ca9b8e4-c8c4-4a5c-a3a8-996be4e769d2@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=ejo@pengutronix.de \
/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