> -----Original Message----- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Qiming Yang > Sent: Thursday, October 13, 2016 2:07 PM > To: dev at dpdk.org > Cc: Yang, Qiming <qiming.yang at intel.com> > Subject: [dpdk-dev] [PATCH 1/2] net/i40e: fix link status change interrupt > > 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). > > 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 <jingjing.wu at intel.com> with minor comment: The commit 5c9222058df7 ("i40e: move to drivers/net/") is just a moving i40e 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