Files
linux-apfs/include/asm-generic/getorder.h
T

25 lines
421 B
C
Raw Normal View History

2009-05-13 22:56:30 +00:00
#ifndef __ASM_GENERIC_GETORDER_H
#define __ASM_GENERIC_GETORDER_H
2005-09-03 15:54:30 -07:00
#ifndef __ASSEMBLY__
#include <linux/compiler.h>
2005-09-03 15:54:30 -07:00
/* Pure 2^n version of get_order */
2009-05-13 22:56:30 +00:00
static inline __attribute_const__ int get_order(unsigned long size)
2005-09-03 15:54:30 -07:00
{
int order;
size = (size - 1) >> (PAGE_SHIFT - 1);
2005-09-03 15:54:30 -07:00
order = -1;
do {
size >>= 1;
order++;
} while (size);
return order;
}
#endif /* __ASSEMBLY__ */
2009-05-13 22:56:30 +00:00
#endif /* __ASM_GENERIC_GETORDER_H */