1 #ifndef _ASM_GENERIC_PAGE_H
2 #define _ASM_GENERIC_PAGE_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_PAGE_H */