On 01/03/2012 02:39 PM, Anthony Liguori wrote:
It's a pity that this loses type-safety.
You mean at run time or because OBJECT() cast is so lose? We can fix
the later..
At compile-time, i.e. the latter. But no problem, I really think it
should be fixed in the compiler.
Paolo
On 01/03/2012 03:06 AM, Paolo Bonzini wrote:
On 01/03/2012 01:51 AM, Anthony Liguori wrote:
d->nic = qemu_new_nic(&net_e1000_info,&d->conf,
- qdev_get_info(&d->dev.qdev)->name, d->dev.qdev.id, d);
+ object_get_typename(OBJECT(d)), d->dev.qdev.id, d);
It's a pity that this loses type-safety.
On 01/03/2012 01:51 AM, Anthony Liguori wrote:
d->nic = qemu_new_nic(&net_e1000_info,&d->conf,
- qdev_get_info(&d->dev.qdev)->name, d->dev.qdev.id,
d);
+ object_get_typename(OBJECT(d)), d->dev.qdev.id, d);
It's a pity that this loses type