Re: [Intel-wired-lan] [PATCH] e1000e: free IRQ when the link is up or down

2016-11-03 Thread Baicar, Tyler
; linux-ker...@vger.kernel.org; ok...@codeaurora.org; ti...@codeaurora.org Cc: Tyler Baicar Subject: [Intel-wired-lan] [PATCH] e1000e: free IRQ when the link is up or down Move IRQ free code so that it will happen regardless of the link state. Currently the e1000e driver only releases its IRQ if the link

RE: [Intel-wired-lan] [PATCH] e1000e: free IRQ when the link is up or down

2016-11-03 Thread Ruinskiy, Dima
er.kernel.org; >ok...@codeaurora.org; ti...@codeaurora.org >Cc: Tyler Baicar >Subject: [Intel-wired-lan] [PATCH] e1000e: free IRQ when the link is up or >down > >Move IRQ free code so that it will happen regardless of the link state. >Currently the e1000e driver only releases its IRQ if th

Re: [PATCH] e1000e: free IRQ when the link is up or down

2016-11-02 Thread Alexander Duyck
On Wed, Nov 2, 2016 at 2:08 PM, Tyler Baicar wrote: > Move IRQ free code so that it will happen regardless of the > link state. Currently the e1000e driver only releases its IRQ > if the link is up. This is not sufficient because it is > possible for a link to go down without releasing the IRQ. A

[PATCH] e1000e: free IRQ when the link is up or down

2016-11-02 Thread Tyler Baicar
Move IRQ free code so that it will happen regardless of the link state. Currently the e1000e driver only releases its IRQ if the link is up. This is not sufficient because it is possible for a link to go down without releasing the IRQ. A secondary bus reset can cause this case to happen. Signed-of