cxgb3: fix premature page unmap
[linux-2.6/mini2440.git] / include / asm-generic / getorder.h
blob67e7245dc9b39a442fc173be8552193aa0603a5a
1 #ifndef __ASM_GENERIC_GETORDER_H
2 #define __ASM_GENERIC_GETORDER_H
4 #ifndef __ASSEMBLY__
6 #include <linux/compiler.h>
8 /* Pure 2^n version of get_order */
9 static inline __attribute_const__ int get_order(unsigned long size)
11 int order;
13 size = (size - 1) >> (PAGE_SHIFT - 1);
14 order = -1;
15 do {
16 size >>= 1;
17 order++;
18 } while (size);
19 return order;
22 #endif /* __ASSEMBLY__ */
24 #endif /* __ASM_GENERIC_GETORDER_H */