Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
getorder.h
Go to the documentation of this file.
1 #ifndef __ASM_GENERIC_GETORDER_H
2 #define __ASM_GENERIC_GETORDER_H
3 
4 #ifndef __ASSEMBLY__
5 
6 #include <linux/compiler.h>
7 #include <linux/log2.h>
8 
9 /*
10  * Runtime evaluation of get_order()
11  */
12 static inline __attribute_const__
13 int __get_order(unsigned long size)
14 {
15  int order;
16 
17  size--;
18  size >>= PAGE_SHIFT;
19 #if BITS_PER_LONG == 32
20  order = fls(size);
21 #else
22  order = fls64(size);
23 #endif
24  return order;
25 }
26 
49 #define get_order(n) \
50 ( \
51  __builtin_constant_p(n) ? ( \
52  ((n) == 0UL) ? BITS_PER_LONG - PAGE_SHIFT : \
53  (((n) < (1UL << PAGE_SHIFT)) ? 0 : \
54  ilog2((n) - 1) - PAGE_SHIFT + 1) \
55  ) : \
56  __get_order(n) \
57 )
58 
59 #endif /* __ASSEMBLY__ */
60 
61 #endif /* __ASM_GENERIC_GETORDER_H */