From: Wei Liu <wei.liu2@citrix.com>
To: Jim Fehlig <jfehlig@suse.com>
Cc: Anthony PERARD <anthony.perard@citrix.com>,
wei.liu2@citrix.com, Stefano Stabellini <sstabellini@kernel.org>,
ian.jackson@eu.citrix.com, xen-devel@lists.xen.org
Subject: Re: [PATCH V2] libxl: don't add cache mode for qdisk cdrom drives
Date: Mon, 9 May 2016 14:58:17 +0100 [thread overview]
Message-ID: <20160509135817.GO12241@citrix.com> (raw)
In-Reply-To: <1461878446-7676-1-git-send-email-jfehlig@suse.com>
On Thu, Apr 28, 2016 at 03:20:46PM -0600, Jim Fehlig wrote:
> qemu commit 91a097e7 forbids specifying cache mode for empty
> drives. Attempting to create a domain with an empty qdisk cdrom
> drive results in
>
> qemu-system-x86_64: -drive if=ide,index=1,readonly=on,media=cdrom,
> cache=writeback,id=ide-832: Must specify either driver or file
>
We need to fix this one way or another.
> libxl only allows an empty 'target=' for cdroms. By default, cdroms
> are readonly (see the 'access' parameter in xl-disk-configuration.txt)
> and forced to readonly by any tools (e.g. xl) using libxlutil's
> xlu_disk_parse() function. With cdroms always marked readonly,
> explicitly specifying the cache mode for cdrom drives can be dropped.
> The drive's 'readonly=on' option can also be set unconditionally.
>
> Signed-off-by: Jim Fehlig <jfehlig@suse.com>
CC Stefano who made the change to use writeback in
e9a327bbbcab127625b0917a2780cb3601a81d01 . Also CC Anthony.
Ian, Stefano and Anthony, do you have opinion on this patch?
> ---
>
> V2:
> Drop explicitly setting cache mode since cdrom devices are
> readonly.
> Unconditionally add 'readonly=on' drive option for cdroms.
>
> tools/libxl/libxl_dm.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
> index fd12844..959e292 100644
> --- a/tools/libxl/libxl_dm.c
> +++ b/tools/libxl/libxl_dm.c
> @@ -1368,8 +1368,8 @@ static int libxl__build_device_model_args_new(libxl__gc *gc,
>
> if (disks[i].is_cdrom) {
> drive = libxl__sprintf(gc,
> - "if=ide,index=%d,readonly=%s,media=cdrom,cache=writeback,id=ide-%i",
> - disk, disks[i].readwrite ? "off" : "on", dev_number);
> + "if=ide,index=%d,readonly=on,media=cdrom,id=ide-%i",
> + disk, dev_number);
>
> if (target_path)
> drive = libxl__sprintf(gc, "%s,file=%s,format=%s",
> --
> 1.8.0.1
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-05-09 13:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-28 21:20 [PATCH V2] libxl: don't add cache mode for qdisk cdrom drives Jim Fehlig
2016-05-09 13:58 ` Wei Liu [this message]
2016-05-10 10:06 ` Stefano Stabellini
2016-05-13 20:36 ` Jim Fehlig
2016-05-15 15:00 ` Wei Liu
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=20160509135817.GO12241@citrix.com \
--to=wei.liu2@citrix.com \
--cc=anthony.perard@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jfehlig@suse.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xen.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).