qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] qdev: Fix bus dependency of DeviceState::hotplu


From: Andreas Färber
Subject: Re: [Qemu-devel] [PATCH] qdev: Fix bus dependency of DeviceState::hotpluggable getter
Date: Sun, 09 Mar 2014 17:48:57 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0

Am 09.03.2014 17:40, schrieb Michael S. Tsirkin:
> On Fri, Mar 07, 2014 at 07:13:18PM +0100, Andreas Färber wrote:
>> Commit 1a37eca107cece3ed454bae29eef0bd1fac4a244 (qdev: add
>> "hotpluggable" property to Device) added a property "hotpluggable" to
>> each device, with its getter accessing parent_bus->allow_hotplug.
>>
>> Add a NULL check.
>>
>> Cc: Igor Mammedov <address@hidden>
>> Signed-off-by: Andreas Färber <address@hidden>
> 
> Fair enough but I'm guessing we should
> assume devices without a parent are not
> hotpluggable, should we not?
> 
> Without a bus what handles hotplug?

The device has to, in its realize function.

>> ---
>>  hw/core/qdev.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/hw/core/qdev.c b/hw/core/qdev.c
>> index 749c83a..cb07863 100644
>> --- a/hw/core/qdev.c
>> +++ b/hw/core/qdev.c
>> @@ -735,7 +735,8 @@ static bool device_get_hotpluggable(Object *obj, Error 
>> **err)
>>      DeviceClass *dc = DEVICE_GET_CLASS(obj);
>>      DeviceState *dev = DEVICE(obj);
>>  
>> -    return dc->hotpluggable && dev->parent_bus->allow_hotplug;
>> +    return dc->hotpluggable && (dev->parent_bus == NULL ||
>> +                                dev->parent_bus->allow_hotplug);
> 
> So maybe this should be:
>>     return dc->hotpluggable && dev->parent_bus &&
>>                                dev->parent_bus->allow_hotplug;
> 
> ?

Hmm... that would render non-x86 CPUs non-hotpluggable. I guess we need
to check dc->bus_type for a NULL value and if non-NULL use your variant
and otherwise mine. I'll give it some more thought.

Thanks,
Andreas

> 
>>  }
>>  
>>  static void device_initfn(Object *obj)
>> -- 
>> 1.8.4.5

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg



reply via email to

[Prev in Thread] Current Thread [Next in Thread]