Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jun 2011 13:46:18 -0600
From:      Scott Long <scottl@samsco.org>
To:        Garrett Cooper <yanegomi@gmail.com>
Cc:        gibbs@freebsd.org, FreeBSD-Current <freebsd-current@freebsd.org>, George Kontostanos <gkontos.mail@gmail.com>
Subject:   Re: xpt_action_default: CCB type 0xe not supported
Message-ID:  <34831DB6-8517-44CF-A966-98FE0AD7214F@samsco.org>
In-Reply-To: <BANLkTi=94Q98StmQ=ktF7kP_JALcmw3DqQ@mail.gmail.com>
References:  <BANLkTi=W=yr5-8Q58rzh%2BbMfd2DFTuJnZw@mail.gmail.com> <20110621182247.GA6928@vniz.net> <BANLkTi=94Q98StmQ=ktF7kP_JALcmw3DqQ@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help

On Jun 21, 2011, at 1:13 PM, Garrett Cooper wrote:

> On Tue, Jun 21, 2011 at 11:22 AM, Andrey Chernov <ache@freebsd.org> =
wrote:
>> On Tue, Jun 21, 2011 at 08:51:02PM +0300, George Kontostanos wrote:
>>> Fresh installation and after world && kernel update I get these =
messages
>>> during boot:
>>>=20
>>> xpt_action_default: CCB type 0xe not supported
>>> xpt_action_default: CCB type 0xe not supported
>>=20
>> +1 on ICH9 SATA
>=20
> It's noise added via r223081, that wasn't present in the previous
> revision ( =
http://svnweb.freebsd.org/base/head/sys/cam/cam_xpt.c?view=3Dmarkup&pathre=
v=3D223081
> ):
>=20

This should fix it:

--- cam_xpt.c	14 Jun 2011 14:53:17 -0000	1.262
+++ cam_xpt.c	21 Jun 2011 19:44:17 -0000
@@ -2931,8 +2931,9 @@
 	case XPT_TERM_IO:
 	case XPT_ENG_INQ:
 		/* XXX Implement */
-		printf("%s: CCB type %#x not supported\n", __func__,
-		       start_ccb->ccb_h.func_code);
+		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_INFO,
+		    ("%s: CCB type %#x not supported\n", __func__,
+		    start_ccb->ccb_h.func_code));
 		start_ccb->ccb_h.status =3D CAM_PROVIDE_FAIL;
 		if (start_ccb->ccb_h.func_code & XPT_FC_DEV_QUEUED) {
 			xpt_done(start_ccb);





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?34831DB6-8517-44CF-A966-98FE0AD7214F>