On Tue, Jun 21, 2011 at 11:22 AM, Andrey Chernov <[email protected]> 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
):

2930            case XPT_SDEV_TYPE:
2931            case XPT_TERM_IO:
2932            case XPT_ENG_INQ:
2933                    /* XXX Implement */
2934                    printf("%s: CCB type %#x not supported\n", __func__,
2935                           start_ccb->ccb_h.func_code);
2936                    start_ccb->ccb_h.status = CAM_PROVIDE_FAIL;
2937                    if (start_ccb->ccb_h.func_code & XPT_FC_DEV_QUEUED) {
2938                            xpt_done(start_ccb);
2939                    }
2940                    break;

It probably should be removed.
Thanks,
-Garrett
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "[email protected]"

Reply via email to