From: John Garry <john.g.garry@oracle.com>
To: Luis Chamberlain <mcgrof@kernel.org>,
axboe@kernel.dk, hch@lst.de, hare@suse.de, kbusch@kernel.org,
sagi@grimberg.me, linux-nvme@lists.infradead.org,
willy@infradead.org, dave@stgolabs.net, david@fromorbit.com,
djwong@kernel.org
Cc: ritesh.list@gmail.com, linux-fsdevel@vger.kernel.org,
linux-xfs@vger.kernel.org, linux-mm@kvack.org,
linux-block@vger.kernel.org, gost.dev@samsung.com,
p.raghav@samsung.com, da.gomez@samsung.com,
kernel@pankajraghav.com
Subject: Re: [PATCH 2/2] nvme: use blk_validate_block_size() for max LBA check
Date: Wed, 18 Dec 2024 08:08:19 +0000 [thread overview]
Message-ID: <eb556e80-f7f7-44f7-b015-11ae50d5484b@oracle.com> (raw)
In-Reply-To: <20241218020212.3657139-3-mcgrof@kernel.org>
On 18/12/2024 02:02, Luis Chamberlain wrote:
nit: is this really an LBA check?
> The block layer already has support to validates proper block sizes
> with blk_validate_block_size(), we can leverage that as well.
>
> No functional changes.
>
> Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Most of my comments are minor/off topic, so:
Reviewed-by: John Garry <john.g.garry@oracle.com>
> ---
> drivers/nvme/host/core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
> index d169a30eb935..a970168a3014 100644
> --- a/drivers/nvme/host/core.c
> +++ b/drivers/nvme/host/core.c
> @@ -2034,7 +2034,7 @@ static bool nvme_update_disk_info(struct nvme_ns *ns, struct nvme_id_ns *id,
> * or smaller than a sector size yet, so catch this early and don't
> * allow block I/O.
I'm not sure if this comment is really still of value or can be reduced
> */
> - if (head->lba_shift > PAGE_SHIFT || head->lba_shift < SECTOR_SHIFT) {
> + if (blk_validate_block_size(bs)) {
There was only a single user of this outside the block layer, and I was
hoping that this function could eventually be internalized - not any longer.
> bs = (1 << 9);
comment on original code:
bs = SECTOR_SIZE
seems more obvious
> valid = false;
> }
next prev parent reply other threads:[~2024-12-18 8:09 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-18 2:02 [PATCH 0/2] block size limit cleanups Luis Chamberlain
2024-12-18 2:02 ` [PATCH 1/2] block/bdev: use helper for max block size check Luis Chamberlain
2024-12-18 2:02 ` [PATCH 2/2] nvme: use blk_validate_block_size() for max LBA check Luis Chamberlain
2024-12-18 8:08 ` John Garry [this message]
2024-12-18 2:09 ` [PATCH 0/2] block size limit cleanups Keith Busch
2024-12-18 7:21 ` Christoph Hellwig
2024-12-18 14:22 ` Jens Axboe
2024-12-18 17:14 ` Max Gurtovoy
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=eb556e80-f7f7-44f7-b015-11ae50d5484b@oracle.com \
--to=john.g.garry@oracle.com \
--cc=axboe@kernel.dk \
--cc=da.gomez@samsung.com \
--cc=dave@stgolabs.net \
--cc=david@fromorbit.com \
--cc=djwong@kernel.org \
--cc=gost.dev@samsung.com \
--cc=hare@suse.de \
--cc=hch@lst.de \
--cc=kbusch@kernel.org \
--cc=kernel@pankajraghav.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-nvme@lists.infradead.org \
--cc=linux-xfs@vger.kernel.org \
--cc=mcgrof@kernel.org \
--cc=p.raghav@samsung.com \
--cc=ritesh.list@gmail.com \
--cc=sagi@grimberg.me \
--cc=willy@infradead.org \
/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).