qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] qdev: Remove some non-run codes in qdev_walk_ch


From: Zhi Yong Wu
Subject: Re: [Qemu-devel] [PATCH] qdev: Remove some non-run codes in qdev_walk_children().
Date: Fri, 12 Aug 2011 10:14:17 +0800

On Fri, Aug 12, 2011 at 3:40 AM, Anthony Liguori <address@hidden> wrote:
> On 08/07/2011 11:15 PM, Zhi Yong Wu wrote:
>>
>> As you have known, qdev_reset_one() forever return a ZERO value to its
>> caller, so some branches can not be forever covered in qdev_walk_children().
>>
>> I thought that the return value for dev->info->reset(dev) can be returned,
>> but dev->info->reset(dev) is referring to a function with void type.
>>
>> Signed-off-by: Zhi Yong Wu<address@hidden>
>
> But the details of qdev_reset_one are irrelevant to qdev_walk_children().
>  There may be other functions that want to walk the tree and it's useful to
>From The function reference flow, currently only qdev_reset_all and
qbus_walk_children invoke qdev_walk_children, and they both pass
qdev_reset_one() as devfn to qdev_walk_children().
> be able to interrupt the tree transversal by returning a non-zero value.
Yeah, It is. Maybe later some new functions will need this.
Anyway, thanks for your explain.
>
> Regards,
>
> Anthony Liguori
>
>> ---
>>  hw/qdev.c |    5 +----
>>  1 files changed, 1 insertions(+), 4 deletions(-)
>>
>> diff --git a/hw/qdev.c b/hw/qdev.c
>> index 292b52f..cbc5e02 100644
>> --- a/hw/qdev.c
>> +++ b/hw/qdev.c
>> @@ -513,10 +513,7 @@ int qdev_walk_children(DeviceState *dev,
>> qdev_walkerfn *devfn,
>>      int err;
>>
>>      if (devfn) {
>> -        err = devfn(dev, opaque);
>> -        if (err) {
>> -            return err;
>> -        }
>> +        devfn(dev, opaque);
>>      }
>>
>>      QLIST_FOREACH(bus,&dev->child_bus, sibling) {
>
>

-- 
Regards,

Zhi Yong Wu



reply via email to

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