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 82DB54288E; Sat, 1 Apr 2023 02:45:12 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0953440DD8; Sat, 1 Apr 2023 02:45:12 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 5A43540223 for ; Sat, 1 Apr 2023 02:45:10 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 9075720FFE1C; Fri, 31 Mar 2023 17:45:09 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9075720FFE1C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1680309909; bh=34IKYBunb04HS1qRooiE4p8NYIncGboyuj7EPIu8p0c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dHaF/J4BZoqva7aBLf4OMUzHNRTSYBmF7vDkUlwQOQdGcdQqfg/WXayWJ5GXif9sa 86ZLIVJmS9MonESw09F6h0V3YqMQdgu5KYpBID06VnHpNrE0j0Q1U5u/AOK2Py2D9u SwFRIkJq86mLtwVNVVq5Hm7BHwvaTj3el2veWdEE= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, stephen@networkplumber.org, mb@smartsharesystems.com, bruce.richardson@intel.com, ferruh.yigit@amd.com, david.marchand@redhat.com, Tyler Retzlaff Subject: [PATCH v7 3/4] pipeline: add include of bitops Date: Fri, 31 Mar 2023 17:45:06 -0700 Message-Id: <1680309907-30879-4-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1680309907-30879-1-git-send-email-roretzla@linux.microsoft.com> References: <1669241687-18810-1-git-send-email-roretzla@linux.microsoft.com> <1680309907-30879-1-git-send-email-roretzla@linux.microsoft.com> 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 Include rte_bitops.h with the inline functions moving this include is now needed. Signed-off-by: Tyler Retzlaff --- lib/pipeline/rte_swx_pipeline_internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pipeline/rte_swx_pipeline_internal.h b/lib/pipeline/rte_swx_pipeline_internal.h index 2f24e1a..a67b6e9 100644 --- a/lib/pipeline/rte_swx_pipeline_internal.h +++ b/lib/pipeline/rte_swx_pipeline_internal.h @@ -8,6 +8,7 @@ #include #include +#include #include #include #include -- 1.8.3.1