qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Pavel Hrdina <phrdina@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 2/2] scsi-disk: scsi-block device for scsi pass-through should not be removable
Date: Wed, 29 May 2013 15:32:50 +0200	[thread overview]
Message-ID: <51A60382.1070703@redhat.com> (raw)
In-Reply-To: <51A602E9.3010604@redhat.com>

On 29.5.2013 15:30, Paolo Bonzini wrote:
> Il 29/05/2013 14:12, Pavel Hrdina ha scritto:
>> This patch adds a new SCSI_DISK_F_MONITOR_NOT_REMOVABLE feature. By this
>> feature we can set that the scsi-block (scsi pass-through) device will still
>> be removable from the guest side, but from monitor it cannot be removed.
>>
>> Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
>> ---
>>   hw/scsi/scsi-disk.c | 10 +++++++---
>>   1 file changed, 7 insertions(+), 3 deletions(-)
>>
>> diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
>> index c8d2a99..190c3ad 100644
>> --- a/hw/scsi/scsi-disk.c
>> +++ b/hw/scsi/scsi-disk.c
>> @@ -61,8 +61,9 @@ typedef struct SCSIDiskReq {
>>       BlockAcctCookie acct;
>>   } SCSIDiskReq;
>>
>> -#define SCSI_DISK_F_REMOVABLE   0
>> -#define SCSI_DISK_F_DPOFUA      1
>> +#define SCSI_DISK_F_REMOVABLE               0
>> +#define SCSI_DISK_F_DPOFUA                  1
>> +#define SCSI_DISK_F_MONITOR_NOT_REMOVABLE   2
>>
>>   struct SCSIDiskState
>>   {
>> @@ -2107,7 +2108,8 @@ static int scsi_initfn(SCSIDevice *dev)
>>           return -1;
>>       }
>>
>> -    if (s->features & (1 << SCSI_DISK_F_REMOVABLE)) {
>> +    if ((s->features & (1 << SCSI_DISK_F_REMOVABLE)) &&
>> +            !(s->features & (1 << SCSI_DISK_F_MONITOR_NOT_REMOVABLE))) {
>>           bdrv_set_dev_ops(s->qdev.conf.bs, &scsi_disk_removable_block_ops, s);
>>       } else {
>>           bdrv_set_dev_ops(s->qdev.conf.bs, &scsi_disk_block_ops, s);
>> @@ -2463,6 +2465,8 @@ static const TypeInfo scsi_cd_info = {
>>   static Property scsi_block_properties[] = {
>>       DEFINE_PROP_DRIVE("drive", SCSIDiskState, qdev.conf.bs),
>>       DEFINE_PROP_INT32("bootindex", SCSIDiskState, qdev.conf.bootindex, -1),
>> +    DEFINE_PROP_BIT("monitor_not_removable", SCSIDiskState, features,
>> +                    SCSI_DISK_F_MONITOR_NOT_REMOVABLE, true),
>>       DEFINE_PROP_END_OF_LIST(),
>>   };
>>
>>
>
> Kevin convinced me offlist to take this patch, but I'll still ask for
> two changes:
>
> 1) rename the feature bit to SCSI_DISK_F_NO_REMOVABLE_DEVOPS
>
> 2) set the feature in scsi_block_initfn instead of using a bit, because
> the user should not be able to toggle this.
>
> Thanks!
>
> Paolo
>

I've red that list and OK, I'll update that patch.

Pavel

      reply	other threads:[~2013-05-29 13:33 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-29 12:12 [Qemu-devel] [PATCH 0/2] disable the scsi pass-through eject from monitor Pavel Hrdina
2013-05-29 12:12 ` [Qemu-devel] [PATCH 1/2] scsi-generic: check the return value of bdrv_aio_ioctl in execute_command Pavel Hrdina
2013-05-29 12:22   ` Paolo Bonzini
2013-05-29 12:12 ` [Qemu-devel] [PATCH 2/2] scsi-disk: scsi-block device for scsi pass-through should not be removable Pavel Hrdina
2013-05-29 12:24   ` Paolo Bonzini
2013-05-29 12:33     ` Pavel Hrdina
2013-05-29 12:56       ` Paolo Bonzini
2013-05-29 13:30   ` Paolo Bonzini
2013-05-29 13:32     ` Pavel Hrdina [this message]

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=51A60382.1070703@redhat.com \
    --to=phrdina@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=pbonzini@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 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).