From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzgb5-0000gn-Ql for qemu-devel@nongnu.org; Wed, 04 Oct 2017 06:08:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzgb4-0005u7-Tx for qemu-devel@nongnu.org; Wed, 04 Oct 2017 06:08:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56436) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dzgb4-0005tY-Nv for qemu-devel@nongnu.org; Wed, 04 Oct 2017 06:08:10 -0400 From: Igor Mammedov Date: Wed, 4 Oct 2017 12:08:01 +0200 Message-Id: <1507111682-66171-3-git-send-email-imammedo@redhat.com> In-Reply-To: <1507111682-66171-1-git-send-email-imammedo@redhat.com> References: <1506935300-132598-2-git-send-email-imammedo@redhat.com> <1507111682-66171-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH v2 2/3] qom: introduce type_register_static_array() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: ehabkost@redhat.com, peter.maydell@linaro.org it will help to remove code duplication of registration static types in places that have open coded loop to perform batch type registering. Signed-off-by: Igor Mammedov --- include/qom/object.h | 10 ++++++++++ qom/object.c | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/include/qom/object.h b/include/qom/object.h index 76a5e3a..ce25567 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -789,6 +789,16 @@ Type type_register_static(const TypeInfo *info); Type type_register(const TypeInfo *info); /** + * type_register_static_array: + * @infos: The array of the new type #TypeInfo structures. + * @nr_infos: number of entries in @infos + * + * @infos and all of the strings it points to should exist for the life time + * that the type is registered. + */ +void type_register_static_array(const TypeInfo *infos, int nr_infos); + +/** * object_class_dynamic_cast_assert: * @klass: The #ObjectClass to attempt to cast. * @typename: The QOM typename of the class to cast to. diff --git a/qom/object.c b/qom/object.c index 3e18537..f4c377a 100644 --- a/qom/object.c +++ b/qom/object.c @@ -151,6 +151,15 @@ TypeImpl *type_register_static(const TypeInfo *info) return type_register(info); } +void type_register_static_array(const TypeInfo *infos, int nr_infos) +{ + int i; + + for (i = 0; i < nr_infos; i++) { + type_register_static(&infos[i]); + } +} + static TypeImpl *type_get_by_name(const char *name) { if (name == NULL) { -- 2.7.4