From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 4407D1B43F for ; Thu, 27 Sep 2018 15:50:11 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2018 06:50:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,310,1534834800"; d="scan'208";a="89928923" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga002.fm.intel.com with ESMTP; 27 Sep 2018 06:46:02 -0700 Received: from fmsmsx152.amr.corp.intel.com (10.18.125.5) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 27 Sep 2018 06:45:52 -0700 Received: from fmsmsx117.amr.corp.intel.com ([169.254.3.34]) by FMSMSX152.amr.corp.intel.com ([169.254.6.160]) with mapi id 14.03.0319.002; Thu, 27 Sep 2018 06:45:52 -0700 From: "Wiles, Keith" To: "Babu Radhakrishnan, AgalyaX" CC: "dev@dpdk.org" , "alejandro.lucero@netronome.com" , "allain.legacy@windriver.com" , "Singh, Jasvinder" , "matan@mellanox.com" , "Richardson, Bruce" , "Pattan, Reshma" Thread-Topic: [PATCH 5/6] net/tap: disable tap build in FREEBSD Thread-Index: AQHUVmW6g8XLiLeBC0eWArpx6KqKuKUEmVoA Date: Thu, 27 Sep 2018 13:45:51 +0000 Message-ID: <1E004B0B-4644-482A-B002-9024D3504676@intel.com> References: <1538054652-20820-1-git-send-email-agalyax.babu.radhakrishnan@intel.com> <1538054652-20820-6-git-send-email-agalyax.babu.radhakrishnan@intel.com> In-Reply-To: <1538054652-20820-6-git-send-email-agalyax.babu.radhakrishnan@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.254.81.84] Content-Type: text/plain; charset="us-ascii" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 5/6] net/tap: disable tap build in 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: , X-List-Received-Date: Thu, 27 Sep 2018 13:50:11 -0000 > On Sep 27, 2018, at 8:24 AM, Babu Radhakrishnan, AgalyaX wrote: >=20 > Disabled tap build in FreeBSD because it is not supported > Added changes to enable tap build if it is Linux OS and > disable in FreeBSD. Good, the old build system restricted tap to Linux only. Acked-by: Keith Wiles >=20 > Fixes: 6e8a721044 ("vfio: export functions even when disabled") >=20 > Signed-off-by: Agalya Babu RadhaKrishnan > --- > drivers/net/tap/meson.build | 3 +++ > 1 file changed, 3 insertions(+) >=20 > diff --git a/drivers/net/tap/meson.build b/drivers/net/tap/meson.build > index 37f65b75c..5d30cd52d 100644 > --- a/drivers/net/tap/meson.build > +++ b/drivers/net/tap/meson.build > @@ -1,6 +1,9 @@ > # SPDX-License-Identifier: BSD-3-Clause > # Copyright 2018 Luca Boccassi >=20 > +if host_machine.system() !=3D 'linux' > + build =3D false > +endif > sources =3D files( > 'rte_eth_tap.c', > 'tap_bpf_api.c', > --=20 > 2.13.6 >=20 Regards, Keith