From: Jan Kiszka <jan.kiszka@siemens.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: "aliguori@us.ibm.com" <aliguori@us.ibm.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"quintela@redhat.com" <quintela@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 0/6] qapi: Convert migrate
Date: Wed, 15 Feb 2012 18:39:31 +0100 [thread overview]
Message-ID: <4F3BEDD3.5070307@siemens.com> (raw)
In-Reply-To: <20120215152333.1beb96b1@doriath.home>
On 2012-02-15 18:23, Luiz Capitulino wrote:
> On Wed, 15 Feb 2012 14:34:52 +0100
> Jan Kiszka <jan.kiszka@siemens.com> wrote:
>
>> On 2012-02-15 13:49, Luiz Capitulino wrote:
>>> On Wed, 15 Feb 2012 09:59:07 +0100
>>> Jan Kiszka <jan.kiszka@siemens.com> wrote:
>>>
>>>> On 2012-02-10 20:31, Luiz Capitulino wrote:
>>>>> This is a rebase of Anthony's conversion, from his glib branch; and this is
>>>>> also the beginning of the conversion of complex commands to the qapi.
>>>>>
>>>>> There are two important changes that should be observed:
>>>>>
>>>>> 1. patch 5/6 purges the 'mon' object from migration code. One of the
>>>>> consequences is that we lose the ability to print progress status to
>>>>> the HMP user (esp. in block migration)
>>>>
>>>> This smells extremely fishy. You have some common "monitor" context in
>>>> both cases, means something that decides where suspend/resume takes
>>>> effect or where to pick up file descriptors from. If the exiting Monitor
>>>> object is not generic enough, introduce some super-class and use that in
>>>> common services. Or make sure that a variant of Monitor is also valid
>>>> over QMP. But don't remove the dependency from the API, while
>>>> reintroducing it via the backdoor of cur_mon.
>>>
>>> What we really want to do here is to untangle HMP and QMP. Unfortunately,
>>> the migrate command is one of those commands where the two are deeply
>>> tangled and the split won't be perfect.
>>>
>>> However, the two cases you mention above are solvable:
>>>
>>> 1. suspend/resume: this is *really* a HMP feature and shouldn't be in any
>>> QMP code path. This is correctly addressed in this series by moving it
>>> to hmp_migrate()
>>
>> Almost correctly. ;)
>
> Well, it was moved to the right place :)
(see the other thread)
>
>>>
>>> 2. file descriptor passing: the new QMP server will support sessions and
>>> we'll move statefull commands (like getfd) to it. When we do it, we'll
>>> introduce a new API to get fds that won't depend on the monitor. However,
>>> this requires all commands to be converted to the qapi first. Meanwhile
>>> we use the qemu_get_fd() API.
>>>
>>> Note: qemu_get_fd() is temporary, it shouldn't be a problem to use it
>>> (if it's not incorrect, of course, I honestly haven't fully tested it yet).
>>
>> So there will be a common super-class of Monitor and that new QMP
>> session that also manages the file descriptors? That would make sense.
>
> Oh, yes. Now I see that you said exactly that earlier. Sorry for more or less
> re-stating it.
>
>> Still, there would be monitor_get_fd and qmp_get_fd then not
>> qemu_get_fd. I think that should be done already.
>
> The problem is that monitor_get_fd() already exists and qmp_get_fd()
> doesn't make much sense (as this is not related to QMP right now). So,
> I could call it monitor_get_fd_cur() or something like this.
What object represent a QMP session now? That object will once hold the
reference to the FDs. So some qmp_get_fd will take that session and
return the requested fd - so, it does make sense, long-term at least.
In any case, as long as everyone can mess with cur_mon, you don't need
to introduce wrappers that just link a normal monitor service with that
variable.
Jan
--
Siemens AG, Corporate Technology, CT T DE IT 1
Corporate Competence Center Embedded Linux
next prev parent reply other threads:[~2012-02-15 17:39 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-10 19:31 [Qemu-devel] [PATCH 0/6] qapi: Convert migrate Luiz Capitulino
2012-02-10 19:31 ` [Qemu-devel] [PATCH 1/6] QError: Introduce new errors for the migration command Luiz Capitulino
2012-02-15 13:10 ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 2/6] monitor: Introduce qemu_get_fd() Luiz Capitulino
2012-02-15 13:11 ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 3/6] QDict: Introduce qdict_copy() Luiz Capitulino
2012-02-15 13:10 ` Juan Quintela
2012-02-15 17:01 ` Luiz Capitulino
2012-02-10 19:31 ` [Qemu-devel] [PATCH 4/6] Error: Introduce error_copy() Luiz Capitulino
2012-02-15 9:04 ` Paolo Bonzini
2012-02-15 13:05 ` Luiz Capitulino
2012-02-15 13:16 ` Paolo Bonzini
2012-02-15 13:27 ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 5/6] Purge migration of (almost) everything to do with monitors Luiz Capitulino
2012-02-15 9:02 ` Jan Kiszka
2012-02-15 12:53 ` Luiz Capitulino
2012-02-15 13:32 ` Jan Kiszka
2012-02-15 13:15 ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 6/6] qapi: Convert migrate Luiz Capitulino
2012-02-15 9:07 ` Wen Congyang
2012-02-15 13:06 ` Luiz Capitulino
2012-02-15 13:25 ` Juan Quintela
2012-02-15 16:01 ` Michael Roth
2012-02-15 17:13 ` Luiz Capitulino
2012-02-15 13:31 ` Jan Kiszka
2012-02-15 13:44 ` Jan Kiszka
2012-02-15 8:59 ` [Qemu-devel] [PATCH 0/6] " Jan Kiszka
2012-02-15 12:49 ` Luiz Capitulino
2012-02-15 13:34 ` Jan Kiszka
2012-02-15 17:23 ` Luiz Capitulino
2012-02-15 17:39 ` Jan Kiszka [this message]
2012-02-15 17:49 ` Luiz Capitulino
2012-02-15 17:56 ` Jan Kiszka
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=4F3BEDD3.5070307@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=aliguori@us.ibm.com \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@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.