From owner-freebsd-current@FreeBSD.ORG Tue Jun 21 19:13:54 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 F3BB010656B1 for ; Tue, 21 Jun 2011 19:13:53 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 844848FC12 for ; Tue, 21 Jun 2011 19:13:53 +0000 (UTC) Received: by vxg33 with SMTP id 33so95121vxg.13 for ; Tue, 21 Jun 2011 12:13:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=8U8EQq/V/G8ykXIH9dgRU4+WXIDXk64WrAboUdoQLHs=; b=PMaXbvT6bG0iEfqB/c5Ff5jMwOlElHM/QahG8+VwbThMojpQv+FsbADVnowN5zO+Xx Aok3aieoIAcJ7ZO6+gS0LQ0J1i8249fvoddZKaAIF7WSyvYFc6n0k0q3o5QlllPCzSCY BMMxqhsCp5kqWyTdNUqBzdyD2+aIU9lJsBLSs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=ABcdjZOOOFMvRVxkSL7O2QrJ1zO5Yqi7HfDWuLGt2NHs5kHPphp1j63g7d9Obae0NE pbSB35VzHgbaWDYXDTqxQ4PQ0vSbya01FIMA8eKzg3P88wK4g1SgDkobXspWM2o2Z9+0 vHC9kNyH3ozx+pNc+CDRGjjVku6+4NUjYc54I= MIME-Version: 1.0 Received: by 10.220.148.66 with SMTP id o2mr1571674vcv.93.1308683632789; Tue, 21 Jun 2011 12:13:52 -0700 (PDT) Received: by 10.220.189.202 with HTTP; Tue, 21 Jun 2011 12:13:52 -0700 (PDT) In-Reply-To: <20110621182247.GA6928@vniz.net> References: <20110621182247.GA6928@vniz.net> Date: Tue, 21 Jun 2011 12:13:52 -0700 Message-ID: From: Garrett Cooper To: Andrey Chernov , George Kontostanos , FreeBSD-Current Content-Type: text/plain; charset=ISO-8859-1 Cc: gibbs@FreeBSD.org 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 19:13:54 -0000 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: >> >> 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