qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Don Slutz <dslutz@verizon.com>
To: Eduardo Habkost <ehabkost@redhat.com>, Don Slutz <dslutz@verizon.com>
Cc: Anthony Liguori <aliguori@amazon.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Michael Tokarev <mjt@tls.msk.ru>,
	qemu-devel@nongnu.org,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [BUGFIX][PATCH for 2.2 1/1] hw/i386/pc_piix.c: Also pass vmport=off for xenfv machine
Date: Wed, 19 Nov 2014 19:49:52 -0500	[thread overview]
Message-ID: <546D3AB0.6070401@terremark.com> (raw)
In-Reply-To: <20141120002452.GG3243@thinpad.lan.raisama.net>

On 11/19/14 19:24, Eduardo Habkost wrote:
> On Wed, Nov 19, 2014 at 03:01:24PM -0500, Don Slutz wrote:
>> On 11/19/14 14:30, Eduardo Habkost wrote:
>>> On Wed, Nov 19, 2014 at 02:08:08PM -0500, Don Slutz wrote:
>>>> On 11/19/14 13:08, Paolo Bonzini wrote:
>>>>> On 19/11/2014 19:07, Don Slutz wrote:
>>>>>>> "-M pc -machine accel=xen" should work and, if that's what you want,
>>>>>>> disable the vmport device.  I think this patch is wrong.
>>>>>>>
>>>>>>> Paolo
>>>>>> Well, I also want "-M pc -machine accel=xen,vmport=on" to work.
>>>>> Right.  So let's start by deciding what the desired semantics are for
>>>>> all six cases: -M pc/xenfv, -machine vmport=on/off/absent.
>>>>>
>>>>> Paolo
>>>> I get 12 cases (PCMachineState *pcms = PC_MACHINE(obj)):
>>>>
>>>>
>>>>
>>>> -M pc
>>>>      pcms->vmport is true
>>>> -M pc -machine vmport=on
>>>>      pcms->vmport is true
>>>> -M pc -machine vmport=off
>>>>      pcms->vmport is false
>>>> -M xenfv
>>>>      pcms->vmport is false
>>>> -M xenfv -machine vmport=on
>>>>      pcms->vmport is true
>>>> -M xenfv -machine vmport=off
>>>>      pcms->vmport is false
>>>>
>>>> -M pc -machine accel=xen
>>>>      pcms->vmport is false
>>>> -M pc -machine vmport=on,accel=xen
>>>>      pcms->vmport is true
>>>> -M pc -machine vmport=off,accel=xen
>>>>      pcms->vmport is false
>>>> -M xenfv -machine accel=xen
>>>>      pcms->vmport is false
>>>> -M xenfv -machine vmport=on,accel=xen
>>>>      pcms->vmport is true
>>>> -M xenfv -machine vmport=off,accel=xen
>>>>      pcms->vmport is false
>>>>
>>>>
>>>> Which look like to me to solve down to xen_init() called via
>>>> xen_accel_class_init()
>>>> need to see if vmport has been specified and change it if needed.
>>>>
>>>> Which leads me to:
>>>>
>>> [...]
>>>> diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
>>>> index 7c3731f..5782406 100644
>>>> --- a/include/hw/i386/pc.h
>>>> +++ b/include/hw/i386/pc.h
>>>> @@ -38,6 +38,7 @@ struct PCMachineState {
>>>>
>>>>       uint64_t max_ram_below_4g;
>>>>       bool vmport;
>>>> +    bool vmport_changed;
>>> So, now the setting have three possible states: unset, on, and off.
>>>
>>> If we can't avoid that (which seems to be the case, as "accel" is
>>> changed after we already set the default value for "vmport" in instance
>>> init), maybe we should make it an enum property that accepts on/off/auto
>>> as values, instead of faking a boolean property that is not really a
>>> boolean?
>>>
>> I would be happy to look into this.  I have not done anything that used
>> an enum property, and so it is hard to guess on how long it will take to
>> convert the change to this.
> I think your patch may be a good intermediate solution, as long as you
> add a comment noting that the return value of the "vmport" property may
> be invalid before machine->init() is called, depending on the
> machine-type.
>
> Or, maybe a property without a getter would be appropriate?
>

Timing is everything.  The convert to enum was not too hard.  v3 posted.

    -Don Slutz

  reply	other threads:[~2014-11-20  0:50 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-19 17:30 [Qemu-devel] [BUGFIX][PATCH for 2.2 1/1] hw/i386/pc_piix.c: Also pass vmport=off for xenfv machine Don Slutz
2014-11-19 17:35 ` Paolo Bonzini
2014-11-19 18:07   ` Don Slutz
2014-11-19 18:08     ` Paolo Bonzini
2014-11-19 19:08       ` Don Slutz
2014-11-19 19:15         ` Don Slutz
2014-11-19 19:30         ` Eduardo Habkost
2014-11-19 20:01           ` Don Slutz
2014-11-20  0:24             ` Eduardo Habkost
2014-11-20  0:49               ` Don Slutz [this message]
2014-11-20  6:02         ` Paolo Bonzini
2014-11-20 15:09           ` Don Slutz
2014-11-20 15:13         ` Eduardo Habkost
2014-11-20 15:24           ` Don Slutz
2014-11-20 15:27             ` Eduardo Habkost

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=546D3AB0.6070401@terremark.com \
    --to=dslutz@verizon.com \
    --cc=aliguori@amazon.com \
    --cc=dgilbert@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=mjt@tls.msk.ru \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@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 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).