Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jun 2011 12:13:52 -0700
From:      Garrett Cooper <yanegomi@gmail.com>
To:        Andrey Chernov <ache@freebsd.org>, George Kontostanos <gkontos.mail@gmail.com>,  FreeBSD-Current <freebsd-current@freebsd.org>
Cc:        gibbs@FreeBSD.org
Subject:   Re: xpt_action_default: CCB type 0xe not supported
Message-ID:  <BANLkTi=94Q98StmQ=ktF7kP_JALcmw3DqQ@mail.gmail.com>
In-Reply-To: <20110621182247.GA6928@vniz.net>
References:  <BANLkTi=W=yr5-8Q58rzh%2BbMfd2DFTuJnZw@mail.gmail.com> <20110621182247.GA6928@vniz.net>

next in thread | previous in thread | raw e-mail | index | archive | help
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:
>>
>> 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?BANLkTi=94Q98StmQ=ktF7kP_JALcmw3DqQ>