From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 84CD6A0487 for ; Mon, 1 Jul 2019 10:39:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CD8A52C38; Mon, 1 Jul 2019 10:39:52 +0200 (CEST) Received: from mail-wm1-f65.google.com (mail-wm1-f65.google.com [209.85.128.65]) by dpdk.org (Postfix) with ESMTP id 21EC72BC8 for ; Mon, 1 Jul 2019 10:39:52 +0200 (CEST) Received: by mail-wm1-f65.google.com with SMTP id s3so14891541wms.2 for ; Mon, 01 Jul 2019 01:39:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind.com; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to; bh=Cx3APAoskGJqbpX6PEz2p5Hg5xsQxIyfJjqiZK4HZbA=; b=d4hMw1yhen4e1xDREf6Paae9w649d0d3Yqv21tVF+vddZtfAj38Geko670ogPmnoh7 /fbX/w1gDVn3nLmIy9OICcJ2SCTdme2ukKwAAJfJ1GcuXoM5+f42WPWFB9fKm+sVyH3u 2xGbNlfq0kXrx2bF4PL6VTCX9l19WPKOSKDDuLdkSd5o8uwgoWl0UluQAdczLxXTDoph 1j0qJpzkPzBXIvprlY8ppMZdE3W/Up/HhDKd5k5cuUvrbg6MkbrUehcmz2+omG/ufpAG 5FBB9JKqVegaQptLjYMqUEG/EjdywbEfZ2JXH1U/FzAcs5J2b/qWCg4IGJIze10A8uku RSag== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to; bh=Cx3APAoskGJqbpX6PEz2p5Hg5xsQxIyfJjqiZK4HZbA=; b=uXOTVVwrnXyspZkh4CMCOklsQLn/EepyXNp6qiFbk5EMqLfiJefGKH14ug6AoXMRIU 5Tm/lFIRhLcCkL/SGzaIqbj3imcDrvJ8kB+W5WnTxq20sGyU97QShAI9KRkD6b1RD0+N HXle7PzOplW4nDFmu/TYldZixxMtF6Uns2lBZuAdFdh0MMRKPIBqA9brsl75Zpin0H+7 U1PYrOCCCTQ1KKtYtUAxbFBWBO/18mprJCHN0M6r0tiSAAKOntyyzQvpiOe8YMx+PH5X J13q0wI8xQcYdQPoq9mLB9tFGlvJw6eV3p7ewFd3nHv8Kb0gx/t+Ph4RZF98vzkChrGf 7dcA== X-Gm-Message-State: APjAAAVJda+vYglfu4vyL9Ezj+b3vUNF0ajRG98Pcm2/IqrHNawyBJrw lNdGO74mdPf9scoFTBRY0mzz4w== X-Google-Smtp-Source: APXvYqzJM9JHNZJeFKnTqIrkcdGsKoK5m0blovudd62se07NMj97i789okhkK5T88KEf6U01uxBDJw== X-Received: by 2002:a1c:eb0a:: with SMTP id j10mr17510969wmh.1.1561970391871; Mon, 01 Jul 2019 01:39:51 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id e7sm7693310wmd.0.2019.07.01.01.39.50 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 01 Jul 2019 01:39:50 -0700 (PDT) Date: Mon, 1 Jul 2019 10:39:49 +0200 From: Adrien Mazarguil To: David Marchand Cc: Thomas Monjalon , dev , Mattias =?utf-8?B?UsO2bm5ibG9t?= Message-ID: <20190701083949.GC3911@6wind.com> References: <20190628155056.28884-1-adrien.mazarguil@6wind.com> <20190628155056.28884-2-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Subject: Re: [dpdk-dev] [PATCH 1/2] eal: fix duplicate experimental tag 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Jun 28, 2019 at 06:23:19PM +0200, David Marchand wrote: > On Fri, Jun 28, 2019 at 5:57 PM Adrien Mazarguil > wrote: > > > Its presence on the function prototype in the header file is enough. > > > > Fixes: 5f4ed3f05849 ("eal: introduce random generator with upper bound") > > Cc: Mattias Rönnblom > > > > Signed-off-by: Adrien Mazarguil > > --- > > lib/librte_eal/common/rte_random.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/lib/librte_eal/common/rte_random.c > > b/lib/librte_eal/common/rte_random.c > > index 3d9b9b7d8..f85119048 100644 > > --- a/lib/librte_eal/common/rte_random.c > > +++ b/lib/librte_eal/common/rte_random.c > > @@ -137,7 +137,7 @@ rte_rand(void) > > return __rte_rand_lfsr258(state); > > } > > > > -uint64_t __rte_experimental > > +uint64_t > > rte_rand_max(uint64_t upper_bound) > > { > > struct rte_rand_state *state; > > -- > > 2.11.0 > > > > I had mentionned to Thomas I would do an extra pass, thanks for already > catching this one. > Do you mind if I squash this in my series ? No problem, this series was tailored for this exact purpose, thanks for v2! -- Adrien Mazarguil 6WIND