From owner-cvs-src@FreeBSD.ORG Wed Oct 26 16:33:20 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1466316A420 for ; Wed, 26 Oct 2005 16:33:20 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60A6043D4C for ; Wed, 26 Oct 2005 16:33:17 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: by nproxy.gmail.com with SMTP id p48so41566nfa for ; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QHvqEDVN8CY9W5TBC51u0HWUldbnFQBt+zsysYb25DV4mwR0epNZzaQr+yPo4DVV8BFEoxUQJgp6htX/H3CW2WjEO0qCAPYNVkqsL5qbv4FTF06tHgHHXjdAm1TjFqE/W8Iujqwo+jHrYyWFpnH/ztECZMZNIoOgNbOk1TckV0k= Received: by 10.48.236.12 with SMTP id j12mr279251nfh; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) Received: by 10.48.127.20 with HTTP; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) Message-ID: Date: Wed, 26 Oct 2005 09:33:15 -0700 From: Maksim Yevmenkin To: John Baldwin In-Reply-To: <200510261100.55974.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 16:33:20 -0000 John, [...] > Sorry about that, will be fixing it more cleanly. BTW, does anyone know = why > this driver allocates its softc manualn in its attach routine? ng_bt3c(4) is a netgraph device driver. there could be failures in both device part (i/o port, interrupts etc.) as well as in netgraph part (could not create node). so decided to do it this way. right now i can not recall any other reason :) thanks, max