From owner-cvs-src@FreeBSD.ORG Tue Oct 28 23:35:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0518416A4CF; Tue, 28 Oct 2003 23:35:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BB8B43FBD; Tue, 28 Oct 2003 23:35:54 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9T7ZsXJ083345; Tue, 28 Oct 2003 23:35:54 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9T7ZrqS083344; Tue, 28 Oct 2003 23:35:54 -0800 (PST) (envelope-from marcel) Message-Id: <200310290735.h9T7ZrqS083344@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 28 Oct 2003 23:35:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/gnu/ext2fs ext2_linux_balloc.c ext2_linux_ialloc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Oct 2003 07:35:55 -0000 marcel 2003/10/28 23:35:53 PST FreeBSD src repository Modified files: sys/gnu/ext2fs ext2_linux_balloc.c ext2_linux_ialloc.c Log: Fix the alpha tinderbox. The alpha specific bitops used by the bitmap code has the typical branch prediction detour, which creates cross- section branches. A LINT kernel is apparently large enough nowadays that the .text and .text2 sections cannot always be layed-out so that branches between them reach. The fix is to stop using the alpha-specific bitops and instead use the portable implementation used by all platforms other than alpha and i386. Revision Changes Path 1.21 +1 -3 src/sys/gnu/ext2fs/ext2_linux_balloc.c 1.21 +1 -3 src/sys/gnu/ext2fs/ext2_linux_ialloc.c