From: Stefano Garzarella <sgarzare@redhat.com>
To: Peter Lieven <pl@kamp.de>
Cc: kwolf@redhat.com, mreitz@redhat.com, qemu-stable@nongnu.org,
qemu-block@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [PATCH] block/nfs: fix int overflow in nfs_client_open_qdict
Date: Thu, 10 Dec 2020 10:00:16 +0100 [thread overview]
Message-ID: <20201210090016.c5fa57c6q266xvbv@steredhat> (raw)
In-Reply-To: <20201209121735.16437-1-pl@kamp.de>
On Wed, Dec 09, 2020 at 01:17:35PM +0100, Peter Lieven wrote:
>nfs_client_open returns the file size in sectors. This effectively
>makes it impossible to open files larger than 1TB.
>
>Fixes: a1a42af422d46812f1f0cebe6b230c20409a3731
>Cc: qemu-stable@nongnu.org
>Signed-off-by: Peter Lieven <pl@kamp.de>
>---
> block/nfs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
The issue seems to be pre-existing to the commit
a1a42af422d46812f1f0cebe6b230c20409a3731, but of course that commit
touched this code and this patch would not apply before, so it seems
okay to me:
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Thanks,
Stefano
>
>diff --git a/block/nfs.c b/block/nfs.c
>index 77905f516d..8c1968bb41 100644
>--- a/block/nfs.c
>+++ b/block/nfs.c
>@@ -592,7 +592,7 @@ static int64_t nfs_client_open_qdict(NFSClient *client, QDict *options,
> int flags, int open_flags, Error **errp)
> {
> BlockdevOptionsNfs *opts;
>- int ret;
>+ int64_t ret;
>
> opts = nfs_options_qdict_to_qapi(options, errp);
> if (opts == NULL) {
>--
>2.17.1
>
>
>
next prev parent reply other threads:[~2020-12-10 9:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-09 12:17 [PATCH] block/nfs: fix int overflow in nfs_client_open_qdict Peter Lieven
2020-12-10 9:00 ` Stefano Garzarella [this message]
2020-12-15 16:03 ` Kevin Wolf
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=20201210090016.c5fa57c6q266xvbv@steredhat \
--to=sgarzare@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=pl@kamp.de \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.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).