From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 845B31B448 for ; Wed, 3 Oct 2018 17:37:01 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Oct 2018 08:37:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,336,1534834800"; d="scan'208";a="262548049" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by orsmga005.jf.intel.com with ESMTP; 03 Oct 2018 08:37:00 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.248]) by IRSMSX106.ger.corp.intel.com ([169.254.8.45]) with mapi id 14.03.0319.002; Wed, 3 Oct 2018 16:36:58 +0100 From: "Singh, Jasvinder" To: "Babu Radhakrishnan, AgalyaX" , "dev@dpdk.org" CC: "alejandro.lucero@netronome.com" , "allain.legacy@windriver.com" , "Wiles, Keith" , "matan@mellanox.com" , "Richardson, Bruce" , "Pattan, Reshma" Thread-Topic: [PATCH v2 4/6] net/softnic: disable softnic build in FREEBSD Thread-Index: AQHUWyGB94ICeNT6BE+SrJWM76ljIKUNp1OQ Date: Wed, 3 Oct 2018 15:36:58 +0000 Message-ID: <54CBAA185211B4429112C315DA58FF6D3362A3D0@IRSMSX103.ger.corp.intel.com> References: <1538054652-20820-1> <1538575221-23873-5-git-send-email-agalyax.babu.radhakrishnan@intel.com> In-Reply-To: <1538575221-23873-5-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-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzU0MjYyZDktMjA0Ni00NmM3LWEyMGUtOTMyZDcwMjhiYWEzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiaWZHamRYejdReU1NS3RyXC96VWNTamp5TXBUWElwNnJ6eDNZOU9raXF3dWJLK3JMUmFZcEVyMXR3ODZ1Y0hoXC9QIn0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 4/6] net/softnic: disable softnic 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: Wed, 03 Oct 2018 15:37:02 -0000 > -----Original Message----- > From: Babu Radhakrishnan, AgalyaX > Sent: Wednesday, October 3, 2018 3:00 PM > To: dev@dpdk.org > Cc: alejandro.lucero@netronome.com; allain.legacy@windriver.com; Singh, > Jasvinder ; Wiles, Keith ; > matan@mellanox.com; Richardson, Bruce ; > Pattan, Reshma ; Babu Radhakrishnan, AgalyaX > > Subject: [PATCH v2 4/6] net/softnic: disable softnic build in FREEBSD >=20 > Disabled softnic build in FreeBSD because it is not supported Added chang= es to > enable softnic build if it is Linux OS and disable in FreeBSD. >=20 > Signed-off-by: Agalya Babu RadhaKrishnan > > --- > drivers/net/softnic/meson.build | 3 +++ > 1 file changed, 3 insertions(+) >=20 > diff --git a/drivers/net/softnic/meson.build b/drivers/net/softnic/meson.= build > index ff9822747..673d2cee8 100644 > --- a/drivers/net/softnic/meson.build > +++ b/drivers/net/softnic/meson.build > @@ -1,6 +1,9 @@ > # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corpo= ration >=20 > +if host_machine.system() !=3D 'linux' > + build =3D false > +endif > allow_experimental_apis =3D true > install_headers('rte_eth_softnic.h') > sources =3D files('rte_eth_softnic_tm.c', > -- > 2.13.6 Acked-by: Jasvinder Singh