From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <thomas@monjalon.net> Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id D216AAABF; Fri, 20 Apr 2018 02:26:50 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 7DDC221E89; Thu, 19 Apr 2018 20:26:50 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 19 Apr 2018 20:26:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=Fd53l3iJdUYmRn3lS5azUX3qRN u6IUSz05RGUEpRy7c=; b=d/eeD6/EhLPiZrLiCPBeRytd0WI5aIU2xaUOzQWdY6 EmuT1QF0YlzidkGojxOSvMhKND8YAPQyhEQSHXluzUxu4LQ0aavX8G1Jpou9d0rY vNDunqgrPToVz4QSVI0blfxj2mlWF+o74iyNo7xACq0XkFZMeWgHzFoC53xePcx+ Y= 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-sender:x-me-sender:x-sasl-enc; s=fm2; bh=Fd53l3 iJdUYmRn3lS5azUX3qRNu6IUSz05RGUEpRy7c=; b=Xnjtnx5W2g/UDxN4dVWjO3 X++XOXu9W2JuXspMtJgslS5flDTS/5iNpnDtQL1fyPX4G1fjtpPr1vWa9nim6zPt DtB9E6wtZImIyM0DXnt9PfumSFy/I2gLfoAq+XjeSeGcimwIsjlb4hzI1lSecUs3 Wifn1hBvyr6OorWuLTCDHRT7QviEJfh8m2qfFnv4HDe1E4qZo1nKg6cd9+Sg5fCJ Kp6dQiS0k7XhgM0xCRGS9Jbqipqy7+1ZjAcp9anSbb/upRyNKUhBy5e2LqIfyj86 wAr2GaQmgCBlMhTWr2WCgFhwgtGZOuvHHw+2makQUheL7k9aZs0nKdogD/ZChb8g == X-ME-Sender: <xms:yjPZWlFw7QBEh-dwIFb1-H68nxes8y1bD2piyGFHZqMZ9TaT99LlMQ> Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 46976E43E8; Thu, 19 Apr 2018 20:26:49 -0400 (EDT) From: Thomas Monjalon <thomas@monjalon.net> To: Ferruh Yigit <ferruh.yigit@intel.com> Cc: dev@dpdk.org, "John W. Linville" <linville@tuxdriver.com>, Tetsuya Mukawa <mtetsuyah@gmail.com>, Bruce Richardson <bruce.richardson@intel.com>, Jasvinder Singh <jasvinder.singh@intel.com>, Cristian Dumitrescu <cristian.dumitrescu@intel.com>, Pascal Mazon <pascal.mazon@6wind.com>, stable@dpdk.org, Chas Williams <chas3@att.com> Date: Fri, 20 Apr 2018 02:26:48 +0200 Message-ID: <2196975.Yvl187P4FV@xps> In-Reply-To: <20180420000124.37412-1-ferruh.yigit@intel.com> References: <20180420000124.37412-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] drivers/net: fix link autoneg value for virtual PMDs X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches <stable.dpdk.org> List-Unsubscribe: <https://dpdk.org/ml/options/stable>, <mailto:stable-request@dpdk.org?subject=unsubscribe> List-Archive: <http://dpdk.org/ml/archives/stable/> List-Post: <mailto:stable@dpdk.org> List-Help: <mailto:stable-request@dpdk.org?subject=help> List-Subscribe: <https://dpdk.org/ml/listinfo/stable>, <mailto:stable-request@dpdk.org?subject=subscribe> X-List-Received-Date: Fri, 20 Apr 2018 00:26:51 -0000 20/04/2018 02:01, Ferruh Yigit: > These drivers never attempt link speed negotiation. Change link_autoneg > value to ETH_LINK_FIXED to be more accurate and consistent between PMDs. > > Fixes: 1e3a958f40b3 ("ethdev: fix link autonegotiation value") > Cc: stable@dpdk.org > > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> Acked-by: Thomas Monjalon <thomas@monjalon.net>