Date: Sat, 13 Feb 2016 22:51:17 +0000 (UTC) From: "Conrad E. Meyer" <cem@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r295604 - head/sys/dev/ioat Message-ID: <201602132251.u1DMpHt6092958@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cem Date: Sat Feb 13 22:51:17 2016 New Revision: 295604 URL: https://svnweb.freebsd.org/changeset/base/295604 Log: ioat(4): Also check for errors if the channel is suspended Sponsored by: EMC / Isilon Storage Division Modified: head/sys/dev/ioat/ioat.c Modified: head/sys/dev/ioat/ioat.c ============================================================================== --- head/sys/dev/ioat/ioat.c Sat Feb 13 19:01:56 2016 (r295603) +++ head/sys/dev/ioat/ioat.c Sat Feb 13 22:51:17 2016 (r295604) @@ -672,7 +672,7 @@ out: wakeup(&ioat->tail); } - if (!is_ioat_halted(comp_update)) + if (!is_ioat_halted(comp_update) && !is_ioat_suspended(comp_update)) return; ioat->stats.channel_halts++;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602132251.u1DMpHt6092958>