Re: ipmi(4): don't block interrupts/systq long time

2019-06-09 Thread Naoki Fukaumi
hi patrick keshishian, From: patrick keshishian Subject: Re: ipmi(4): don't block interrupts/systq long time Date: Fri, 7 Jun 2019 19:24:15 -0700 >> Index: sys/dev/ipmi.c >> === >> RCS file: /cvs/src/sys/dev

Re: ipmi(4): don't block interrupts/systq long time

2019-06-07 Thread patrick keshishian
On Fri, Jun 07, 2019 at 07:29:19PM +0900, Naoki Fukaumi wrote: > hi tech@, > > here is another patch for another issue for ipmi(4). > > ipmi_sendcmd() and ipmi_recvcmd() are always called in order/pairs as a > single task of a single-threaded taskq, remove mutex from there. this > avoids interrup

ipmi(4): don't block interrupts/systq long time

2019-06-07 Thread Naoki Fukaumi
hi tech@, here is another patch for another issue for ipmi(4). ipmi_sendcmd() and ipmi_recvcmd() are always called in order/pairs as a single task of a single-threaded taskq, remove mutex from there. this avoids interrupts blocked long time. task for watchdog can be long lived, use own taskq ins