fada46f06f448b00538ea9f66883f9fcd9dd52bc
10 /* FIXME: libkcompat must not define arch-specific local ops, as ust *must*
11 * fallback to the normal atomic ops. Fix things so we don't add them and
12 * break things accidentally.
15 #define container_of(ptr, type, member) ({ \
16 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
17 (type *)( (char *)__mptr - offsetof(type,member) );})
20 #define KERN_NOTICE ""
24 #define KERN_WARNING ""
28 #define MAX_ERRNO 4095
30 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
32 static inline void *ERR_PTR(long error
)
34 return (void *) error
;
37 static inline long PTR_ERR(const void *ptr
)
42 static inline long IS_ERR(const void *ptr
)
44 return IS_ERR_VALUE((unsigned long)ptr
);
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;
66 #define DECLARE_MUTEX(m) extern pthread_mutex_t (m);
68 #define mutex_lock(m) pthread_mutex_lock(m)
70 #define mutex_unlock(m) pthread_mutex_unlock(m)
77 #define kmalloc(s, t) malloc(s)
78 #define kzalloc(s, t) zmalloc(s)
79 #define kfree(p) free((void *)p)
80 #define kstrdup(s, t) strdup(s)
82 #define zmalloc(s) calloc(1, s)
89 #define printk(fmt, args...) printf(fmt, ## args)
94 #define ____cacheline_aligned
100 static inline unsigned int hweight32(unsigned int w
)
102 unsigned int res
= w
- ((w
>> 1) & 0x55555555);
103 res
= (res
& 0x33333333) + ((res
>> 2) & 0x33333333);
104 res
= (res
+ (res
>> 4)) & 0x0F0F0F0F;
105 res
= res
+ (res
>> 8);
106 return (res
+ (res
>> 16)) & 0x000000FF;
109 static inline int fls(int x
)
112 //ust// #ifdef CONFIG_X86_CMOV
115 : "=&r" (r
) : "rm" (x
), "rm" (-1));
117 //ust// asm("bsrl %1,%0\n\t"
119 //ust// "movl $-1,%0\n"
120 //ust// "1:" : "=r" (r) : "rm" (x));
125 static __inline__
int get_count_order(unsigned int count
)
129 order
= fls(count
) - 1;
130 if (count
& (count
- 1))
140 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
141 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
142 #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
143 #define PAGE_SIZE sysconf(_SC_PAGE_SIZE)
144 #define PAGE_MASK (~(PAGE_SIZE-1))
151 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
155 static inline u64
trace_clock_read64(void)
160 __asm__
volatile ("rdtsc\n" : "=a" (low
), "=d" (high
));
167 //static inline u64 trace_clock_read64(void)
169 // struct timeval tv;
172 // gettimeofday(&tv, NULL);
173 // retval = tv.tv_sec;
174 // retval *= 1000000;
175 // retval += tv.tv_usec;
180 static inline u64
trace_clock_frequency(void)
185 static inline u32
trace_clock_freq_scale(void)
191 #endif /* KERNELCOMPAT_H */
This page took 0.033639 seconds and 3 git commands to generate.