From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id E53EC28FD for ; Mon, 24 Oct 2016 11:33:26 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP; 24 Oct 2016 02:33:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,541,1473145200"; d="scan'208";a="1049143024" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga001.jf.intel.com with ESMTP; 24 Oct 2016 02:32:56 -0700 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 24 Oct 2016 02:32:55 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 24 Oct 2016 02:32:55 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.139]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.104]) with mapi id 14.03.0248.002; Mon, 24 Oct 2016 17:32:53 +0800 From: "Wu, Jingjing" To: "Yang, Qiming" , "dev@dpdk.org" CC: "Yang, Qiming" Thread-Topic: [dpdk-dev] [PATCH 1/2] net/i40e: fix link status change interrupt Thread-Index: AQHSJRiZV2n8l6p4jEOYjmyvs7dC5qC3Z74A Date: Mon, 24 Oct 2016 09:32:52 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F80E293AC1@SHSMSX103.ccr.corp.intel.com> References: <1476338840-50003-1-git-send-email-qiming.yang@intel.com> In-Reply-To: <1476338840-50003-1-git-send-email-qiming.yang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiM2Q1MzE2ODUtNjI1My00NmVmLThkMDYtNmEzNmRiMGUwN2U2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjRxNFRSRjJGQmY4eFVvWGFlQStpOWR6dTNld0lPWEpuYUF6QlRTYWU3RGM9In0= x-ctpclassification: CTP_IC x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 1/2] net/i40e: fix link status change interrupt 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, 24 Oct 2016 09:33:27 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Qiming Yang > Sent: Thursday, October 13, 2016 2:07 PM > To: dev@dpdk.org > Cc: Yang, Qiming > Subject: [dpdk-dev] [PATCH 1/2] net/i40e: fix link status change interrup= t >=20 > Previously, link status interrupt in i40e is achieved by checking > LINK_STAT_CHANGE_MASK in PFINT_ICR0 register which is provided only > for diagnostic use. Instead, drivers need to get the link status > change notification by using LSE (Link Status Event). >=20 > This patch enables LSE and calls LSC callback when the event is > received. This patch also removes the processing on > LINK_STAT_CHANGE_MASK. Good description! Thanks! > Fixes: 5c9222058df7 ("i40e: move to drivers/net/") Acked-by: Jingjing Wu with minor comment: The commit 5c9222058df7 ("i40e: move to drivers/net/") is just a moving i40= e PMD driver code to current folder. It is not exactly that introduced the = issue. Maybe what you are looking for is 4861cde46116 ("i40e: new poll mode driver= ") Thanks Jingjing