All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrange" <berrange@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: "Markus Armbruster" <armbru@redhat.com>,
	"Halil Pasic" <pasic@linux.vnet.ibm.com>,
	"Igor Mammedov" <imammedo@redhat.com>,
	"Andreas Färber" <afaerber@suse.de>,
	qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v4 7/8] qmp: Support abstract classes on device-list-properties
Date: Mon, 7 Nov 2016 18:08:42 +0000	[thread overview]
Message-ID: <20161107180841.GE19422@redhat.com> (raw)
In-Reply-To: <20161107180358.GT5057@thinpad.lan.raisama.net>

On Mon, Nov 07, 2016 at 04:03:58PM -0200, Eduardo Habkost wrote:
> On Mon, Nov 07, 2016 at 05:41:01PM +0000, Daniel P. Berrange wrote:
> > On Mon, Nov 07, 2016 at 03:27:31PM -0200, Eduardo Habkost wrote:
> > > On Mon, Nov 07, 2016 at 04:51:57PM +0100, Markus Armbruster wrote:
> > > > "Daniel P. Berrange" <berrange@redhat.com> writes:
> > > > 
> > > > > On Mon, Nov 07, 2016 at 03:48:49PM +0100, Halil Pasic wrote:
> > > > >> 
> > > > >> 
> > > > >> On 11/07/2016 02:05 PM, Eduardo Habkost wrote:
> > > > >> > If you want some subclasses to not have the property, then I
> > > > >> > recommend not registering it as a class property on the base
> > > > >> > class in the first place. I don't expect to see a mechanism to
> > > > >> > allow subclasses to remove or override class properties from
> > > > >> > parent classes.
> > > > >> > 
> > > > >> 
> > > > >> Thank you very much for your reply.
> > > > >> 
> > > > >> I understand, yet I see potential problems. The example with ioeventfd
> > > > >> and vhost in virtio-pci is a good one also because  the first there was
> > > > >> the ioeventfd property with commit 653ced07 and then the vhost case came
> > > > >> along with commit 50787628ee3 (ok ioeventfd is not there for some non
> > > > >> vhost virtio-pci devices for reasons I do not understand).
> > > > >> 
> > > > >> To rephrase this in generic context a specialization for which a
> > > > >> property does not make sense might come along after the property at the
> > > > >> base class was established.
> > > > >> 
> > > > >> Now AFAIU properties are external API, so having to make a compatibility
> > > > >> breaking change there might not be fun. Does this mean one should be
> > > > >> very careful to put only use class level properties on abstract classes
> > > > >> where its certain that the property always makes sense including it's
> > > > >> access control?
> > > > >
> > > > > This could be an argument for *NOT* allowing introspectiing of properties
> > > > > against abstract parent classes. If you only ever allow introspecting against
> > > > > leaf node non-abstract classes, then QEMU retains the freedom to move props
> > > > > from a base class down to an leaf class without risk of breaking mgmt apps.
> > > > 
> > > > That's a really good point.  To generalize it a bit, introspection of
> > > > actual interfaces is fine, but permitting introspection of how they are
> > > > made can add artificial constraints.
> > > > 
> > > > Introspecting the subtype relation is already problematic in this view.
> > > 
> > > Yes, that's a very good point. But note that that this means
> > > making things more complex for libvirt.
> > > 
> > > In the case of -cpu, if we don't expose (or allow libvirt to
> > > making assumptions about) subtype relations, the only way libvirt
> > > can conclude that "+foo can be used as -cpu option with any CPU
> > > model", is to query each and every CPU model type, and see if all
> > > of them support the "foo" property.
> > >
> > > It's a trade-off between an interface that's more complex to use
> > > and having less freedom to change the class hierarchy.
> > > Personally, I don't mind going either way, if we have a good
> > > reason for that.
> > 
> > Or could do a tradeoff where we allow introspection of abstract
> > parent classes, but explicitly document that we reserve the right
> > to move properties to leaf nodes ?
> 
> Reserving the right to move properties to leaf nodes would be
> welcome. But it would force libvirt to query all leaf nodes if it
> wants to be sure the option is really unsupported by the QEMU
> binary, so why would libvirt query the parent class in the first
> place?

