From 66c2f8b643b462fd2b29e3af76e95b1634844641 Mon Sep 17 00:00:00 2001 From: marcel Date: Wed, 29 Oct 2003 07:35:53 +0000 Subject: 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. --- sys/gnu/fs/ext2fs/ext2_linux_ialloc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sys/gnu/fs/ext2fs/ext2_linux_ialloc.c') diff --git a/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c b/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c index 926fe7c..893302a 100644 --- a/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c +++ b/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c @@ -44,9 +44,7 @@ #include #include -#ifdef __alpha__ -#include -#elif __i386__ +#ifdef __i386__ #include #else #include -- cgit v1.1