From owner-svn-src-all@FreeBSD.ORG Sat Jan 11 14:18:46 2014 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99631EE4; Sat, 11 Jan 2014 14:18:46 +0000 (UTC) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 56FC115F1; Sat, 11 Jan 2014 14:18:44 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id QAA28518; Sat, 11 Jan 2014 16:18:43 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1W1zOb-000Nql-HI; Sat, 11 Jan 2014 16:18:43 +0200 Message-ID: <52D15286.1000707@FreeBSD.org> Date: Sat, 11 Jan 2014 16:17:42 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Alexander Motin , src-committers@FreeBSD.org, svn-src-all@FreeBSD.org, svn-src-head@FreeBSD.org Subject: Re: svn commit: r260541 - in head/sys/cam: . scsi References: <201401111335.s0BDZaFU070072@svn.freebsd.org> <52D14ED6.8070708@FreeBSD.org> <52D1500B.4020007@FreeBSD.org> In-Reply-To: <52D1500B.4020007@FreeBSD.org> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jan 2014 14:18:46 -0000 on 11/01/2014 16:07 Alexander Motin said the following: > Could you please resolve xpt_done_process+0x50a ? Sure: (kgdb) fr 9 #9 0xffffffff8029e9ea in xpt_done_process (ccb_h=) at /usr/src/sys/cam/cam_xpt.c:5250 5250 mtx_lock(&devq->send_mtx); (kgdb) list 5245 ccb_h->pinfo.index = CAM_UNQUEUED_INDEX; 5246 (*ccb_h->cbfcnp)(ccb_h->path->periph, (union ccb *)ccb_h); 5247 if (mtx != NULL) 5248 mtx_unlock(mtx); 5249 5250 mtx_lock(&devq->send_mtx); 5251 xpt_run_devq(devq); 5252 mtx_unlock(&devq->send_mtx); 5253 } 5254 -- Andriy Gapon