cryptodev-backend: Register "chardev" as class property
Class properties make QOM introspection simpler and easier, as they don't require an object to be instantiated. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Gonglei <arei.gonglei@huawei.com> Message-Id: <20200921221045.699690-3-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
07b0db0efb
commit
1f14e38893
@ -206,10 +206,6 @@ cryptodev_backend_can_be_deleted(UserCreatable *uc)
|
|||||||
|
|
||||||
static void cryptodev_backend_instance_init(Object *obj)
|
static void cryptodev_backend_instance_init(Object *obj)
|
||||||
{
|
{
|
||||||
object_property_add(obj, "queues", "uint32",
|
|
||||||
cryptodev_backend_get_queues,
|
|
||||||
cryptodev_backend_set_queues,
|
|
||||||
NULL, NULL);
|
|
||||||
/* Initialize devices' queues property to 1 */
|
/* Initialize devices' queues property to 1 */
|
||||||
object_property_set_int(obj, "queues", 1, NULL);
|
object_property_set_int(obj, "queues", 1, NULL);
|
||||||
}
|
}
|
||||||
@ -230,6 +226,10 @@ cryptodev_backend_class_init(ObjectClass *oc, void *data)
|
|||||||
ucc->can_be_deleted = cryptodev_backend_can_be_deleted;
|
ucc->can_be_deleted = cryptodev_backend_can_be_deleted;
|
||||||
|
|
||||||
QTAILQ_INIT(&crypto_clients);
|
QTAILQ_INIT(&crypto_clients);
|
||||||
|
object_class_property_add(oc, "queues", "uint32",
|
||||||
|
cryptodev_backend_get_queues,
|
||||||
|
cryptodev_backend_set_queues,
|
||||||
|
NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const TypeInfo cryptodev_backend_info = {
|
static const TypeInfo cryptodev_backend_info = {
|
||||||
|
Loading…
Reference in New Issue
Block a user