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 6ECF4A04DE; Fri, 23 Oct 2020 09:45:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4F1B17F6C; Fri, 23 Oct 2020 09:45:07 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id 630E67DF8 for ; Fri, 23 Oct 2020 09:45:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603439103; 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; bh=8UR//H7ESG6timJTW2zpitL4IOfMkrX5/OIxN6j6WsY=; b=HpnSqw1whe3gBED4kA9WkavP5NBfHejRQpDi67chKXNlUIPwoTS5gwlqBEBj8vEOkGDxYf njIWyRC5sbuM169voynqp5DwJCkv7NGD58wv3mHEHvtOVV+/s3xfnQahDSsRmoAtb8A6i6 mc0GAR59727zhHil6ntczx22JmxlWew= 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-352-reDveq66P9mEoBd5zx5KpA-1; Fri, 23 Oct 2020 03:45:01 -0400 X-MC-Unique: reDveq66P9mEoBd5zx5KpA-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 EACD11074640; Fri, 23 Oct 2020 07:45:00 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id EBD7155775; Fri, 23 Oct 2020 07:44:59 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net Date: Fri, 23 Oct 2020 09:44:51 +0200 Message-Id: <20201023074451.25610-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] app/procinfo: clean old build macro 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" When merging this series after Bruce changes on build macros, an old macro usage has been re-introduced. Fixes: d82d6ac64338 ("app/procinfo: add crypto security context info") Signed-off-by: David Marchand --- app/proc-info/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/proc-info/main.c b/app/proc-info/main.c index 6ca14c6639..d743209f0d 100644 --- a/app/proc-info/main.c +++ b/app/proc-info/main.c @@ -1223,7 +1223,7 @@ show_crypto(void) stats.dequeue_err_count); } -#ifdef RTE_LIBRTE_SECURITY +#ifdef RTE_LIB_SECURITY show_security_context(i); #endif } -- 2.23.0