From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f45.google.com (mail-wm0-f45.google.com [74.125.82.45]) by dpdk.org (Postfix) with ESMTP id 9A5B0370 for ; Mon, 28 Nov 2016 18:27:34 +0100 (CET) Received: by mail-wm0-f45.google.com with SMTP id g23so212999363wme.1 for ; Mon, 28 Nov 2016 09:27:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-transfer-encoding; bh=NK7q+QdyKfTIVFa6FQrbLFU+Xg7iNICQj2AOCeZhS+c=; b=plXkU52qxXEes5rj1sM/8+RLgDcq9LtC6dTaZ8yRTgOehM+mvfwZJR4lERciYmhBLK AbYbLhxwBDRYT+tGa892BZWf2pdsrohOimy8qmhnAjiWtvLRG7bVXnSXi7zCvG5WN4gg nsNuS2BI+nOKwgGb2GPXd2i5ydrcI2kj05mLAKqm6JrbifbpzeSgsy6rBohN+yAtg/DH B9srx+HuHTOf7J+lnGa8uYWikFlsPUAVH9kOveg3fVrxjfUQBUk3nyxFhvOdzmiaktxE 91nWjWRFwC+68kXkG56sznZ+sUbIamihmkw/86b/flDbAuKg6Smx++yMXQGwthvidKEb 7bIw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-transfer-encoding; bh=NK7q+QdyKfTIVFa6FQrbLFU+Xg7iNICQj2AOCeZhS+c=; b=HT7ScdtA5eXFz8vFNW1v9OzWelp8KFZ7P47JohjrIYTI5v2vvMWVc3mKC5oeBTfQ5P E7W7QVHCYRuI7q2ognzBn74GjTs/6orX5eA6Yc38ncZGUDCASFtNQmKKSoauRd/Mv0F9 pvBhnPGsPv3jjae02xnfxo5BdLLQULpQZZx01MGkl93aBBZOgUxgckoiTvho0Viwzx36 cYQFBPCmBWnLhmQ1QTrXAg+0izjZOielHBpS0KIpCJNbgtiYhn+9RIfVeQoepCvxt2JF 68H9+byLNZGeyVzmNG59SSc4MS9l9dkwGykasJdmhSF1HtEg4GJ96mYl62S0D49NvfEA CwrQ== X-Gm-Message-State: AKaTC02/EnEI5i5sMRH4b0uIRN4N7E+bpDt1TkOI4jh3XhmxfEYuki3n/usujYHUcd/dBwI1 X-Received: by 10.28.47.196 with SMTP id v187mr19651562wmv.75.1480354054027; Mon, 28 Nov 2016 09:27:34 -0800 (PST) Received: from [10.16.0.207] (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id 6sm63454148wjt.5.2016.11.28.09.27.33 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 28 Nov 2016 09:27:33 -0800 (PST) Message-ID: <583C68FF.5070907@6wind.com> Date: Mon, 28 Nov 2016 18:27:27 +0100 From: Laurent Hardy User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.7.0 MIME-Version: 1.0 To: helin.zhang@intel.com, konstantin.ananyev@intel.com CC: dev@dpdk.org References: <1479403792-11928-1-git-send-email-laurent.hardy@6wind.com> In-Reply-To: <1479403792-11928-1-git-send-email-laurent.hardy@6wind.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] net/ixgbe: ensure link status is updated X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2016 17:27:34 -0000 Hello, Is there anyone available to review this patch ? regards, Laurent On 11/17/2016 06:29 PM, Laurent Hardy wrote: > In case of link speed set to 1Gb at peer side (with autoneg or with > defined speed) and cable not plugged-in when device is configured > and started, then link status is not updated properly with new speed > as no link setup is triggered. > > To avoid this issue, IXGBE_FLAG_NEED_LINK_CONFIG is set to try a link > setup each time link_update() is triggered and current link status is > down. When cable is plugged-in, link setup will be performed via > ixgbe_setup_link(). > > Signed-off-by: Laurent Hardy > --- > drivers/net/ixgbe/ixgbe_ethdev.c | 20 ++++++++++++++++++++ > drivers/net/ixgbe/ixgbe_ethdev.h | 1 + > 2 files changed, 21 insertions(+) > > diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c > index 52ebbe4..513d1d5 100644 > --- a/drivers/net/ixgbe/ixgbe_ethdev.c > +++ b/drivers/net/ixgbe/ixgbe_ethdev.c > @@ -2095,6 +2095,7 @@ ixgbe_dev_configure(struct rte_eth_dev *dev) > > /* set flag to update link status after init */ > intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; > + intr->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; > > /* > * Initialize to TRUE. If any of Rx queues doesn't meet the bulk > @@ -3117,8 +3118,12 @@ ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete) > struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private); > struct rte_eth_link link, old; > ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN; > + struct ixgbe_interrupt *intr = > + IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private); > int link_up; > int diag; > + u32 speed = 0; > + bool autoneg = false; > > link.link_status = ETH_LINK_DOWN; > link.link_speed = 0; > @@ -3128,6 +3133,19 @@ ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete) > > hw->mac.get_link_status = true; > > + if (intr->flags & IXGBE_FLAG_NEED_LINK_CONFIG) { > + speed = hw->phy.autoneg_advertised; > + if (!speed) { > + ixgbe_get_link_capabilities(hw, &speed, &autoneg); > + /* setup the highest link when no autoneg */ > + if (!autoneg) { > + if (speed & IXGBE_LINK_SPEED_10GB_FULL) > + speed = IXGBE_LINK_SPEED_10GB_FULL; > + } > + } > + ixgbe_setup_link(hw, speed, true); > + } > + > /* check if it needs to wait to complete, if lsc interrupt is enabled */ > if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0) > diag = ixgbe_check_link(hw, &link_speed, &link_up, 0); > @@ -3145,10 +3163,12 @@ ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete) > > if (link_up == 0) { > rte_ixgbe_dev_atomic_write_link_status(dev, &link); > + intr->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; > if (link.link_status == old.link_status) > return -1; > return 0; > } > + intr->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG; > link.link_status = ETH_LINK_UP; > link.link_duplex = ETH_LINK_FULL_DUPLEX; > > diff --git a/drivers/net/ixgbe/ixgbe_ethdev.h b/drivers/net/ixgbe/ixgbe_ethdev.h > index e060c3d..9d335ba 100644 > --- a/drivers/net/ixgbe/ixgbe_ethdev.h > +++ b/drivers/net/ixgbe/ixgbe_ethdev.h > @@ -43,6 +43,7 @@ > #define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0) > #define IXGBE_FLAG_MAILBOX (uint32_t)(1 << 1) > #define IXGBE_FLAG_PHY_INTERRUPT (uint32_t)(1 << 2) > +#define IXGBE_FLAG_NEED_LINK_CONFIG (uint32_t)(1 << 3) > > /* > * Defines that were not part of ixgbe_type.h as they are not used by the