From owner-freebsd-current@FreeBSD.ORG Tue Oct 11 23:40:20 2005 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5280A16A420; Tue, 11 Oct 2005 23:40:20 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz [60.234.149.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D58443D4C; Tue, 11 Oct 2005 23:40:18 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 1E75C1CCDD; Wed, 12 Oct 2005 12:40:14 +1300 (NZDT) Date: Wed, 12 Oct 2005 12:40:14 +1300 From: Andrew Thompson To: Brooks Davis Message-ID: <20051011234014.GA6179@heff.fud.org.nz> Mail-Followup-To: Andrew Thompson , Brooks Davis , Yar Tikhiy , Pawel Jakub Dawidek , FreeBSD Current References: <20051005024903.GA72743@heff.fud.org.nz> <20051005203639.GA20552@garage.freebsd.pl> <20051005205515.GA30350@odin.ac.hmc.edu> <20051005210950.GB75848@heff.fud.org.nz> <20051009232849.GA27349@comp.chem.msu.su> <20051010022208.GA97249@heff.fud.org.nz> <20051010202900.GA24213@odin.ac.hmc.edu> <20051011210602.GA5714@heff.fud.org.nz> <20051011220749.GD13461@odin.ac.hmc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051011220749.GD13461@odin.ac.hmc.edu> User-Agent: Mutt/1.4.2.1i Cc: Yar Tikhiy , Pawel Jakub Dawidek , FreeBSD Current Subject: Re: panic: ifc_free_unit: bit is already cleared 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, 11 Oct 2005 23:40:20 -0000 On Tue, Oct 11, 2005 at 03:07:49PM -0700, Brooks Davis wrote: > On Wed, Oct 12, 2005 at 10:06:02AM +1300, Andrew Thompson wrote: > > On Mon, Oct 10, 2005 at 01:29:00PM -0700, Brooks Davis wrote: > > > On Mon, Oct 10, 2005 at 03:22:08PM +1300, Andrew Thompson wrote: > > > > I have been testing this patch and I think it fixes all the problems > > > > discussed. > > > > > > > > > > I don't see any reason why you can't just replace the specific destroy > > > calls with calls to ifc_simple_destroy(). That would avoid expanding > > > the API. > > > > I have updated the patch and yes, its a nicer way to do it. Please > > review. > > > > Ive run through interations of create/kldunload with bridge, disc, > > faith, gif, gre and ppp with extra printf's and its freeing correctly. > > This looks good to me, thanks for working on this and doing the > _destory removals. Let's see about getting this committed. > There was one problem where pflog0 would loop on EINVAL since it was a precloned device, livelocking the system. This addition fixes it, it was either this or a dying flag. void if_clone_detach(struct if_clone *ifc) { + struct ifc_simple_data *ifcs = ifc->ifc_data; IF_CLONERS_LOCK(); LIST_REMOVE(ifc, ifc_list); if_cloners_count--; IF_CLONERS_UNLOCK(); + /* Allow all to be destroyed */ + ifcs->ifcs_minifs = 0; + IF_CLONE_REMREF(ifc); }