From owner-freebsd-net@freebsd.org Tue Sep 12 13:47:15 2017 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DADAE0A666 for ; Tue, 12 Sep 2017 13:47:15 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F00AF72695 for ; Tue, 12 Sep 2017 13:47:14 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mh0.gentlemail.de (mh0.gentlemail.de [IPv6:2a00:e10:2800::a135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id v8CDlDM5064824; Tue, 12 Sep 2017 15:47:13 +0200 (CEST) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (s1.omnilan.de [217.91.127.234]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id F41CB5F1; Tue, 12 Sep 2017 15:47:12 +0200 (CEST) Message-ID: <59B7E560.8090505@omnilan.de> Date: Tue, 12 Sep 2017 15:47:12 +0200 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: "Andrey V. Elsukov" CC: freebsd-net@freebsd.org Subject: Re: Need help References: <59B7DFE5.7020404@omnilan.de> <59B7E206.8020500@omnilan.de> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]); Tue, 12 Sep 2017 15:47:13 +0200 (CEST) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: ; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Sep 2017 13:47:15 -0000 Bezüglich Andrey V. Elsukov's Nachricht vom 12.09.2017 15:38 (localtime): > On 12.09.2017 16:35, Andrey V. Elsukov wrote: >>> Either add E1000_DEV_ID_I350_COPPER_NOEE elsewhere, or try without _NOEE >>> appendix if datasheet suggests. >> >> Hi, >> >> just defining device id in the header usually doesn't automatically add >> support for this device. You need to teach probe function to use defined >> id. So, you need to add this id to some array in the if_em.c, probably >> this is igb_vendor_info_array. > > And for stable/10 this array is in the if_igb.c. Thanks for clarifying, I haven't looked what "elsewhere" should read, happy to know it's if_igb.c. Too curious about this id... shouldn't be interested, but as usual, buriosity kills the cat/the time ;-) This might help, looking for "E1000_DEVICE_I350_EEPROM_LESS": https://github.com/BarrelfishOS/barrelfish/blob/master/usr/drivers/e1000/ Now I really go back to work ;-) -harry