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 1AA60A046B for ; Fri, 28 Jun 2019 18:23:33 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 294114C8E; Fri, 28 Jun 2019 18:23:32 +0200 (CEST) Received: from mail-ua1-f68.google.com (mail-ua1-f68.google.com [209.85.222.68]) by dpdk.org (Postfix) with ESMTP id 3BB4637B4 for ; Fri, 28 Jun 2019 18:23:31 +0200 (CEST) Received: by mail-ua1-f68.google.com with SMTP id v20so2414436uao.3 for ; Fri, 28 Jun 2019 09:23:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=DaXv8X/1UgFmuP5ewqKJdlMMnkSsqF//Ivy8fWHdv6s=; b=HnHv9N/trxbH/OIPsVsAwiasAlrGtgZSK0qDhTd3lwgsZNgE64qNwtfQ6c2kqITdui kYW3nG6A6fyyEEP+3mROFqznx22c7NdW1l7NM46EKAGQCDQfAtX4KYhAIIaVysiNsF/8 ZPPrAg2OjlyUOhrpyS7KCCIaZu6VIEw6mSXMapKjUOzyeTFK/lcIyFgcSx/PCv9sY2AS YTwhNBrSI4kRXmrq2VKIzrS6ROZTnRZTZDwtBWAv9LxuJ0uFnq8xdPfiBh0oZeCRiFg2 peLFRsFHp3jyxdAKen46ID8TtgLA2Umq0un7gv0/NFDU8+vJ0wSdD3J2I2FS8p3Lpkcv YU1w== X-Gm-Message-State: APjAAAXgTGv581kTs/JprWqI5El39BIN+gT5i6sPoCvhVNAtKbB7mswk LYKRav+uZOO5bYeKbI0Dq/Ptphbto5xOia9RMJjbDg== X-Google-Smtp-Source: APXvYqyib/LG2nr9cEZsIcWxuBvC/2yoI8Z2J4NR0LwSK6RyALDBvN2BLfR9GM3vieDGPa+2uifwTi3BIOcIkyAmcLE= X-Received: by 2002:ab0:45e3:: with SMTP id u90mr6488420uau.126.1561739010583; Fri, 28 Jun 2019 09:23:30 -0700 (PDT) MIME-Version: 1.0 References: <20190628155056.28884-1-adrien.mazarguil@6wind.com> <20190628155056.28884-2-adrien.mazarguil@6wind.com> In-Reply-To: <20190628155056.28884-2-adrien.mazarguil@6wind.com> From: David Marchand Date: Fri, 28 Jun 2019 18:23:19 +0200 Message-ID: To: Adrien Mazarguil Cc: Thomas Monjalon , dev , =?UTF-8?Q?Mattias_R=C3=B6nnblom?= Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 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 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=C3=B6nnblom > > 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 ? --=20 David Marchand