From owner-freebsd-stable@FreeBSD.ORG Fri Feb 11 18:00:58 2005 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36D3516A4CE for ; Fri, 11 Feb 2005 18:00:58 +0000 (GMT) Received: from avscan1.sentex.ca (avscan1.sentex.ca [199.212.134.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 948D843D5C for ; Fri, 11 Feb 2005 18:00:57 +0000 (GMT) (envelope-from mike@sentex.net) Received: from localhost (localhost.sentex.ca [127.0.0.1]) by avscan1.sentex.ca (8.12.11/8.12.11) with ESMTP id j1BI0mUG061328; Fri, 11 Feb 2005 13:00:48 -0500 (EST) (envelope-from mike@sentex.net) Received: from avscan1.sentex.ca ([127.0.0.1]) by localhost (avscan1.sentex.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 60711-06; Fri, 11 Feb 2005 13:00:48 -0500 (EST) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by avscan1.sentex.ca (8.12.11/8.12.11) with ESMTP id j1BI0m3U061303; Fri, 11 Feb 2005 13:00:48 -0500 (EST) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.12.11/8.12.11) with ESMTP id j1BI0g9C040863; Fri, 11 Feb 2005 13:00:42 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <6.2.1.2.0.20050211125717.053a5bf0@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Fri, 11 Feb 2005 13:02:55 -0500 To: Martin Minkus , From: Mike Tancsa In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new X-Virus-Scanned: by amavisd-new at avscan1b Subject: Re: FW: 5.3-Stable network issue X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Feb 2005 18:00:58 -0000 At 12:28 PM 11/02/2005, Martin Minkus wrote: >Is there some coincidence that rl1 is at irq 11 and is the card that has >problems? > >diablo:/usr/src# dmesg |grep 11 >Timecounter "i8254" frequency 1193182 Hz quality 0 >pci_cfgintr: 0:11 INTA BIOS irq 11 >pci_cfgintr: 0:7 INTD routed to irq 11 >rl1: port 0xe800-0xe8ff mem >0xd7001000-0xd70010ff irq 11 at device 11.0 on pci0 >diablo:/usr/src# Hi, There were a couple of postings about the Realtek cards having "slowness" problems and such. Did you try the patch that was posted ? Index: if_rl.c =================================================================== RCS file: /usr/store/mlaier/fcvs/src/sys/pci/if_rl.c,v retrieving revision 1.145 diff -u -r1.145 if_rl.c --- if_rl.c 9 Aug 2004 20:22:17 -0000 1.145 +++ if_rl.c 30 Jan 2005 18:24:23 -0000 @@ -964,7 +964,7 @@ #endif ifp->if_capenable = ifp->if_capabilities; IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN); - ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN; + ifp->if_snd.ifq_drv_maxlen = 0; IFQ_SET_READY(&ifp->if_snd); callout_handle_init(&sc->rl_stat_ch);