From owner-freebsd-current@FreeBSD.ORG Tue Jun 21 20:19:52 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4277C10656D9; Tue, 21 Jun 2011 20:19:52 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id DAB978FC1A; Tue, 21 Jun 2011 20:19:51 +0000 (UTC) Received: from [127.0.0.1] (pooker.samsco.org [168.103.85.57]) (authenticated bits=0) by pooker.samsco.org (8.14.4/8.14.4) with ESMTP id p5LJkIhe069202; Tue, 21 Jun 2011 13:46:18 -0600 (MDT) (envelope-from scottl@samsco.org) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: Scott Long In-Reply-To: Date: Tue, 21 Jun 2011 13:46:18 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <34831DB6-8517-44CF-A966-98FE0AD7214F@samsco.org> References: <20110621182247.GA6928@vniz.net> To: Garrett Cooper X-Mailer: Apple Mail (2.1084) X-Spam-Status: No, score=-50.0 required=3.8 tests=ALL_TRUSTED, T_RP_MATCHES_RCVD autolearn=unavailable version=3.3.0 X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on pooker.samsco.org Cc: gibbs@freebsd.org, FreeBSD-Current , George Kontostanos Subject: Re: xpt_action_default: CCB type 0xe not supported X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2011 20:19:52 -0000 On Jun 21, 2011, at 1:13 PM, Garrett Cooper wrote: > On Tue, Jun 21, 2011 at 11:22 AM, Andrey Chernov = 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);