From owner-p4-projects@FreeBSD.ORG Thu Sep 27 19:18:12 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0508816A475; Thu, 27 Sep 2007 19:18:12 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D663716A46B for ; Thu, 27 Sep 2007 19:18:11 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.178]) by mx1.freebsd.org (Postfix) with ESMTP id 6703E13C459 for ; Thu, 27 Sep 2007 19:18:11 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so3352679waf for ; Thu, 27 Sep 2007 12:18:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=dYZBkqdvLDNba+kNFJsbwgu+PbTgI0sICnNF94yILFM=; b=PTkzxcN2+2rTwNoj/G/NmG5mXmfIiT2GLmH0jtgUSb/h2bpOtpn6D/1oP8sHYfVplS5NYpEiGUgTCa5OOJ8MEzro63puI/HQJcYivViK4aAw/NJh0Zm52ey/Qbozzsp3jB8nW+IaKS9vGZj4p+uk6UHYc7zHzLBl2ViH8H0Tgyw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Eh0kVrkEf50+ad0mZbx7YNIa9Z/INZN+RQXxMDebK/+8W1y61L4B4lLXBeSKIEomDHDRSUcaubwoPj4vcR9B+FssVPNGK2Ixumbg8OWe9/lzIBio62OhnY+1p4v/coHpctEhCi9JSqCcafk8lM1c1piHP9g2es2QTEq/zSNxbN0= Received: by 10.114.137.2 with SMTP id k2mr2883945wad.1190920690454; Thu, 27 Sep 2007 12:18:10 -0700 (PDT) Received: by 10.114.13.15 with HTTP; Thu, 27 Sep 2007 12:18:10 -0700 (PDT) Message-ID: Date: Thu, 27 Sep 2007 12:18:10 -0700 From: "Kip Macy" To: "John Baldwin" In-Reply-To: <200709261742.04531.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200709262040.l8QKe8FL074297@repoman.freebsd.org> <200709261742.04531.jhb@freebsd.org> Cc: Perforce Change Reviews , Kip Macy Subject: Re: PERFORCE change 126835 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 19:18:12 -0000 It is in there, it just doesn't seem to do the trick :-/. -Kip On 9/26/07, John Baldwin wrote: > On Wednesday 26 September 2007 04:40:08 pm Kip Macy wrote: > > http://perforce.freebsd.org/chv.cgi?CH=126835 > > > > Change 126835 by kmacy@kmacy_home:ethng on 2007/09/26 20:40:03 > > > > increase delay in shutdown to avoid destroying the port lock > > before the last call to the tick handler > > > > Affected files ... > > > > .. //depot/projects/ethng/src/sys/dev/cxgb/cxgb_main.c#21 edit > > > > Differences ... > > > > ==== //depot/projects/ethng/src/sys/dev/cxgb/cxgb_main.c#21 (text+ko) ==== > > > > @@ -1023,7 +1023,7 @@ > > > > ether_ifdetach(p->ifp); > > printf("waiting for callout to stop ..."); > > - DELAY(10000); > > + DELAY(100000); > > printf("done\n"); > > Umm, what about callout_drain()? That's its purpose. > > -- > John Baldwin >