xpt_action_default: CCB type 0xe not supported
Scott Long
scottl at samsco.org
Tue Jun 21 20:19:52 UTC 2011
On Jun 21, 2011, at 1:13 PM, Garrett Cooper wrote:
> On Tue, Jun 21, 2011 at 11:22 AM, Andrey Chernov <ache at 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:
>>>
>>> xpt_action_default: CCB type 0xe not supported
>>> xpt_action_default: CCB type 0xe not supported
>>
>> +1 on ICH9 SATA
>
> 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=markup&pathrev=223081
> ):
>
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 = CAM_PROVIDE_FAIL;
if (start_ccb->ccb_h.func_code & XPT_FC_DEV_QUEUED) {
xpt_done(start_ccb);
More information about the freebsd-current
mailing list