svn commit: r223556 - head/sys/cam

Justin T. Gibbs gibbs at FreeBSD.org
Sun Jun 26 01:14:54 UTC 2011


Author: gibbs
Date: Sun Jun 26 01:14:54 2011
New Revision: 223556
URL: http://svn.freebsd.org/changeset/base/223556

Log:
  cam/cam_xpt.c:
  	In camisr_runqueue(), we need to run the sims queue regardless of
  	whether or not the current peripheral has more work to do.  This
  	reverts a change mistakenly made in revision 223081.
  
  Reported by: ache

Modified:
  head/sys/cam/cam_xpt.c

Modified: head/sys/cam/cam_xpt.c
==============================================================================
--- head/sys/cam/cam_xpt.c	Sun Jun 26 00:49:17 2011	(r223555)
+++ head/sys/cam/cam_xpt.c	Sun Jun 26 01:14:54 2011	(r223556)
@@ -4894,8 +4894,8 @@ camisr_runqueue(void *V_queue)
 			 && (--dev->tag_delay_count == 0))
 				xpt_start_tags(ccb_h->path);
 			if (!device_is_send_queued(dev)) {
-				runq = xpt_schedule_dev_sendq(ccb_h->path->bus, 
-				    dev);
+				(void)xpt_schedule_dev_sendq(ccb_h->path->bus, 
+							     dev);
 			}
 		}
 


More information about the svn-src-all mailing list