From owner-freebsd-net@FreeBSD.ORG Mon Mar 8 20:50:03 2010 Return-Path: Delivered-To: freebsd-net@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA1931065672 for ; Mon, 8 Mar 2010 20:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF50C8FC14 for ; Mon, 8 Mar 2010 20:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o28Ko32Y075623 for ; Mon, 8 Mar 2010 20:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o28Ko36Y075622; Mon, 8 Mar 2010 20:50:03 GMT (envelope-from gnats) Date: Mon, 8 Mar 2010 20:50:03 GMT Message-Id: <201003082050.o28Ko36Y075622@freefall.freebsd.org> To: freebsd-net@FreeBSD.org From: volker@vwsoft.com Cc: Subject: Re: kern/144494: [ixgbe] ixgbe driver not built as module X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: volker@vwsoft.com List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Mar 2010 20:50:04 -0000 The following reply was made to PR kern/144494; it has been noted by GNATS. From: volker@vwsoft.com To: bug-followup@FreeBSD.org, John.Giacomoni@LineRateSystems.com Cc: Subject: Re: kern/144494: [ixgbe] ixgbe driver not built as module Date: Mon, 08 Mar 2010 21:26:54 +0100 This is a multi-part message in MIME format. --------------080006030805070805030208 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit The first patch (sys_modules_Makefile-ixgbe.diff) is for the reported problem against a 7-stable tree. The 2nd patch is against 9-current. The patch current-sys_modules_Makefile-mwlfw.diff fixes the problem reported by Bruce. --------------080006030805070805030208 Content-Type: text/plain; name="sys_modules_Makefile-ixgbe.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="sys_modules_Makefile-ixgbe.diff" Index: sys/modules/Makefile =================================================================== --- sys/modules/Makefile (revision 204851) +++ sys/modules/Makefile (working copy) @@ -146,6 +146,7 @@ ${_iwi} \ ${_iwifw} \ ${_ixgb} \ + ${_ixgbe} \ jme \ joy \ kbdmux \ @@ -488,6 +489,7 @@ _iwi= iwi _iwifw= iwifw _ixgb= ixgb +_ixgbe= ixgbe _mly= mly _nfe= nfe _nve= nve @@ -556,6 +558,7 @@ _iwi= iwi _iwifw= iwifw _ixgb= ixgb +_ixgbe= ixgbe _lindev= lindev _linprocfs= linprocfs _linsysfs= linsysfs --------------080006030805070805030208 Content-Type: text/plain; name="current-sys_modules_Makefile-ixgbe.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="current-sys_modules_Makefile-ixgbe.diff" Index: sys/modules/Makefile =================================================================== --- sys/modules/Makefile (revision 204851) +++ sys/modules/Makefile (working copy) @@ -143,6 +143,7 @@ ${_iwn} \ ${_iwnfw} \ ${_ixgb} \ + ${_ixgbe} \ jme \ joy \ kbdmux \ @@ -454,6 +455,7 @@ _iwn= iwn _iwnfw= iwnfw _ixgb= ixgb +_ixgbe= ixgbe _mly= mly _nfe= nfe _nve= nve @@ -526,6 +528,7 @@ _iwn= iwn _iwnfw= iwnfw _ixgb= ixgb +_ixgbe= ixgbe _lindev= lindev _linprocfs= linprocfs _linsysfs= linsysfs --------------080006030805070805030208 Content-Type: text/plain; name="current-sys_modules_Makefile-mwlfw.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="current-sys_modules_Makefile-mwlfw.diff" Index: sys/modules/Makefile =================================================================== --- sys/modules/Makefile (revision 204851) +++ sys/modules/Makefile (working copy) @@ -188,6 +188,7 @@ ${_mse} \ msk \ mwl \ + mwlfw \ mxge \ my \ ${_ncp} \ --------------080006030805070805030208--