From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C0062A0C4D; Mon, 8 Nov 2021 11:53:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8F8F440151; Mon, 8 Nov 2021 11:53:15 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by mails.dpdk.org (Postfix) with ESMTP id 7AC7940040 for ; Mon, 8 Nov 2021 11:53:14 +0100 (CET) Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 280F45C010E; Mon, 8 Nov 2021 05:53:14 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute6.internal (MEProxy); Mon, 08 Nov 2021 05:53:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=fm2; bh= F2a5HqBBnltdCsTQ4+dpMoeMd9WEST9nTilTMnEAC8E=; b=kIZnNFTso2QCNrg3 ErfdWj8yTanNO7kWdSjBjgnDP1BQLJJfswWFjE6eofOe9FuozzXXfkp8kSUS2j1f e9c6q+m74V22WKbKTvuRpE9OR4HPwML4BD5/KD6c482oXQC5Si0XjYjFTTtPUmA1 HaHd85r6PsniOlmDtyLrz5110Et/kGSOVFiAhNIrS+YmgrgV3bfvWoiM2Og9YDuS Oo5UO0M1B6L2eTZYAHu7d/Ilep/L6UWhxJvdHyi5Pa05g85uNICYkHgfzJyxJrG/ F3x8G7mrzhLoWR0TwVPMzIGwaKSB4oTqD9gQXDKyZbItrRFAlymZ+BRjqnT1cR4A DEkeZg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=F2a5HqBBnltdCsTQ4+dpMoeMd9WEST9nTilTMnEAC 8E=; b=U53S97Z2Lr2mUwhkCCygQ7SKVrqXBIiY55SQKRg71kvZkUqJdvZlyeBJM nZhCNKT/TY8D+R3o3F89+X7IQJmweGB62SD7k9xketc6MeoDqn7PTX6Si4yXkriO b4ob9jd5+o6OY0Z2U7IWkpAtvWEP6A9fcb8cNHuyMAKcwfVIUXzM8T6dhL7smpcv Y7wxqpoKob3GcZ3PgZSXq58SV+qXmFyzHFJ5oeayULQFJxKmKspl6oAHzB1aASFa Li9hGuUkSezHkLCgLj94mhYTip2iCPhlp1JATf3EvSPajKqXeEnlBmemM4ism0H+ muA0vxEPssmmPHH8e4Ef7/4uIkAfw== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvuddruddvgddvtdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucggtf frrghtthgvrhhnpedugefgvdefudfftdefgeelgffhueekgfffhfeujedtteeutdejueei iedvffegheenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhroh hmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvght X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Mon, 8 Nov 2021 05:53:13 -0500 (EST) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org, Stephen Hemminger Date: Mon, 08 Nov 2021 11:53:12 +0100 Message-ID: <2511771.yt2KfCC89p@thomas> In-Reply-To: <20211103125950.3895442-1-ferruh.yigit@intel.com> References: <20211103125950.3895442-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] kni: update kernel API to set random MAC address X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" 03/11/2021 13:59, Ferruh Yigit: > Previously used 'random_ether_addr()' API is removed in upstream kernel > with commit > Commit ba530fea8ca1 ("ethernet: remove random_ether_addr()") > > Replacement API 'eth_random_addr()' is around since v3.6 [1], so > simply switching to this API without any version checks. > > [1] > 0a4dd594982a ("etherdevice: Rename random_ether_addr to eth_random_addr") > > Signed-off-by: Ferruh Yigit Applied, thanks.