svn commit: r262741 - head/sys/cam

Alexander Motin mav at FreeBSD.org
Tue Mar 4 15:07:01 UTC 2014


Author: mav
Date: Tue Mar  4 15:07:00 2014
New Revision: 262741
URL: http://svnweb.freebsd.org/changeset/base/262741

Log:
  Do not retry on CAM_FUNC_NOTAVAIL error, but return immediately.
  
  MFC after:	2 weeks

Modified:
  head/sys/cam/cam_periph.c

Modified: head/sys/cam/cam_periph.c
==============================================================================
--- head/sys/cam/cam_periph.c	Tue Mar  4 14:49:05 2014	(r262740)
+++ head/sys/cam/cam_periph.c	Tue Mar  4 15:07:00 2014	(r262741)
@@ -1655,6 +1655,7 @@ cam_periph_error(union ccb *ccb, cam_fla
 	case CAM_REQ_TOO_BIG:
 	case CAM_LUN_INVALID:
 	case CAM_TID_INVALID:
+	case CAM_FUNC_NOTAVAIL:
 		error = EINVAL;
 		break;
 	case CAM_SCSI_BUS_RESET:


More information about the svn-src-all mailing list