6d7ebb023f0408252230b4a4d6a75a2324ccb0b3
8 #define container_of(ptr, type, member) ({ \
9 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
10 (type *)( (char *)__mptr - offsetof(type,member) );})
13 #define KERN_NOTICE ""
17 #define KERN_WARNING ""
21 #define MAX_ERRNO 4095
23 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
25 static inline void *ERR_PTR(long error
)
27 return (void *) error
;
30 static inline long PTR_ERR(const void *ptr
)
35 static inline long IS_ERR(const void *ptr
)
37 return IS_ERR_VALUE((unsigned long)ptr
);
41 /* FIXED SIZE INTEGERS */
50 #define min_t(type, x, y) ({ \
53 __min1 < __min2 ? __min1: __min2; })
55 #define max_t(type, x, y) ({ \
58 __max1 > __max2 ? __max1: __max2; })
65 #define DEFINE_MUTEX(m) pthread_mutex_t (m) = PTHREAD_MUTEX_INITIALIZER;
67 #define mutex_lock(m) pthread_mutex_lock(m)
69 #define mutex_unlock(m) pthread_mutex_unlock(m)
73 typedef int spinlock_t
;
75 #define spin_lock(a) /* nothing */
76 #define spin_unlock(a) /* nothing */
77 #define spin_lock_init(a) /* nothing */
84 #define kmalloc(s, t) malloc(s)
85 #define kzalloc(s, t) malloc(s)
86 #define kfree(p) free((void *)p)
87 #define kstrdup(s, t) strdup(s)
94 #define printk(fmt, args...) printf(fmt, ## args)
98 #define smp_rmb() do {} while(0)
99 #define smp_wmb() do {} while(0)
100 #define smp_mb() do {} while(0)
101 #define smp_mb__after_atomic_inc() do {} while(0)
103 #define read_barrier_depends() do {} while(0)
104 #define smp_read_barrier_depends() do {} while(0)
108 #define rcu_assign_pointer(a, b) do {} while(0)
109 #define call_rcu_sched(a,b) do {} while(0)
110 #define rcu_barrier_sched() do {} while(0)
116 typedef struct { sig_atomic_t counter
; } atomic_t
;
118 static inline int atomic_dec_and_test(atomic_t
*p
)
124 static inline void atomic_set(atomic_t
*p
, int v
)
129 static inline void atomic_inc(atomic_t
*p
)
134 static int atomic_read(atomic_t
*p
)
139 #define atomic_long_t atomic_t
140 #define atomic_long_set atomic_set
141 #define atomic_long_read atomic_read
145 #define __xg(x) ((volatile long *)(x))
147 #define cmpxchg(ptr, o, n) \
148 ((__typeof__(*(ptr)))__cmpxchg((ptr), (unsigned long)(o), \
149 (unsigned long)(n), sizeof(*(ptr))))
151 static inline unsigned long __cmpxchg(volatile void *ptr
, unsigned long old
,
152 unsigned long new, int size
)
157 asm volatile("lock cmpxchgb %b1,%2"
159 : "q"(new), "m"(*__xg(ptr
)), "0"(old
)
163 asm volatile("lock cmpxchgw %w1,%2"
165 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
169 asm volatile("lock cmpxchgl %k1,%2"
171 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
175 asm volatile("lock cmpxchgq %1,%2"
177 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
184 #define local_cmpxchg cmpxchg
185 #define atomic_long_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
192 static inline void local_inc(local_t
*a
)
197 static inline void local_set(local_t
*a
, int v
)
202 static inline void local_add(int v
, local_t
*a
)
207 static int local_add_return(int v
, local_t
*a
)
212 static inline int local_read(local_t
*a
)
220 #define ____cacheline_aligned
226 static inline unsigned int hweight32(unsigned int w
)
228 unsigned int res
= w
- ((w
>> 1) & 0x55555555);
229 res
= (res
& 0x33333333) + ((res
>> 2) & 0x33333333);
230 res
= (res
+ (res
>> 4)) & 0x0F0F0F0F;
231 res
= res
+ (res
>> 8);
232 return (res
+ (res
>> 16)) & 0x000000FF;
235 static inline int fls(int x
)
238 //ust// #ifdef CONFIG_X86_CMOV
241 : "=&r" (r
) : "rm" (x
), "rm" (-1));
243 //ust// asm("bsrl %1,%0\n\t"
245 //ust// "movl $-1,%0\n"
246 //ust// "1:" : "=r" (r) : "rm" (x));
251 static __inline__
int get_count_order(unsigned int count
)
255 order
= fls(count
) - 1;
256 if (count
& (count
- 1))
266 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
267 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
268 #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
269 #define PAGE_SIZE sysconf(_SC_PAGE_SIZE)
270 #define PAGE_MASK (PAGE_SIZE-1)
277 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
281 static inline u64
trace_clock_read64(void)
286 static inline unsigned int trace_clock_frequency(void)
291 static inline u32
trace_clock_freq_scale(void)
296 #endif /* KERNELCOMPAT_H */
This page took 0.060436 seconds and 3 git commands to generate.