From owner-freebsd-current@FreeBSD.ORG Sat Oct 16 15:06:40 2004 Return-Path: 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 7EFC616A4CE; Sat, 16 Oct 2004 15:06:40 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id D803943D45; Sat, 16 Oct 2004 15:06:37 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.155] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1CIq8i-0007P2-00; Sat, 16 Oct 2004 17:06:36 +0200 Received: from [84.128.130.236] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1CIq8g-0007aJ-00; Sat, 16 Oct 2004 17:06:36 +0200 From: Max Laier To: freebsd-gnats-submit@freebsd.org Date: Sat, 16 Oct 2004 17:06:07 +0200 User-Agent: KMail/1.7 References: <20041016012536.GS61186@empiric.icir.org> In-Reply-To: <20041016012536.GS61186@empiric.icir.org> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_jjTcB/p96QaFfVs" Message-Id: <200410161706.11043.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: Bruce M Simpson cc: freebsdnic@mailbox.intel.com cc: current@freebsd.org cc: nbco@screaming.net Subject: Re: kern/72748: em0 problems on t41 after updating to 5.3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Sat, 16 Oct 2004 15:06:40 -0000 --Boundary-00=_jjTcB/p96QaFfVs Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 16 October 2004 03:25, Bruce M Simpson wrote: > [Cc: to current@ as this could be a show-stopper for RELENG_5_3] > > Could you please try the attached patch, which reverts the ALTQ > changes introduced on the RELENG_5 branch, and let me know if this > resolves the issue? Can I ask you to also test this patch for comparison and maybe to track down the problem. Please tell me if this patch (applied to RELENG_5 or HEAD) resolves the issue as well? Thanks in advance. -- /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-00=_jjTcB/p96QaFfVs Content-Type: text/x-diff; charset="iso-8859-1"; name="if_em.c.drvlen.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="if_em.c.drvlen.diff" Index: if_em.c =================================================================== RCS file: /usr/store/mlaier/fcvs/src/sys/dev/em/if_em.c,v retrieving revision 1.47 diff -u -r1.47 if_em.c --- if_em.c 9 Oct 2004 07:27:03 -0000 1.47 +++ if_em.c 16 Oct 2004 15:01:08 -0000 @@ -1893,7 +1893,7 @@ ifp->if_start = em_start; ifp->if_watchdog = em_watchdog; IFQ_SET_MAXLEN(&ifp->if_snd, adapter->num_tx_desc - 1); - ifp->if_snd.ifq_drv_maxlen = adapter->num_tx_desc - 1; + ifp->if_snd.ifq_drv_maxlen = 0; IFQ_SET_READY(&ifp->if_snd); #if __FreeBSD_version < 500000 --Boundary-00=_jjTcB/p96QaFfVs--