svn commit: r263300 - stable/9/sys/cam
Alexander Motin
mav at FreeBSD.org
Tue Mar 18 14:19:53 UTC 2014
Author: mav
Date: Tue Mar 18 14:19:53 2014
New Revision: 263300
URL: http://svnweb.freebsd.org/changeset/base/263300
Log:
MFC r262741:
Do not retry on CAM_FUNC_NOTAVAIL error, but return immediately.
Modified:
stable/9/sys/cam/cam_periph.c
Directory Properties:
stable/9/ (props changed)
stable/9/sys/ (props changed)
Modified: stable/9/sys/cam/cam_periph.c
==============================================================================
--- stable/9/sys/cam/cam_periph.c Tue Mar 18 14:18:45 2014 (r263299)
+++ stable/9/sys/cam/cam_periph.c Tue Mar 18 14:19:53 2014 (r263300)
@@ -1662,6 +1662,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-stable-9
mailing list