From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 17D9D5B3A for ; Fri, 8 Jun 2018 19:15:06 +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 fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jun 2018 10:15:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,490,1520924400"; d="scan'208";a="231033778" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga005.jf.intel.com with ESMTP; 08 Jun 2018 10:15:05 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Fri, 8 Jun 2018 10:15:05 -0700 Received: from fmsmsx117.amr.corp.intel.com ([169.254.3.220]) by fmsmsx158.amr.corp.intel.com ([169.254.15.52]) with mapi id 14.03.0319.002; Fri, 8 Jun 2018 10:15:05 -0700 From: "Wiles, Keith" To: Stephen Hemminger CC: "dev@dpdk.org" , Stephen Hemminger Thread-Topic: [dpdk-dev] [PATCH v10 1/5] eal: add rte_uuid support Thread-Index: AQHT/0ogQxo8biXQbEiAsUFHYw4t3KRXDz6A Date: Fri, 8 Jun 2018 17:15:04 +0000 Message-ID: <6F565A11-3B17-4A94-806C-3F066499AAD5@intel.com> References: <20180608165920.12228-1-stephen@networkplumber.org> <20180608165920.12228-2-stephen@networkplumber.org> In-Reply-To: <20180608165920.12228-2-stephen@networkplumber.org> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.255.85.247] Content-Type: text/plain; charset="us-ascii" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v10 1/5] eal: add rte_uuid support 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: Fri, 08 Jun 2018 17:15:07 -0000 > On Jun 8, 2018, at 9:59 AM, Stephen Hemminger wrote: >=20 > Since uuid functions may not be available everywhere, implement > uuid functions in DPDK. These are based off the BSD licensed > libuuid in util-link. >=20 > Signed-off-by: Stephen Hemminger > --- > lib/librte_eal/bsdapp/eal/Makefile | 1 + > lib/librte_eal/common/Makefile | 2 +- > lib/librte_eal/common/eal_common_uuid.c | 193 +++++++++++++++++++++++ > lib/librte_eal/common/include/rte_uuid.h | 129 +++++++++++++++ > lib/librte_eal/common/meson.build | 2 + > lib/librte_eal/linuxapp/eal/Makefile | 1 + > lib/librte_eal/rte_eal_version.map | 9 ++ > 7 files changed, 336 insertions(+), 1 deletion(-) > create mode 100644 lib/librte_eal/common/eal_common_uuid.c > create mode 100644 lib/librte_eal/common/include/rte_uuid.h >=20 Hi Stephen, Why does this need to be in EAl/Common would this be better in = the lib directory for utils or string routines? Does the EAl use the featur= e for something? Regards, Keith