From: Paolo Bonzini <pbonzini@redhat.com>
To: Michael Tokarev <mjt@tls.msk.ru>,
Hani Benhabiles <kroosec@gmail.com>,
qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, kwolf@redhat.com, stefanha@redhat.com
Subject: Re: [Qemu-trivial] [PATCH 1/2] nbd: Don't export a block device with no medium.
Date: Mon, 19 May 2014 13:03:39 +0200 [thread overview]
Message-ID: <5379E50B.5070607@redhat.com> (raw)
In-Reply-To: <5379BA0A.7080200@msgid.tls.msk.ru>
Il 19/05/2014 10:00, Michael Tokarev ha scritto:
> 18.05.2014 14:50, Hani Benhabiles wrote:
>> The device is exported with erroneous values and can't be read.
>>
>> Before the patch:
>> $ sudo nbd-client localhost -p 10809 /dev/nbd0 -name floppy0
>> Negotiation: ..size = 17592186044415MB
>> bs=1024, sz=18446744073709547520 bytes
>>
>> $ sudo mount /dev/nbd0 /mnt/tmp/
>> mount: block device /dev/nbd0 is write-protected, mounting read-only
>> mount: /dev/nbd0: can't read superblock
>>
>> After the patch:
>> (qemu) nbd_server_add ide0-hd0
>> (qemu) nbd_server_add floppy0
>> Device 'floppy0' has no medium
>
> I'm not sure this is the right direction. Maybe we should actually
> allow exporting devices with no medium to be able to insert medium
> later without re-starting the server? Especially with -t (persistent).
> I dunno. At least this is the decision which should not be left to
> a -trivial tree.
The protocol has no support for marking a device as no-medium, or for
reporting a medium change, so there's nothing sane that we can do.
(Upon a medium change, for example, the embedded NBD server will shut
down all connections).
In particular, for qemu-nbd there is no support for named exports, so
even with "-t" it makes sense to just exit with an error condition and
ask the user to reinvoke qemu-nbd later.
I'll revive the nbd-next branch for these two patches. Thanks Michael
for carrying the other two.
Paolo
WARNING: multiple messages have this Message-ID (diff)
From: Paolo Bonzini <pbonzini@redhat.com>
To: Michael Tokarev <mjt@tls.msk.ru>,
Hani Benhabiles <kroosec@gmail.com>,
qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, kwolf@redhat.com, stefanha@redhat.com
Subject: Re: [Qemu-devel] [Qemu-trivial] [PATCH 1/2] nbd: Don't export a block device with no medium.
Date: Mon, 19 May 2014 13:03:39 +0200 [thread overview]
Message-ID: <5379E50B.5070607@redhat.com> (raw)
In-Reply-To: <5379BA0A.7080200@msgid.tls.msk.ru>
Il 19/05/2014 10:00, Michael Tokarev ha scritto:
> 18.05.2014 14:50, Hani Benhabiles wrote:
>> The device is exported with erroneous values and can't be read.
>>
>> Before the patch:
>> $ sudo nbd-client localhost -p 10809 /dev/nbd0 -name floppy0
>> Negotiation: ..size = 17592186044415MB
>> bs=1024, sz=18446744073709547520 bytes
>>
>> $ sudo mount /dev/nbd0 /mnt/tmp/
>> mount: block device /dev/nbd0 is write-protected, mounting read-only
>> mount: /dev/nbd0: can't read superblock
>>
>> After the patch:
>> (qemu) nbd_server_add ide0-hd0
>> (qemu) nbd_server_add floppy0
>> Device 'floppy0' has no medium
>
> I'm not sure this is the right direction. Maybe we should actually
> allow exporting devices with no medium to be able to insert medium
> later without re-starting the server? Especially with -t (persistent).
> I dunno. At least this is the decision which should not be left to
> a -trivial tree.
The protocol has no support for marking a device as no-medium, or for
reporting a medium change, so there's nothing sane that we can do.
(Upon a medium change, for example, the embedded NBD server will shut
down all connections).
In particular, for qemu-nbd there is no support for named exports, so
even with "-t" it makes sense to just exit with an error condition and
ask the user to reinvoke qemu-nbd later.
I'll revive the nbd-next branch for these two patches. Thanks Michael
for carrying the other two.
Paolo
next prev parent reply other threads:[~2014-05-19 11:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-18 10:50 [Qemu-trivial] [PATCH 1/2] nbd: Don't export a block device with no medium Hani Benhabiles
2014-05-18 10:50 ` [Qemu-devel] " Hani Benhabiles
2014-05-18 10:50 ` [Qemu-trivial] [PATCH 2/2] nbd: Don't validate from and len in NBD_CMD_DISC Hani Benhabiles
2014-05-18 10:50 ` [Qemu-devel] " Hani Benhabiles
2014-05-19 11:05 ` [Qemu-trivial] " Paolo Bonzini
2014-05-19 11:05 ` [Qemu-devel] " Paolo Bonzini
2014-05-19 21:22 ` [Qemu-trivial] " Hani Benhabiles
2014-05-19 21:22 ` [Qemu-devel] " Hani Benhabiles
2014-05-19 8:00 ` [Qemu-trivial] [PATCH 1/2] nbd: Don't export a block device with no medium Michael Tokarev
2014-05-19 8:00 ` [Qemu-devel] " Michael Tokarev
2014-05-19 11:03 ` Paolo Bonzini [this message]
2014-05-19 11:03 ` 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=5379E50B.5070607@redhat.com \
--to=pbonzini@redhat.com \
--cc=kroosec@gmail.com \
--cc=kwolf@redhat.com \
--cc=mjt@tls.msk.ru \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=stefanha@redhat.com \
/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.