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);
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"