From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 9CF4C1B144 for ; Wed, 14 Nov 2018 17:52:40 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Nov 2018 08:52:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,233,1539673200"; d="scan'208";a="92035108" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by orsmga008.jf.intel.com with ESMTP; 14 Nov 2018 08:52:38 -0800 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.253]) by IRSMSX152.ger.corp.intel.com ([169.254.6.64]) with mapi id 14.03.0415.000; Wed, 14 Nov 2018 16:52:37 +0000 From: "Singh, Jasvinder" To: "Burakov, Anatoly" , "dev@dpdk.org" CC: Neil Horman , "Mcnamara, John" , "Kovacevic, Marko" , "Dumitrescu, Cristian" , "thomas@monjalon.net" , "Richardson, Bruce" , "Yigit, Ferruh" Thread-Topic: [PATCH v3 2/5] bitmap: rename rte_bsf64 and move to common header Thread-Index: AQHUfDm/n1Ds5BhO+0qJNuhD5bnD9KVPfCTA Date: Wed, 14 Nov 2018 16:52:36 +0000 Message-ID: <54CBAA185211B4429112C315DA58FF6D3365D334@IRSMSX103.ger.corp.intel.com> References: In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiN2UyOTIzZTktY2ViOC00NGNkLWE1MjQtNzkzMzFmMmEzMTVlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiMUNyTWFsRSs3WTZXUTl1QkFrWWxPdGplYkdXQm55R1dnZTZDZkd6bFZJNHFTMHdjZGtqbHlCUTZsNm03SVpMdCJ9 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 v3 2/5] bitmap: rename rte_bsf64 and move to common header 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, 14 Nov 2018 16:52:41 -0000 > -----Original Message----- > From: Burakov, Anatoly > Sent: Wednesday, November 14, 2018 4:47 PM > To: dev@dpdk.org > Cc: Neil Horman ; Mcnamara, John > ; Kovacevic, Marko > ; Dumitrescu, Cristian > ; thomas@monjalon.net; Richardson, Bruce > ; Yigit, Ferruh ; Sin= gh, > Jasvinder > Subject: [PATCH v3 2/5] bitmap: rename rte_bsf64 and move to common > header >=20 > Rename rte_bsf64 to rte_bsf64_safe (this is a "safe" version in that it p= revents > undefined behavior by checking if incoming parameter is zero) and move it= to > common header. >=20 > Signed-off-by: Anatoly Burakov > Acked-by: Cristian Dumitrescu > --- >=20 > Notes: > v3: > - Added clarification that pos is not checked >=20 > doc/guides/rel_notes/deprecation.rst | 5 +++++ > lib/librte_eal/common/include/rte_bitmap.h | 14 ++++--------- > lib/librte_eal/common/include/rte_common.h | 23 > ++++++++++++++++++++++ > 3 files changed, 32 insertions(+), 10 deletions(-) >=20 Acked-by: Jasvinder Singh