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 6D389A034D for ; Thu, 10 Feb 2022 09:56:03 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5BCB641180; Thu, 10 Feb 2022 09:56:03 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id A59AC41170 for ; Thu, 10 Feb 2022 09:56:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1644483361; 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=5HerVC3WB5/7i66wV0WmGxq0AF4uJ9qS58r0rsaDCDs=; b=Aqaz81+wROI904qoeZVlvmza6j94coEzhj7fllv3/Nbqd93ZtffKMZKHpM/++y0RdwRAbn 0vSM+1sa/93krCMZTk05iQ+PdDuDrvxxsJLNex2Tm8qgPRlMBMqqYOb6mO4np8xmtK1g5G oxfSXyacW+wA7BzTNZ/NIS7NnKqFvuo= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-202-IA7NO7_uPtGuWNCQ13Fwow-1; Thu, 10 Feb 2022 03:55:55 -0500 X-MC-Unique: IA7NO7_uPtGuWNCQ13Fwow-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D2E8D80292D; Thu, 10 Feb 2022 08:55:53 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.39]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8507F5F91B; Thu, 10 Feb 2022 08:55:51 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: bruce.richardson@intel.com, drc@linux.vnet.ibm.com, thinhtr@linux.vnet.ibm.com, stable@dpdk.org, Olivier Matz , Honnappa Nagarahalli , Phil Yang , Jerin Jacob Subject: [PATCH] stack: fix stubs header export Date: Thu, 10 Feb 2022 09:55:43 +0100 Message-Id: <20220210085543.17720-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 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" X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org The stubs header is included as part of rte_stack.h for architectures other than x86_64 and aarch64 (i.e. x86 32 bits and ppc). Note: chkincs won't catch this issue since it checks headers from within the source directory. Fixes: 7911ba0473e0 ("stack: enable lock-free implementation for aarch64") Cc: stable@dpdk.org Signed-off-by: David Marchand --- lib/stack/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/stack/meson.build b/lib/stack/meson.build index 2f53f49677..18177a742f 100644 --- a/lib/stack/meson.build +++ b/lib/stack/meson.build @@ -9,4 +9,5 @@ indirect_headers += files( 'rte_stack_lf.h', 'rte_stack_lf_generic.h', 'rte_stack_lf_c11.h', + 'rte_stack_lf_stubs.h', ) -- 2.23.0