1 #ifndef _ASM_GENERIC_PAGE_H
2 #define _ASM_GENERIC_PAGE_H
7 #include <linux/compiler.h>
9 /* Pure 2^n version of get_order */
10 static __inline__ __attribute_const__ int get_order(unsigned long size)
14 size = (size - 1) >> (PAGE_SHIFT - 1);
23 #endif /* __ASSEMBLY__ */
24 #endif /* __KERNEL__ */
26 #endif /* _ASM_GENERIC_PAGE_H */