Date: Tue, 14 Nov 2006 08:32:56 GMT From: Matt Jacob <mjacob@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 109908 for review Message-ID: <200611140832.kAE8WuW9065078@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=109908 Change 109908 by mjacob@newisp on 2006/11/14 08:32:04 Turn down loop or f/w ready errors into CMD_RQLATER returns- not CMD_EAGAIN. Affected files ... .. //depot/projects/newisp/dev/isp/isp.c#32 edit Differences ... ==== //depot/projects/newisp/dev/isp/isp.c#32 (text+ko) ==== @@ -4006,7 +4006,7 @@ */ if (fcp->isp_fwstate != FW_READY || fcp->isp_loopstate != LOOP_READY) { - return (CMD_EAGAIN); + return (CMD_RQLATER); } if (XS_TGT(xs) >= MAX_FC_TARG) { @@ -4857,7 +4857,8 @@ XS_SET_STATE_STAT(isp, xs, sp); if (resp) { isp_prt(isp, ISP_LOGWARN, - "FCP RESPONSE: 0x%x", + "%d.%d FCP RESPONSE: 0x%x", + XS_TGT(xs), XS_LUN(xs), resp[FCP_RSPNS_CODE_OFFSET]); XS_SETERR(xs, HBA_BOTCH); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200611140832.kAE8WuW9065078>