From owner-freebsd-net@FreeBSD.ORG Thu Jul 8 21:55:59 2010 Return-Path: Delivered-To: net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B12AF1065674 for ; Thu, 8 Jul 2010 21:55:59 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 708698FC16 for ; Thu, 8 Jul 2010 21:55:59 +0000 (UTC) Received: by iwn35 with SMTP id 35so1687387iwn.13 for ; Thu, 08 Jul 2010 14:55:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:date:to:cc :subject:message-id:reply-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=e+6lZE/uu0V0b2dWCnLJHwfPxzECEWYci53rLm0gjco=; b=jmbEEJLhIurhyiM5gdDdLcCE7LYtwUl9fUxGhtc8oGV1wsSpGiYBe+2dSsWhLFyCS5 NuEak4sR0qcmJCglAHjaSuK3eUu5sXDK0Gg1CjJHy6yDkDdBdeKQOfZFbCzfxElja05U FLb1qmRLV6aaQEFVNmHeVif/W0n4BehF6jNGU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=YJCdQjM+5amKMk95F5zWLWVCQej1b0EhT18Tz0emtP2iKeNwxasso+yit12qkphjfi bc6mLlqJ9viftk/X1n2emEhIi2jc9e+JkUdjYLkOqGVvqV6C2J/XzlUCY2z6ms81b05O jiAXaTv41YmygvIExi4oIXNsdRMabqT/kZcsk= Received: by 10.231.191.142 with SMTP id dm14mr8468394ibb.74.1278626158843; Thu, 08 Jul 2010 14:55:58 -0700 (PDT) Received: from pyunyh@gmail.com ([174.35.1.224]) by mx.google.com with ESMTPS id g31sm655329ibh.4.2010.07.08.14.55.56 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 08 Jul 2010 14:55:57 -0700 (PDT) Received: by pyunyh@gmail.com (sSMTP sendmail emulation); Thu, 8 Jul 2010 14:55:54 -0700 From: Pyun YongHyeon Date: Thu, 8 Jul 2010 14:55:54 -0700 To: Chris Buechler Message-ID: <20100708215554.GH9303@michelle.cdnetworks.com> References: <4C3631F4.4090504@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: Jack Vogel , net@freebsd.org Subject: Re: page fault in igb on 8.1 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jul 2010 21:55:59 -0000 On Thu, Jul 08, 2010 at 05:36:44PM -0400, Chris Buechler wrote: > On Thu, Jul 8, 2010 at 5:03 PM, Jack Vogel wrote: > > Am confused, does not the code in 8.1 have that fix, looked to me like it > > did? > > > > Maybe I'm confused, but it looks like RELENG_8_1 has the IGB_DBA_ALIGN > rather than 1. > No, this comes from controller requirement. Alignment 1 is not supported. Please show your back trace to narrow down the cause of panic. > - IGB_DBA_ALIGN, 0, /* alignment, bounds */ > + 1, 0, /* alignment, bounds */ > > http://svn.freebsd.org/viewvc/base/releng/8.1/sys/dev/e1000/if_igb.c?revision=209145&view=markup > > It was reverted back in this commit. > http://svn.freebsd.org/viewvc/base/releng/8.1/sys/dev/e1000/if_igb.c?r1=205283&r2=206211 > > Chris