Re: [dpdk-dev] [PATCH v3] net/e1000: fix link status update

2019-11-18 Thread Lu, Wenzhuo
Hi Lunyuan, > -Original Message- > From: Cui, LunyuanX > Sent: Monday, November 18, 2019 10:58 PM > To: dev@dpdk.org > Cc: Lu, Wenzhuo ; Cui, LunyuanX > ; sta...@dpdk.org > Subject: [PATCH v3] net/e1000: fix link status update > > Unassigned variable should not be used as judgment, and t

Re: [dpdk-dev] [PATCH v3] net/e1000: fix link status update

2019-11-17 Thread Ye Xiaolong
Hi, wenzhuo Could you help ack this patch if you are ok with this change? Thanks, Xiaolong On 11/18, Lunyuan Cui wrote: >Unassigned variable should not be used as judgment, and there >is no need to update link status according to old link status. >This patch fix the issue. > >Change the variable

[dpdk-dev] [PATCH v3] net/e1000: fix link status update

2019-11-17 Thread Lunyuan Cui
Unassigned variable should not be used as judgment, and there is no need to update link status according to old link status. This patch fix the issue. Change the variable from link_check to link_up. Fixes: 80ba61115e77 ("net/e1000: use link status helper functions") Cc: sta...@dpdk.org Signed-of