From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DB04DA04B5; Wed, 28 Oct 2020 22:03:08 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 428EA5913; Wed, 28 Oct 2020 22:03:06 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id F1E2456A3 for ; Wed, 28 Oct 2020 22:03:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603918982; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=717sBYCWd8cWDsGNol5xBBIvyLeQd9JNaHHo1zspz68=; b=TZQPZbGOAbTEXRRRvn55g6RtnAFTRoDTs466wMeYjdfQfXAaPlIwCLcQqIXC8WxKUAzCI8 hzWKFAr0BEAUGYFxXuZdFRzoN2cHJ6WgqaY2f8orlLuKhyJ72lXKRhqX4ak+PuH9P7Z8UB 7tBYRvFZ2vHJpOz33VdVrMipmLyO3ho= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-475-MHk5JY_-PIS60EjNgHNPpQ-1; Wed, 28 Oct 2020 17:02:59 -0400 X-MC-Unique: MHk5JY_-PIS60EjNgHNPpQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 8AA5C1017DC1; Wed, 28 Oct 2020 21:02:58 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.40]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8413B55781; Wed, 28 Oct 2020 21:02:57 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: jerinj@marvell.com, skori@marvell.com Date: Wed, 28 Oct 2020 22:02:45 +0100 Message-Id: <20201028210249.9021-1-david.marchand@redhat.com> In-Reply-To: <20201023080058.13335-1-david.marchand@redhat.com> References: <20201023080058.13335-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH v2 0/4] Rework CTF event description storage X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Following recent increase of an internal array that was limiting CTF event descriptions, I had a second look at the code. All of this is slow path, so I see no reason in keeping this limitation and we can go with dynamic allocations. -- David Marchand Changelog since v1: - fix metadata dump, David Marchand (4): trace: fixup CTF event description at registration trace: remove size limit on CTF event description trace: fix metadata dump trace: make CTF metadata prettier lib/librte_eal/common/eal_common_trace.c | 44 ++--- lib/librte_eal/common/eal_common_trace_ctf.c | 167 +++++-------------- lib/librte_eal/common/eal_trace.h | 4 +- 3 files changed, 69 insertions(+), 146 deletions(-) -- 2.23.0