2005-09-03 18:54:30 -04:00
|
|
|
#ifndef _ASM_GENERIC_PAGE_H
|
|
|
|
#define _ASM_GENERIC_PAGE_H
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2007-03-06 22:38:01 -05:00
|
|
|
#include <linux/compiler.h>
|
2005-09-03 18:54:30 -04:00
|
|
|
|
2007-03-06 22:38:01 -05:00
|
|
|
/* Pure 2^n version of get_order */
|
|
|
|
static __inline__ __attribute_const__ int get_order(unsigned long size)
|
2005-09-03 18:54:30 -04:00
|
|
|
{
|
|
|
|
int order;
|
|
|
|
|
2007-03-06 22:38:01 -05:00
|
|
|
size = (size - 1) >> (PAGE_SHIFT - 1);
|
2005-09-03 18:54:30 -04:00
|
|
|
order = -1;
|
|
|
|
do {
|
|
|
|
size >>= 1;
|
|
|
|
order++;
|
|
|
|
} while (size);
|
|
|
|
return order;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
|
|
|
#endif /* _ASM_GENERIC_PAGE_H */
|