The introspection API is quite general purpose so its semantics have to
be suitable for all types of object, but some types of object may not need
the full degree of flexibility. So what I meant was that while we want
to be able to move props down to leaf classes for objects in general,
we could perhaps assume that this will never happen for CPU model objects.

Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://entangle-photo.org       -o-    http://search.cpan.org/~danberr/ :|

  reply	other threads:[~2016-11-07 18:08 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-29  1:47 [Qemu-devel] [PATCH v4 0/8] qdev class properties + abstract class support on device-list-properties Eduardo Habkost
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 1/8] tests: check-qom-proplist: Remove duplicate "bv" property Eduardo Habkost
2016-11-04 11:22   ` Markus Armbruster
2016-11-04 15:10     ` Markus Armbruster
2016-11-04 15:56   ` Andreas Färber
2016-11-04 16:07     ` Eduardo Habkost
2016-11-04 16:11       ` Andreas Färber
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 2/8] tests: check-qom-proplist: Use &error_abort to catch errors Eduardo Habkost
2016-10-31 10:14   ` Igor Mammedov
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 3/8] qdev: device_class_set_props() function Eduardo Habkost
2016-11-01 15:02   ` Igor Mammedov
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 4/8] qdev: Extract property-default code to qdev_property_set_to_default() Eduardo Habkost
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 5/8] qdev: Register static properties as class properties Eduardo Habkost
2016-10-31 12:06   ` Igor Mammedov
2016-11-04 15:22   ` Markus Armbruster
2016-11-04 16:00     ` Eduardo Habkost
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 6/8] qom: object_class_property_iter_init() function Eduardo Habkost
2016-10-31 13:45   ` Igor Mammedov
2016-11-04 15:31   ` Markus Armbruster
2016-10-29  1:48 ` [Qemu-devel] [PATCH v4 7/8] qmp: Support abstract classes on device-list-properties Eduardo Habkost
2016-10-31 14:07   ` Igor Mammedov
2016-10-31 14:36     ` Eduardo Habkost
2016-11-04 15:45       ` Markus Armbruster
2016-11-04 16:04         ` Eduardo Habkost
2016-11-07  8:09           ` Markus Armbruster
2016-11-07 12:38             ` Eduardo Habkost
2016-11-07 14:40               ` Markus Armbruster
2016-11-07 17:11                 ` Eduardo Habkost
2016-11-08  7:29                   ` Markus Armbruster
2016-11-11 12:17                     ` Jiri Denemark
2016-11-11 12:34                       ` Eduardo Habkost
2016-11-11 14:29                       ` Markus Armbruster
2016-11-07 12:45   ` Halil Pasic
2016-11-07 13:05     ` Eduardo Habkost
2016-11-07 14:48       ` Halil Pasic
2016-11-07 15:01         ` Daniel P. Berrange
2016-11-07 15:51           ` Markus Armbruster
2016-11-07 17:27             ` Eduardo Habkost
2016-11-07 17:41               ` Daniel P. Berrange
2016-11-07 18:03                 ` Eduardo Habkost
2016-11-07 18:08                   ` Daniel P. Berrange [this message]
2016-11-07 18:28                     ` Eduardo Habkost
2016-11-08  7:37                       ` Markus Armbruster
2016-11-08 10:09                         ` Daniel P. Berrange
2016-11-08 14:35                           ` Markus Armbruster
2016-11-08 16:16                             ` Eduardo Habkost
2016-11-08 10:11                         ` Halil Pasic
2016-10-29  1:48 ` [Qemu-arm] [PATCH v4 8/8] qdev: Warning about using qdev_property_add_static() in new code Eduardo Habkost
2016-10-29  1:48   ` [Qemu-devel] " Eduardo Habkost
2016-10-31 14:05   ` [Qemu-arm] " Igor Mammedov
2016-10-31 14:05     ` [Qemu-devel] " Igor Mammedov
2016-11-04 15:52 ` [Qemu-devel] [PATCH v4 0/8] qdev class properties + abstract class support on device-list-properties Markus Armbruster

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=20161107180841.GE19422@redhat.com \
    --to=berrange@redhat.com \
    --cc=afaerber@suse.de \
    --cc=armbru@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=pasic@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /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.