From: Kevin Wolf <kwolf@redhat.com>
To: Li Feng <fengli@smartx.com>
Cc: lifeng1519@gmail.com, kyle@smartx.com,
"open list:All patches CC here" <qemu-devel@nongnu.org>,
"open list:raw" <qemu-block@nongnu.org>,
Max Reitz <mreitz@redhat.com>
Subject: Re: [PATCH] file-posix: check the use_lock
Date: Fri, 4 Dec 2020 11:40:16 +0100 [thread overview]
Message-ID: <20201204104016.GC4833@merkur.fritz.box> (raw)
In-Reply-To: <1607077703-32344-1-git-send-email-fengli@smartx.com>
Am 04.12.2020 um 11:28 hat Li Feng geschrieben:
> When setting the file.locking = false, we shouldn't set the lock.
>
> Signed-off-by: Li Feng <fengli@smartx.com>
This looks right to me, but can you add a test for this scenario to
iotest 182? This would both demonstrate the effect of the bug (I think
it would be that files are locked after reopen even with locking=off?)
and make sure that we won't have a regression later. Mentioning the
effect in the commit message would be good, too.
Kevin
> block/file-posix.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/block/file-posix.c b/block/file-posix.c
> index d5fd1dbcd2..806764f7e3 100644
> --- a/block/file-posix.c
> +++ b/block/file-posix.c
> @@ -3104,7 +3104,7 @@ static int raw_check_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared,
> }
>
> /* Copy locks to the new fd */
> - if (s->perm_change_fd) {
> + if (s->perm_change_fd && s->use_lock) {
> ret = raw_apply_lock_bytes(NULL, s->perm_change_fd, perm, ~shared,
> false, errp);
> if (ret < 0) {
> --
> 2.24.3
>
next prev parent reply other threads:[~2020-12-04 10:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-04 10:28 [PATCH] file-posix: check the use_lock Li Feng
2020-12-04 10:40 ` Kevin Wolf [this message]
2020-12-04 10:55 ` Li Feng
2020-12-07 10:50 ` Feng Li
2020-12-07 11:17 ` Kevin Wolf
2020-12-07 11:29 ` Li Feng
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=20201204104016.GC4833@merkur.fritz.box \
--to=kwolf@redhat.com \
--cc=fengli@smartx.com \
--cc=kyle@smartx.com \
--cc=lifeng1519@gmail.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@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).