blob: 797e561a885cf65e3e2037dc6d35f2f79ef68c33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* byteorder.h
*
* LGPL 2
*/
#ifndef CEPH_BYTEORDER_H
#define CEPH_BYTEORDER_H
#if defined(__linux__)
#include <endian.h>
#elif defined(__FreeBSD__)
#include <sys/endian.h>
#else
#error "Your platform is not yet supported."
#endif
#if defined(__FreeBSD__)
#define __BYTE_ORDER _BYTE_ORDER
#define __BIG_ENDIAN _BIG_ENDIAN
#define __LITTLE_ENDIAN _LITTLE_ENDIAN
#endif
static __inline__ __u16 swab16(__u16 val)
{
return (val >> 8) | (val << 8);
}
static __inline__ __u32 swab32(__u32 val)
{
return (( val >> 24) |
((val >> 8) & 0xff00) |
((val << 8) & 0xff0000) |
((val << 24)));
}
static __inline__ uint64_t swab64(uint64_t val)
{
return (( val >> 56) |
((val >> 40) & 0xff00ull) |
((val >> 24) & 0xff0000ull) |
((val >> 8) & 0xff000000ull) |
((val << 8) & 0xff00000000ull) |
((val << 24) & 0xff0000000000ull) |
((val << 40) & 0xff000000000000ull) |
((val << 56)));
}
#if !defined(__BYTE_ORDER) || !defined(__BIG_ENDIAN) || !defined(__LITTLE_ENDIAN)
#error "Endianess is unknown!"
#endif
// mswab == maybe swab (if not LE)
#if __BYTE_ORDER == __BIG_ENDIAN
# define mswab64(a) swab64(a)
# define mswab32(a) swab32(a)
# define mswab16(a) swab16(a)
#else
# if __BYTE_ORDER != __LITTLE_ENDIAN
# warning __BYTE_ORDER is not defined, assuming little endian
# endif
# define mswab64(a) (a)
# define mswab32(a) (a)
# define mswab16(a) (a)
#endif
#define MAKE_LE_CLASS(bits) \
struct ceph_le##bits { \
__u##bits v; \
ceph_le##bits &operator=(__u##bits nv) { \
v = mswab##bits(nv); \
return *this; \
} \
operator __u##bits() const { return mswab##bits(v); } \
} __attribute__ ((packed)); \
static inline bool operator==(ceph_le##bits a, ceph_le##bits b) { \
return a.v == b.v; \
}
MAKE_LE_CLASS(64)
MAKE_LE_CLASS(32)
MAKE_LE_CLASS(16)
#undef MAKE_LE_CLASS
#define init_le64(x) { mswab64(x) }
#define init_le32(x) { mswab32(x) }
#define init_le16(x) { mswab16(x) }
/*
#define cpu_to_le64(x) (x)
#define cpu_to_le32(x) (x)
#define cpu_to_le16(x) (x)
*/
#define le64_to_cpu(x) ((uint64_t)x)
#define le32_to_cpu(x) ((__u32)x)
#define le16_to_cpu(x) ((__u16)x)
#endif
|