From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWneo-0000wP-Es for qemu-devel@nongnu.org; Thu, 26 Jan 2017 12:16:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWnem-0005yU-Rs for qemu-devel@nongnu.org; Thu, 26 Jan 2017 12:16:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55390) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cWnem-0005yG-Mq for qemu-devel@nongnu.org; Thu, 26 Jan 2017 12:16:20 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id DD4FA80469 for ; Thu, 26 Jan 2017 17:16:20 +0000 (UTC) From: Stefan Hajnoczi Date: Thu, 26 Jan 2017 17:16:12 +0000 Message-Id: <20170126171613.1399-2-stefanha@redhat.com> In-Reply-To: <20170126171613.1399-1-stefanha@redhat.com> References: <20170126171613.1399-1-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH v2 1/2] qapi: add missing trace_visit_type_enum() call List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: "Daniel P . Berrange" , Stefan Hajnoczi A trace event exists for enums but it's never called. This patch fixes this oversight so that enums are traced just like the other QAPI types. Suggested-by: Daniel P. Berrange Signed-off-by: Stefan Hajnoczi --- qapi/qapi-visit-core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qapi/qapi-visit-core.c b/qapi/qapi-visit-core.c index 63bd97b..e6e93f0 100644 --- a/qapi/qapi-visit-core.c +++ b/qapi/qapi-visit-core.c @@ -374,6 +374,7 @@ void visit_type_enum(Visitor *v, const char *name, int *obj, const char *const strings[], Error **errp) { assert(obj && strings); + trace_visit_type_enum(v, name, obj); switch (v->type) { case VISITOR_INPUT: input_type_enum(v, name, obj, strings, errp); -- 2.9.3