mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 05:58:57 +00:00
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.
This commit is contained in:
parent
2d9974c1e8
commit
3c6441a736
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121647
@ -42,9 +42,7 @@
|
||||
#include <gnu/ext2fs/ext2_fs_sb.h>
|
||||
#include <gnu/ext2fs/fs.h>
|
||||
|
||||
#ifdef __alpha__
|
||||
#include <gnu/ext2fs/alpha-bitops.h>
|
||||
#elif __i386__
|
||||
#ifdef __i386__
|
||||
#include <gnu/ext2fs/i386-bitops.h>
|
||||
#else
|
||||
#include <gnu/ext2fs/ext2_bitops.h>
|
||||
|
@ -44,9 +44,7 @@
|
||||
#include <gnu/ext2fs/fs.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifdef __alpha__
|
||||
#include <gnu/ext2fs/alpha-bitops.h>
|
||||
#elif __i386__
|
||||
#ifdef __i386__
|
||||
#include <gnu/ext2fs/i386-bitops.h>
|
||||
#else
|
||||
#include <gnu/ext2fs/ext2_bitops.h>
|
||||
|
@ -42,9 +42,7 @@
|
||||
#include <gnu/ext2fs/ext2_fs_sb.h>
|
||||
#include <gnu/ext2fs/fs.h>
|
||||
|
||||
#ifdef __alpha__
|
||||
#include <gnu/ext2fs/alpha-bitops.h>
|
||||
#elif __i386__
|
||||
#ifdef __i386__
|
||||
#include <gnu/ext2fs/i386-bitops.h>
|
||||
#else
|
||||
#include <gnu/ext2fs/ext2_bitops.h>
|
||||
|
@ -44,9 +44,7 @@
|
||||
#include <gnu/ext2fs/fs.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifdef __alpha__
|
||||
#include <gnu/ext2fs/alpha-bitops.h>
|
||||
#elif __i386__
|
||||
#ifdef __i386__
|
||||
#include <gnu/ext2fs/i386-bitops.h>
|
||||
#else
|
||||
#include <gnu/ext2fs/ext2_bitops.h>
|
||||
|
Loading…
Reference in New Issue
Block a user