All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Jason Wang <jasowang@redhat.com>, qemu-devel@nongnu.org
Cc: cornelia.huck@de.ibm.com, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH V4 2/3] virtio-blk: fail get_features when both scsi and 1.0 were set
Date: Mon, 27 Jul 2015 12:28:23 +0200	[thread overview]
Message-ID: <55B607C7.9070705@redhat.com> (raw)
In-Reply-To: <1437990561-22134-3-git-send-email-jasowang@redhat.com>



On 27/07/2015 11:49, Jason Wang wrote:
> +    if (__virtio_has_feature(features, VIRTIO_F_VERSION_1)) {

No double underscores in userspace code.  Longstanding so it can be
fixed after 2.4 is out---but please remember to do it.

> +        if (s->conf.scsi) {
> +            error_setg(errp, "Virtio 1.0 does not support scsi passthrough!");

Unclear error message, as one would expect SCSI passthrough not to work
anyway for e.g. a disk backed by a file.

It's not a big deal as long as you will disable VIRTIO_BLK_F_SCSI by
default in the same release that enables VIRTIO_F_VERSION_1 by default.

Paolo

> +            return 0;
> +        }
> +        virtio_add_feature(&features, VIRTIO_F_ANY_LAYOUT);
> +    } else {
> +        virtio_add_feature(&features, VIRTIO_BLK_F_SCSI);
> +    }

  reply	other threads:[~2015-07-27 10:28 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-27  9:49 [Qemu-devel] [PATCH V4 0/3] Set correct blk feature for virtio 1.0 Jason Wang
2015-07-27  9:49 ` [Qemu-devel] [PATCH V4 1/3] virtio: get_features() can fail Jason Wang
2015-07-27  9:49 ` [Qemu-devel] [PATCH V4 2/3] virtio-blk: fail get_features when both scsi and 1.0 were set Jason Wang
2015-07-27 10:28   ` Paolo Bonzini [this message]
2015-07-27 10:39     ` Cornelia Huck
2015-07-27 11:23       ` Michael S. Tsirkin
2015-07-27 11:26     ` Michael S. Tsirkin
2015-07-27 11:30       ` Paolo Bonzini
2015-07-28  2:57       ` Jason Wang
2015-07-27  9:49 ` [Qemu-devel] [PATCH V4 3/3] virtio-blk: only clear VIRTIO_F_ANY_LAYOUT for legacy device Jason Wang
2015-07-27 10:30   ` Paolo Bonzini
2015-07-27 11:22     ` Michael S. Tsirkin
2015-07-27 11:30       ` Paolo Bonzini
2015-07-27 13:28       ` Cornelia Huck
2015-07-27 15:27         ` Michael S. Tsirkin
2015-07-27 11:56 ` [Qemu-devel] [PATCH V4 0/3] Set correct blk feature for virtio 1.0 Paolo Bonzini

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=55B607C7.9070705@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=jasowang@redhat.com \
    --cc=mst@redhat.com \
    --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.