From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E906646409; Mon, 17 Mar 2025 16:43:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F2C640616; Mon, 17 Mar 2025 16:43:45 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 844D240657 for ; Mon, 17 Mar 2025 16:43:43 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1742226223; 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=T22wpUPnLkMozKDW+2YWI/ln8MMqdAnElm47oExvCyE=; b=igEc2NdNgl1LMou8gQQSWMZics0AFzwnaphbAhB2+CTvr9iKRlqfL0USL/4RkK+t6ZIETD cHdbnL0mInEL2eEvAeibFerq1XEYKRjhMnTWZZw/9ZWvhLclFg6138jgGrTTHdHwvGsXJR nwe0/npcjRyJeJDyYOS2Qwt4AXgwWjI= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-395-TbF7b5cBN_6VbPYpVeuWEg-1; Mon, 17 Mar 2025 11:43:41 -0400 X-MC-Unique: TbF7b5cBN_6VbPYpVeuWEg-1 X-Mimecast-MFC-AGG-ID: TbF7b5cBN_6VbPYpVeuWEg_1742226219 Received: from mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.93]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 6C5521955D90; Mon, 17 Mar 2025 15:43:39 +0000 (UTC) Received: from dmarchan.lan (unknown [10.44.34.22]) by mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 75B1B1828A93; Mon, 17 Mar 2025 15:43:37 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, bruce.richardson@intel.com, andremue@linux.microsoft.com Subject: [RFC v4 4/8] buildtools: display version when listing symbols Date: Mon, 17 Mar 2025 16:43:00 +0100 Message-ID: <20250317154308.2782689-5-david.marchand@redhat.com> In-Reply-To: <20250317154308.2782689-1-david.marchand@redhat.com> References: <20250305212349.2036410-1-david.marchand@redhat.com> <20250317154308.2782689-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.93 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: maYsESMfWX2uSLISF5HSW6GwIwtwfGH172LN_3qNj0Q_1742226219 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Display the version when a symbol was introduced. This is needed for scripting the conversion from static to dynamically generated version maps. It is also useful when listing experimental symbols. Signed-off-by: David Marchand --- buildtools/map-list-symbol.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/map-list-symbol.sh b/buildtools/map-list-symbol.sh index 43f276c05f..eb98451d8e 100755 --- a/buildtools/map-list-symbol.sh +++ b/buildtools/map-list-symbol.sh @@ -73,7 +73,7 @@ for file in $@; do if ("'$symbol'" == "all" || $1 == "'$symbol'") { ret = 0; if ("'$quiet'" == "") { - print "'$file' "current_section" "$1; + print "'$file' "current_section" "$1" "current_version; } if ("'$symbol'" != "all") { exit 0; -- 2.48.1