From owner-freebsd-stable@freebsd.org Mon Jun 25 00:30:57 2018 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9440D101B6D2 for ; Mon, 25 Jun 2018 00:30:57 +0000 (UTC) (envelope-from lists@pingle.org) Received: from luna.pingle.org (luna.pingle.org [68.76.213.30]) by mx1.freebsd.org (Postfix) with ESMTP id 3E44B83171 for ; Mon, 25 Jun 2018 00:30:56 +0000 (UTC) (envelope-from lists@pingle.org) Received: from luna.pingle.org (unknown [127.0.0.1]) by luna.pingle.org (Postfix) with ESMTP id 82E30DDA927; Sun, 24 Jun 2018 20:30:50 -0400 (EDT) X-Virus-Scanned: amavisd-new at pingle.org Received: from luna.pingle.org ([127.0.0.1]) by luna.pingle.org (luna.pingle.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b3SGHGkk-mDN; Sun, 24 Jun 2018 20:30:49 -0400 (EDT) Received: from [172.21.32.115] (hpcw.hpcisp.com [68.76.213.13]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: jim) by luna.pingle.org (Postfix) with ESMTPSA id 6758FDDA920; Sun, 24 Jun 2018 20:30:49 -0400 (EDT) Subject: Re: 11.2-RC3 regression - networking igb driver To: David Samms <2yt@gmx.com>, freebsd-stable@freebsd.org References: <2b154303-35f8-df8e-5d2f-ea93b8fdad1d@gmx.com> From: Jim Pingle Message-ID: <2c4e2c6c-ef7a-66a3-e21d-222026c9e88c@pingle.org> Date: Sun, 24 Jun 2018 20:30:47 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <2b154303-35f8-df8e-5d2f-ea93b8fdad1d@gmx.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jun 2018 00:30:57 -0000 On 6/23/2018 1:27 PM, David Samms wrote: > There is a regression in 11.2-RC3 that effects the igb driver for Intels > C2000 SoC I354 Quad GbE Controller > > Supermicro A1SRi-2558F > http://www.supermicro.com/products/motherboard/Atom/X10/A1SRi-2558F.cfm > > This server has run 10.x and 11.x fine up till 11.2-RC3. > > PROBLEM: > with 11.2-RC3 the server boots and gets a network connection to the > cable modem, but the interface (igb0) resets every 4-8 second. The reset > time appears to be related to network load, but reset withing 10s with > next to no traffic. I did try swapping cables, but with no effect. With > each reset the interface successfully obtains an IP address via DHCP, > works for a few seconds and resets. > > Restoring the server to 11.1-RELEASE-p10 resolves the problem. > > Any suggestions? Does your DHCP server send you an MTU, perhaps? Before the interface resets, what does its MTU show? You might try creating a dhclient.conf that sets "supersede interface-mtu 0;" and see if that helps. The MTU from DHCP feature is new (see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206721 ) and e1000 interfaces will reset when applying the MTU. Jim P.