aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-i386/page.h')
-rw-r--r--include/asm-i386/page.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/include/asm-i386/page.h b/include/asm-i386/page.h
index 8d93f732d72d..10045fd82103 100644
--- a/include/asm-i386/page.h
+++ b/include/asm-i386/page.h
@@ -104,20 +104,6 @@ typedef struct { unsigned long pgprot; } pgprot_t;
104 */ 104 */
105extern unsigned int __VMALLOC_RESERVE; 105extern unsigned int __VMALLOC_RESERVE;
106 106
107/* Pure 2^n version of get_order */
108static __inline__ int get_order(unsigned long size)
109{
110 int order;
111
112 size = (size-1) >> (PAGE_SHIFT-1);
113 order = -1;
114 do {
115 size >>= 1;
116 order++;
117 } while (size);
118 return order;
119}
120
121extern int sysctl_legacy_va_layout; 107extern int sysctl_legacy_va_layout;
122 108
123extern int page_is_ram(unsigned long pagenr); 109extern int page_is_ram(unsigned long pagenr);
@@ -156,4 +142,6 @@ extern int page_is_ram(unsigned long pagenr);
156 142
157#endif /* __KERNEL__ */ 143#endif /* __KERNEL__ */
158 144
145#include <asm-generic/page.h>
146
159#endif /* _I386_PAGE_H */ 147#endif /* _I386_PAGE_H */