diff options
author | Matthew Macy <[email protected]> | 2020-07-28 13:02:49 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-28 13:02:49 -0700 |
commit | 5678d3f59389a241c8d9c032513c38209bb53e70 (patch) | |
tree | b25aa376cb42cc0bb173ab1250e27dccc98b4de7 /module/zfs | |
parent | 3eabed74c0fca5dd9f96d2cca13c4a1a16d5c094 (diff) |
Prefix zfs internal endian checks with _ZFS
FreeBSD defines _BIG_ENDIAN BIG_ENDIAN _LITTLE_ENDIAN
LITTLE_ENDIAN on every architecture. Trying to do
cross builds whilst hiding this from ZFS has proven
extremely cumbersome.
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Matt Macy <[email protected]>
Closes #10621
Diffstat (limited to 'module/zfs')
-rw-r--r-- | module/zfs/lz4.c | 2 | ||||
-rw-r--r-- | module/zfs/vdev_raidz_math_powerpc_altivec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/lz4.c b/module/zfs/lz4.c index 52e527b02..4b46e6948 100644 --- a/module/zfs/lz4.c +++ b/module/zfs/lz4.c @@ -208,7 +208,7 @@ lz4_decompress_zfs(void *s_start, void *d_start, size_t s_len, * Little Endian or Big Endian? * Note: overwrite the below #define if you know your architecture endianness. */ -#if defined(_BIG_ENDIAN) +#if defined(_ZFS_BIG_ENDIAN) #define LZ4_BIG_ENDIAN 1 #else /* diff --git a/module/zfs/vdev_raidz_math_powerpc_altivec.c b/module/zfs/vdev_raidz_math_powerpc_altivec.c index 88f2646ae..1db2c4cd3 100644 --- a/module/zfs/vdev_raidz_math_powerpc_altivec.c +++ b/module/zfs/vdev_raidz_math_powerpc_altivec.c @@ -225,7 +225,7 @@ const raidz_impl_ops_t vdev_raidz_powerpc_altivec_impl = { #if defined(__powerpc__) -#if defined(_LITTLE_ENDIAN) && _LITTLE_ENDIAN +#if defined(_ZFS_LITTLE_ENDIAN) && _LITTLE_ENDIAN /* BEGIN CSTYLED */ const uint8_t __attribute__((aligned(256))) gf_clmul_mod_lt[4*256][16] = { |