From owner-cvs-src-old@FreeBSD.ORG Mon Nov 16 18:46:50 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D479106568D for ; Mon, 16 Nov 2009 18:46:50 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF7238FC17 for ; Mon, 16 Nov 2009 18:46:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nAGIkn4q062193 for ; Mon, 16 Nov 2009 18:46:49 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nAGIknZr062192 for cvs-src-old@freebsd.org; Mon, 16 Nov 2009 18:46:49 GMT (envelope-from jfv@repoman.freebsd.org) Message-Id: <200911161846.nAGIknZr062192@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jfv@repoman.freebsd.org using -f From: Jack F Vogel Date: Mon, 16 Nov 2009 18:46:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8_0 Subject: cvs commit: src/sys/dev/e1000 if_igb.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2009 18:46:50 -0000 jfv 2009-11-16 18:46:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_8_0) sys/dev/e1000 if_igb.c Log: SVN rev 199325 on 2009-11-16 18:46:33Z by jfv On a 32 bit kernel the igb driver may cause a page fault panic due to a failed bounce page allocation during RX mbuf setup. The large demand on bounce pages is due to the alignment requirement in the tag, the ixgbe driver has demonstrated this to be unnecessary and so it is being removed here to fix this problem. Note that ultimately there needs to be a more elegant handling of the failure case here. Approved by: re Revision Changes Path 1.21.2.3.2.2 +3 -3 src/sys/dev/e1000/if_igb.c