svn commit: r295604 - head/sys/dev/ioat

Conrad E. Meyer cem at FreeBSD.org
Sat Feb 13 22:51:18 UTC 2016


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++;


More information about the svn-src-all mailing list