From owner-cvs-all@FreeBSD.ORG Thu May 19 01:35:54 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0764716A4CE; Thu, 19 May 2005 01:35:54 +0000 (GMT) Received: from pumice6.sentex.ca (pumice6.sentex.ca [64.7.153.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FD7443DBA; Thu, 19 May 2005 01:35:53 +0000 (GMT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by pumice6.sentex.ca (8.13.3/8.13.3) with ESMTP id j4J1ZqQ6010295; Wed, 18 May 2005 21:35:52 -0400 (EDT) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.13.3/8.13.3) with ESMTP id j4J1Zk4R065138; Wed, 18 May 2005 21:35:46 -0400 (EDT) (envelope-from mike@sentex.net) Message-Id: <6.2.1.2.0.20050518213351.06651e28@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Wed, 18 May 2005 21:36:06 -0400 To: Tony Ackerman , cvs-all@freebsd.org From: Mike Tancsa In-Reply-To: <200505182348.j4INmgoC072796@repoman.freebsd.org> References: <200505182348.j4INmgoC072796@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new X-Scanned-By: MIMEDefang 2.51 on 64.7.153.21 Subject: Re: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2005 01:35:54 -0000 Hi, Any chance updating what is in RELENG_5 as well ? Also would it be possible to look at the patch that ru@freebsd.org proposed to fix the issue of the interface being reset when adding or removing an alias ? %%% Index: if_em.c =================================================================== RCS file: /home/ncvs/src/sys/dev/em/if_em.c,v retrieving revision 1.62 diff -u -p -r1.62 if_em.c --- if_em.c 5 Mar 2005 18:30:10 -0000 1.62 +++ if_em.c 31 Mar 2005 07:41:47 -0000 @@ -832,12 +832,14 @@ em_init_locked(struct adapter * adapter) bcopy(adapter->interface_data.ac_enaddr, adapter->hw.mac_addr, ETHER_ADDR_LEN); +#if 0 /* Initialize the hardware */ if (em_hardware_init(adapter)) { printf("em%d: Unable to initialize the hardware\n", adapter->unit); return; } +#endif if (ifp->if_capenable & IFCAP_VLAN_HWTAGGING) em_enable_vlans(adapter); %%% Thanks, ---Mike At 07:48 PM 18/05/2005, Tony Ackerman wrote: >tackerman 2005-05-18 23:48:42 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_4) > sys/dev/em if_em.c > Log: > Changes to bring the driver closer to Intel's em version 2.1.7 > - Changed from using explicit devices id to using descriptive labels. > - Added support for 82573 and 82546 Quad adapters. > - Corrected support for 82547EI and 82541ER (mac_type was not assigned) > - Removed #ifdef DBG_STATS and extraneous code. > - Corrected incorrect Packet Buffer assignment for 82541. > - Cleaned up a few typos and style nits. > > PR: None > > Revision Changes Path > 1.2.2.23 +79 -70 src/sys/dev/em/if_em.c >_______________________________________________ >cvs-all@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/cvs-all >To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"