a18460e041554cd6568ea3c0d01c1f61d1fcfd39
10 #define container_of(ptr, type, member) ({ \
11 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
12 (type *)( (char *)__mptr - offsetof(type,member) );})
15 #define KERN_NOTICE ""
19 #define KERN_WARNING ""
23 #define MAX_ERRNO 4095
25 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
27 static inline void *ERR_PTR(long error
)
29 return (void *) error
;
32 static inline long PTR_ERR(const void *ptr
)
37 static inline long IS_ERR(const void *ptr
)
39 return IS_ERR_VALUE((unsigned long)ptr
);
43 /* FIXED SIZE INTEGERS */
48 //typedef uint16_t u16;
49 //typedef uint32_t u32;
50 //typedef uint64_t u64;
52 #define min_t(type, x, y) ({ \
55 __min1 < __min2 ? __min1: __min2; })
57 #define max_t(type, x, y) ({ \
60 __max1 > __max2 ? __max1: __max2; })
67 #define DEFINE_MUTEX(m) pthread_mutex_t (m) = PTHREAD_MUTEX_INITIALIZER;
68 #define DECLARE_MUTEX(m) extern pthread_mutex_t (m);
70 #define mutex_lock(m) pthread_mutex_lock(m)
72 #define mutex_unlock(m) pthread_mutex_unlock(m)
79 #define kmalloc(s, t) malloc(s)
80 #define kzalloc(s, t) zmalloc(s)
81 #define kfree(p) free((void *)p)
82 #define kstrdup(s, t) strdup(s)
84 #define zmalloc(s) calloc(1, s)
91 #define printk(fmt, args...) printf(fmt, ## args)
95 #define smp_mb__after_atomic_inc() do {} while(0)
100 #define call_rcu_sched(a,b) b(a); synchronize_rcu()
101 #define rcu_barrier_sched() do {} while(0) /* this nop is ok if call_rcu_sched does a synchronize_rcu() */
102 #define rcu_read_lock_sched_notrace() rcu_read_lock()
103 #define rcu_read_unlock_sched_notrace() rcu_read_unlock()
109 static inline int atomic_dec_and_test(atomic_t
*p
)
115 static inline void atomic_set(atomic_t
*p
, int v
)
120 static inline void atomic_inc(atomic_t
*p
)
125 static int atomic_read(atomic_t
*p
)
130 #define atomic_long_t atomic_t
131 #define atomic_long_set atomic_set
132 #define atomic_long_read atomic_read
134 //#define __xg(x) ((volatile long *)(x))
136 #define cmpxchg(ptr, o, n) \
137 ((__typeof__(*(ptr)))__cmpxchg((ptr), (unsigned long)(o), \
138 (unsigned long)(n), sizeof(*(ptr))))
140 //#define local_cmpxchg cmpxchg
141 #define local_cmpxchg(l, o, n) (cmpxchg(&((l)->a.counter), (o), (n)))
143 #define atomic_long_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
148 //typedef int local_t;
155 static inline void local_inc(local_t
*l
)
160 static inline void local_set(local_t
*l
, int v
)
165 static inline void local_add(int v
, local_t
*l
)
170 static int local_add_return(int v
, local_t
*l
)
172 return l
->a
.counter
+= v
;
175 static inline int local_read(local_t
*l
)
183 #define ____cacheline_aligned
189 static inline unsigned int hweight32(unsigned int w
)
191 unsigned int res
= w
- ((w
>> 1) & 0x55555555);
192 res
= (res
& 0x33333333) + ((res
>> 2) & 0x33333333);
193 res
= (res
+ (res
>> 4)) & 0x0F0F0F0F;
194 res
= res
+ (res
>> 8);
195 return (res
+ (res
>> 16)) & 0x000000FF;
198 static inline int fls(int x
)
201 //ust// #ifdef CONFIG_X86_CMOV
204 : "=&r" (r
) : "rm" (x
), "rm" (-1));
206 //ust// asm("bsrl %1,%0\n\t"
208 //ust// "movl $-1,%0\n"
209 //ust// "1:" : "=r" (r) : "rm" (x));
214 static __inline__
int get_count_order(unsigned int count
)
218 order
= fls(count
) - 1;
219 if (count
& (count
- 1))
229 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
230 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
231 #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
232 #define PAGE_SIZE sysconf(_SC_PAGE_SIZE)
233 #define PAGE_MASK (PAGE_SIZE-1)
240 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
244 //ust// static inline u64 trace_clock_read64(void)
246 //ust// uint32_t low;
247 //ust// uint32_t high;
248 //ust// uint64_t retval;
249 //ust// __asm__ volatile ("rdtsc\n" : "=a" (low), "=d" (high));
251 //ust// retval = high;
252 //ust// retval <<= 32;
253 //ust// return retval | low;
256 static inline u64
trace_clock_read64(void)
261 gettimeofday(&tv
, NULL
);
264 retval
+= tv
.tv_usec
;
269 static inline u64
trace_clock_frequency(void)
274 static inline u32
trace_clock_freq_scale(void)
282 #define list_add_rcu list_add
283 #define list_for_each_entry_rcu list_for_each_entry
286 #define EXPORT_SYMBOL_GPL(a) /*nothing*/
288 #define smp_processor_id() (-1)
290 #endif /* KERNELCOMPAT_H */
This page took 0.035357 seconds and 3 git commands to generate.