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 0E2B8A034F; Thu, 25 Feb 2021 13:36:42 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C509A16086D; Thu, 25 Feb 2021 13:36:41 +0100 (CET) Received: from mail-io1-f45.google.com (mail-io1-f45.google.com [209.85.166.45]) by mails.dpdk.org (Postfix) with ESMTP id 0AD1E16086B for ; Thu, 25 Feb 2021 13:36:41 +0100 (CET) Received: by mail-io1-f45.google.com with SMTP id p16so5688247ioj.4 for ; Thu, 25 Feb 2021 04:36:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=wmG8elxLizxaGHsZAsyK5eny6UlbRFD9Gw7NhLcnjdQ=; b=dS9d5Be/ryITogiXyAs0beGtnGscnNkiInqwFqEaR1t4Lisparbqm7L+r2gfsyHChu e5YmeIenjH72VHlNEue89YVi0AJxPXLcEPPxfs9MQF0vvxpO3xmwTM0EMRsRI684m62q suvMJN40NqfoqJ/qrY1EJEjJrrk8EnXxsgYURz9hH649Puzo7lct0HGbMKW69Kv0LzOJ oTq3ySoJGTCuEAkSAZN6GGRZ5Eknr3XVQjc5IMAKjcydSGrl9CSjGfs0v1VJieHptv/e zfGhNBLoejYtcaONIRGrt0kzseapNbG9J26ab/eYVNuySn4YrJT/O/3EM/UE+cIAdyf5 wtzg== 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=wmG8elxLizxaGHsZAsyK5eny6UlbRFD9Gw7NhLcnjdQ=; b=E3byyboDohdnrs96vpqlgR3cll6M6tw0w5jEyu3RSbLLmULgn9qIW8C1osr5X0zxAV alsc9xkV/Ph33mGQj+T+WmVylUoDoOpuNOUDczaOcNb2g3M0X/TFZzfjFfrFunMjAhhv 8wq//447sc5b0+xgoS+t0OlZLPJegO9t7eUv+mztdawARhsUpZ+77xGWl+mG61bIeAs6 LazgmAypekpiH7VjHe+R2yo7bW+hIRE9ck8/Afk38ZjRjnnc3qyTzFKyJCTIHEbhUMRe NjX7D1lKcz94iYVvS6ZoRwiMwJ5+sB6saXmi/8ZdflfgtlxkxVjvC6HHTWElvumD0GeN jIvA== X-Gm-Message-State: AOAM530Ykhi468ZN9qyp5F2JJ5WPlWnRWyGqT2ePL6sQ6q7izPVaVUHm rUkF+3NYsIuEJ2txnyuePWci+wx3Bial4VkDywA= X-Google-Smtp-Source: ABdhPJxa3xiyxXNB/TWpF3exohtIg78FoZtC6GZBFCEPrZ8lStBJ6Nhg2wsUkk/+oeJwB+VxJSKaf1Ya2VLw+fBuhQA= X-Received: by 2002:a6b:f30a:: with SMTP id m10mr2449160ioh.1.1614256600518; Thu, 25 Feb 2021 04:36:40 -0800 (PST) MIME-Version: 1.0 References: <20210225122802.7029-1-pbhagavatula@marvell.com> In-Reply-To: <20210225122802.7029-1-pbhagavatula@marvell.com> From: Jerin Jacob Date: Thu, 25 Feb 2021 18:06:24 +0530 Message-ID: To: Pavan Nikhilesh Cc: Jerin Jacob , Ankur Dwivedi , Anoob Joseph , dpdk-dev Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] crypto/octeontx2: enable driver compilation on freebsd 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 Sender: "dev" On Thu, Feb 25, 2021 at 5:58 PM wrote: > > From: Pavan Nikhilesh > > Enable compilation on freebsd. Since DPDK octeontx2 drivers have a dependency on Linux kernel driver, I think, in order to simply this stuff, we can completely remove the FreeBSD support in octeontx and octeontx2 drivers. Since we are supporting x86-64 bit compilation support, that would enable others contribute without have an octeontx2 machine. We may not need FreeBSD support to establish this support. > > Signed-off-by: Pavan Nikhilesh > --- > drivers/crypto/octeontx2/meson.build | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/crypto/octeontx2/meson.build b/drivers/crypto/octeontx2/meson.build > index 283818e5d..063f53253 100644 > --- a/drivers/crypto/octeontx2/meson.build > +++ b/drivers/crypto/octeontx2/meson.build > @@ -1,9 +1,9 @@ > # SPDX-License-Identifier: BSD-3-Clause > # Copyright (C) 2019 Marvell International Ltd. > > -if not is_linux or not dpdk_conf.get('RTE_ARCH_64') > +if not dpdk_conf.get('RTE_ARCH_64') > build = false > - reason = 'only supported on 64-bit Linux' > + reason = 'only supported on 64-bit arch' > subdir_done() > endif > > -- > 2.17.1 >