mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 14:30:50 +00:00 
			
		
		
		
	 13da9e200f
			
		
	
	
		13da9e200f
		
	
	
	
	
		
			
			This reverts commitb3b77c8cae, which was also totally broken (see commit0d2daf5cc8that reverted the crc32 version of it). As reported by Stephen Rothwell, it causes problems on big-endian machines: > In file included from fs/jfs/jfs_types.h:33, > from fs/jfs/jfs_incore.h:26, > from fs/jfs/file.c:22: > fs/jfs/endian24.h:36:101: warning: "__LITTLE_ENDIAN" is not defined The kernel has never had that crazy "__BYTE_ORDER == __LITTLE_ENDIAN" model. It's not how we do things, and it isn't how we _should_ do things. So don't go there. Requested-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			109 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _LINUX_BYTEORDER_BIG_ENDIAN_H
 | |
| #define _LINUX_BYTEORDER_BIG_ENDIAN_H
 | |
| 
 | |
| #ifndef __BIG_ENDIAN
 | |
| #define __BIG_ENDIAN 4321
 | |
| #endif
 | |
| #ifndef __BIG_ENDIAN_BITFIELD
 | |
| #define __BIG_ENDIAN_BITFIELD
 | |
| #endif
 | |
| 
 | |
| #include <linux/types.h>
 | |
| #include <linux/swab.h>
 | |
| 
 | |
| #define __constant_htonl(x) ((__force __be32)(__u32)(x))
 | |
| #define __constant_ntohl(x) ((__force __u32)(__be32)(x))
 | |
| #define __constant_htons(x) ((__force __be16)(__u16)(x))
 | |
| #define __constant_ntohs(x) ((__force __u16)(__be16)(x))
 | |
| #define __constant_cpu_to_le64(x) ((__force __le64)___constant_swab64((x)))
 | |
| #define __constant_le64_to_cpu(x) ___constant_swab64((__force __u64)(__le64)(x))
 | |
| #define __constant_cpu_to_le32(x) ((__force __le32)___constant_swab32((x)))
 | |
| #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32)(__le32)(x))
 | |
| #define __constant_cpu_to_le16(x) ((__force __le16)___constant_swab16((x)))
 | |
| #define __constant_le16_to_cpu(x) ___constant_swab16((__force __u16)(__le16)(x))
 | |
| #define __constant_cpu_to_be64(x) ((__force __be64)(__u64)(x))
 | |
| #define __constant_be64_to_cpu(x) ((__force __u64)(__be64)(x))
 | |
| #define __constant_cpu_to_be32(x) ((__force __be32)(__u32)(x))
 | |
| #define __constant_be32_to_cpu(x) ((__force __u32)(__be32)(x))
 | |
| #define __constant_cpu_to_be16(x) ((__force __be16)(__u16)(x))
 | |
| #define __constant_be16_to_cpu(x) ((__force __u16)(__be16)(x))
 | |
| #define __cpu_to_le64(x) ((__force __le64)__swab64((x)))
 | |
| #define __le64_to_cpu(x) __swab64((__force __u64)(__le64)(x))
 | |
| #define __cpu_to_le32(x) ((__force __le32)__swab32((x)))
 | |
| #define __le32_to_cpu(x) __swab32((__force __u32)(__le32)(x))
 | |
| #define __cpu_to_le16(x) ((__force __le16)__swab16((x)))
 | |
| #define __le16_to_cpu(x) __swab16((__force __u16)(__le16)(x))
 | |
| #define __cpu_to_be64(x) ((__force __be64)(__u64)(x))
 | |
| #define __be64_to_cpu(x) ((__force __u64)(__be64)(x))
 | |
| #define __cpu_to_be32(x) ((__force __be32)(__u32)(x))
 | |
| #define __be32_to_cpu(x) ((__force __u32)(__be32)(x))
 | |
| #define __cpu_to_be16(x) ((__force __be16)(__u16)(x))
 | |
| #define __be16_to_cpu(x) ((__force __u16)(__be16)(x))
 | |
| 
 | |
| static inline __le64 __cpu_to_le64p(const __u64 *p)
 | |
| {
 | |
| 	return (__force __le64)__swab64p(p);
 | |
| }
 | |
| static inline __u64 __le64_to_cpup(const __le64 *p)
 | |
| {
 | |
| 	return __swab64p((__u64 *)p);
 | |
| }
 | |
| static inline __le32 __cpu_to_le32p(const __u32 *p)
 | |
| {
 | |
| 	return (__force __le32)__swab32p(p);
 | |
| }
 | |
| static inline __u32 __le32_to_cpup(const __le32 *p)
 | |
| {
 | |
| 	return __swab32p((__u32 *)p);
 | |
| }
 | |
| static inline __le16 __cpu_to_le16p(const __u16 *p)
 | |
| {
 | |
| 	return (__force __le16)__swab16p(p);
 | |
| }
 | |
| static inline __u16 __le16_to_cpup(const __le16 *p)
 | |
| {
 | |
| 	return __swab16p((__u16 *)p);
 | |
| }
 | |
| static inline __be64 __cpu_to_be64p(const __u64 *p)
 | |
| {
 | |
| 	return (__force __be64)*p;
 | |
| }
 | |
| static inline __u64 __be64_to_cpup(const __be64 *p)
 | |
| {
 | |
| 	return (__force __u64)*p;
 | |
| }
 | |
| static inline __be32 __cpu_to_be32p(const __u32 *p)
 | |
| {
 | |
| 	return (__force __be32)*p;
 | |
| }
 | |
| static inline __u32 __be32_to_cpup(const __be32 *p)
 | |
| {
 | |
| 	return (__force __u32)*p;
 | |
| }
 | |
| static inline __be16 __cpu_to_be16p(const __u16 *p)
 | |
| {
 | |
| 	return (__force __be16)*p;
 | |
| }
 | |
| static inline __u16 __be16_to_cpup(const __be16 *p)
 | |
| {
 | |
| 	return (__force __u16)*p;
 | |
| }
 | |
| #define __cpu_to_le64s(x) __swab64s((x))
 | |
| #define __le64_to_cpus(x) __swab64s((x))
 | |
| #define __cpu_to_le32s(x) __swab32s((x))
 | |
| #define __le32_to_cpus(x) __swab32s((x))
 | |
| #define __cpu_to_le16s(x) __swab16s((x))
 | |
| #define __le16_to_cpus(x) __swab16s((x))
 | |
| #define __cpu_to_be64s(x) do { (void)(x); } while (0)
 | |
| #define __be64_to_cpus(x) do { (void)(x); } while (0)
 | |
| #define __cpu_to_be32s(x) do { (void)(x); } while (0)
 | |
| #define __be32_to_cpus(x) do { (void)(x); } while (0)
 | |
| #define __cpu_to_be16s(x) do { (void)(x); } while (0)
 | |
| #define __be16_to_cpus(x) do { (void)(x); } while (0)
 | |
| 
 | |
| #ifdef __KERNEL__
 | |
| #include <linux/byteorder/generic.h>
 | |
| #endif
 | |
| 
 | |
| #endif /* _LINUX_BYTEORDER_BIG_ENDIAN_H */
 |