svn commit: r254405 - projects/camlock/sys/cam

Alexander Motin mav at FreeBSD.org
Fri Aug 16 09:12:43 UTC 2013


Author: mav
Date: Fri Aug 16 09:12:42 2013
New Revision: 254405
URL: http://svnweb.freebsd.org/changeset/base/254405

Log:
  Add creation of taskqueue thread missed at r254214.

Modified:
  projects/camlock/sys/cam/cam_xpt.c

Modified: projects/camlock/sys/cam/cam_xpt.c
==============================================================================
--- projects/camlock/sys/cam/cam_xpt.c	Fri Aug 16 07:42:06 2013	(r254404)
+++ projects/camlock/sys/cam/cam_xpt.c	Fri Aug 16 09:12:42 2013	(r254405)
@@ -4841,6 +4841,8 @@ xpt_config(void *arg)
 	/*
 	 * Now that interrupts are enabled, go find our devices
 	 */
+	if (taskqueue_start_threads(&xsoftc.xpt_taskq, 1, PRIBIO, "CAM taskq"))
+		printf("xpt_config: failed to create taskqueue thread.\n");
 
 	/* Setup debugging path */
 	if (cam_dflags != CAM_DEBUG_NONE) {


More information about the svn-src-projects mailing list