From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D94A4C10F0E for ; Tue, 9 Apr 2019 09:56:18 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 97AE020830 for ; Tue, 9 Apr 2019 09:56:18 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 97AE020830 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ABB325F29; Tue, 9 Apr 2019 11:56:17 +0200 (CEST) Received: from mail-ua1-f47.google.com (mail-ua1-f47.google.com [209.85.222.47]) by dpdk.org (Postfix) with ESMTP id 29B815F29 for ; Tue, 9 Apr 2019 11:56:16 +0200 (CEST) Received: by mail-ua1-f47.google.com with SMTP id t15so627857uao.5 for ; Tue, 09 Apr 2019 02:56:16 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=urz/SkwBYm1cpFcIZoLejMtK0bTe9pVyLpEJwEXhFjw=; b=fqExkiHAltV+7ZwHrimfJYKUSqgu2pkJzITOx78eXZST7VLTwrL9ORThhLoE7+d+zJ zcB2p4YBuqVdH4LhVOxUeaQBweO6g7eDgIu4TN+eXdhLgGNaww7KypcYcOc/OR+eUNIO v9AclwkLE+4xfp5n+mBueRfzIX5+KQZj4I9GXRq/CRyBRRU77zDSjSi/a5AjfUa8VSMw staUuyXKfXLskb7CVqBu9R1rQqiN/rEVtqM1BD4uShXkp6awMo6l8H4MJpczJ5gyYTaL ysPvdQZB+SL7RFLesbNocD0ohSTtj04GQfv3Y3E4cyjehk+Vdi8YtcoOlwOyPwpDIhFv Y+TQ== X-Gm-Message-State: APjAAAVyoRvjFGQs7enxk2ixM8k5d8OEU3Nh2czNbgzxD2atNFuwvZft xP+72CT5E9TGqNqYAh+80fa1zfwBbelhKbo7qykqhw== X-Google-Smtp-Source: APXvYqwQelITQXwyfM1oWeb9NlyoxTWGPS8H5rh7U/LoPFIMmvsJD4s01c/qxI28LB7WwlR5QVbAXmSSGsSk5mrep0c= X-Received: by 2002:ab0:2858:: with SMTP id c24mr12505774uaq.4.1554803775525; Tue, 09 Apr 2019 02:56:15 -0700 (PDT) MIME-Version: 1.0 References: <20190409092933.55356-1-bruce.richardson@intel.com> <20190409092933.55356-5-bruce.richardson@intel.com> In-Reply-To: <20190409092933.55356-5-bruce.richardson@intel.com> From: David Marchand Date: Tue, 9 Apr 2019 11:56:04 +0200 Message-ID: To: Bruce Richardson Cc: dev , dpdk stable Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 4/5] examples/l2fwd-cat: fix build on FreeBSD 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" On Tue, Apr 9, 2019 at 11:30 AM Bruce Richardson wrote: > The definition of CPU_AND differs from Linux to BSD, so we need to use > RTE_CPU_AND instead. > > Fixes: f6baccbc2b3b ("examples/l2fwd-cat: add sample application for PQoS > CAT and CDP") > Cc: stable@dpdk.org This creates a dependency on backporting c3568ea37670 ("eal: restrict control threads to startup CPU affinity") which introduced the RTE_CPU_AND macro. -- David Marchand