1 #ifndef __ASM_GENERIC_GETORDER_H
2 #define __ASM_GENERIC_GETORDER_H
6 #include <linux/compiler.h>
8 /* Pure 2^n version of get_order */
9 static inline __attribute_const__ int get_order(unsigned long size)
13 size = (size - 1) >> (PAGE_SHIFT - 1);
22 #endif /* __ASSEMBLY__ */
24 #endif /* __ASM_GENERIC_GETORDER_H */