All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alberto Garcia <berto@igalia.com>
To: qemu-devel@nongnu.org
Cc: Alberto Garcia <berto@igalia.com>,
	qemu-block@nongnu.org, Max Reitz <mreitz@redhat.com>,
	Kevin Wolf <kwolf@redhat.com>
Subject: [Qemu-devel] [PATCH v3 02/10] file-posix: x-check-cache-dropped should default to false on reopen
Date: Thu,  6 Sep 2018 12:37:02 +0300	[thread overview]
Message-ID: <4bb3cec113bfbe7ae087b18f860cdc8dc3685a34.1536226505.git.berto@igalia.com> (raw)
In-Reply-To: <cover.1536226505.git.berto@igalia.com>
In-Reply-To: <cover.1536226505.git.berto@igalia.com>

The default value of x-check-cache-dropped is false. There's no reason
to use the previous value as a default in raw_reopen_prepare() because
bdrv_reopen_queue_child() already takes care of putting the old
options in the BDRVReopenState.options QDict.

If x-check-cache-dropped was previously set but is now missing from
the reopen QDict then it should be reset to false.

Signed-off-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
---
 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 fe83cbf0eb..ddac0cc3e6 100644
--- a/block/file-posix.c
+++ b/block/file-posix.c
@@ -851,7 +851,7 @@ static int raw_reopen_prepare(BDRVReopenState *state,
     }
 
     rs->check_cache_dropped = qemu_opt_get_bool(opts, "x-check-cache-dropped",
-                                                s->check_cache_dropped);
+                                                false);
 
     if (s->type == FTYPE_CD) {
         rs->open_flags |= O_NONBLOCK;
-- 
2.11.0

  parent reply	other threads:[~2018-09-06  9:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-06  9:37 [Qemu-devel] [PATCH v3 00/10] Misc reopen-related patches Alberto Garcia
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 01/10] qemu-io: Fix writethrough check in reopen Alberto Garcia
2018-09-06  9:37 ` Alberto Garcia [this message]
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 03/10] block: Remove child references from bs->{options, explicit_options} Alberto Garcia
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 04/10] block: Don't look for child references in append_open_options() Alberto Garcia
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 05/10] block: Allow child references on reopen Alberto Garcia
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 06/10] block: Forbid trying to change unsupported options during reopen Alberto Garcia
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 07/10] file-posix: " Alberto Garcia
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 08/10] block: Allow changing 'discard' on reopen Alberto Garcia
2018-09-13 13:32   ` Max Reitz
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 09/10] block: Allow changing 'detect-zeroes' " Alberto Garcia
2018-09-13 13:34   ` Max Reitz
2018-09-06  9:37 ` [Qemu-devel] [PATCH v3 10/10] block: Allow changing 'force-share' " Alberto Garcia

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=4bb3cec113bfbe7ae087b18f860cdc8dc3685a34.1536226505.git.berto@igalia.com \
    --to=berto@igalia.com \
    --cc=kwolf@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.