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 38605A04DB; Fri, 16 Oct 2020 12:27:44 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 146871ECCE; Fri, 16 Oct 2020 12:27:32 +0200 (CEST) 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 9FCDD1ECA9 for ; Fri, 16 Oct 2020 12:27:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1602844046; 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=XTO9BUVEmJi3M+EH252HCvkih9w+SnckkEvptixm5EU=; b=ZbOKBjFkFNY/NJSe7xjdBtdIFNezUc3e0LTDjsC7wz8qllo8UcihQ2rzfSaiPkIaSaT+dY F+s5lqC3K0pHoQRsAVI0TnB+6nyS1ugK+RMcu86+IQFmPsbqLKP07PDQZamLCFNIA8rWku sDgt4On1OjMWN2rcNwMLlQbxqX+DB40= 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-343-B2XNYCb9O629I4velTe0Hg-1; Fri, 16 Oct 2020 06:27:22 -0400 X-MC-Unique: B2XNYCb9O629I4velTe0Hg-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BB103803F5E; Fri, 16 Oct 2020 10:27:20 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.186]) by smtp.corp.redhat.com (Postfix) with ESMTP id BC81460C11; Fri, 16 Oct 2020 10:27:16 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam , Ray Kinsella , Konstantin Ananyev , Kevin Traynor , Bruce Richardson Date: Fri, 16 Oct 2020 12:27:10 +0200 Message-Id: <20201016102711.11926-1-david.marchand@redhat.com> In-Reply-To: <20201016093806.20061-1-david.marchand@redhat.com> References: <20201016093806.20061-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 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 1/2] eal/windows: fix symbol export 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" The incriminated commit forgot to clean the Windows export file. Fixes: 3cd73a1a1c4d ("eal: simplify exit functions") Signed-off-by: David Marchand Acked-by: Thomas Monjalon --- lib/librte_eal/rte_eal_exports.def | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/librte_eal/rte_eal_exports.def b/lib/librte_eal/rte_eal_exports.def index 16f8e33874..975acb8ffe 100644 --- a/lib/librte_eal/rte_eal_exports.def +++ b/lib/librte_eal/rte_eal_exports.def @@ -32,7 +32,6 @@ EXPORTS rte_devargs_remove rte_devargs_type_count rte_dump_physmem_layout - rte_dump_registers rte_dump_stack rte_dump_tailq rte_eal_alarm_cancel -- 2.23.0