Re: [PATCH] uart_core: start countdown for non-interrupt mode

2015-07-15 Thread Neel Natu
Thanks for the patch. Committed as r285619: https://svnweb.freebsd.org/changeset/base/285619 best Neel On Thu, Jul 9, 2015 at 12:15 PM, Simon J. Gerraty s...@juniper.net wrote: Aleksey Kuleshov rnd...@yandex.ru wrote: The uart_intr will never be called if interrupts are not available. Start

Re: [PATCH] uart_core: start countdown for non-interrupt mode

2015-07-09 Thread Simon J. Gerraty
Aleksey Kuleshov rnd...@yandex.ru wrote: The uart_intr will never be called if interrupts are not available. Start counter with callout_reset call. FWIW this fixed an issue we were investgating. ___ freebsd-current@freebsd.org mailing list

[PATCH] uart_core: start countdown for non-interrupt mode

2015-07-08 Thread Aleksey Kuleshov
The uart_intr will never be called if interrupts are not available. Start counter with callout_reset call. --- sys/dev/uart/uart_core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/uart/uart_core.c b/sys/dev/uart/uart_core.c index bbb06ff..c1b64ba 100644 ---