inotify: fix race
[linux-2.6.22.y-op.git] / include / asm-powerpc / page_32.h
blob374d0db37e1c1babf0ee08d935d5f3888e443f6c
1 #ifndef _ASM_POWERPC_PAGE_32_H
2 #define _ASM_POWERPC_PAGE_32_H
3 #ifdef __KERNEL__
5 #define VM_DATA_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS32
7 #define PPC_MEMSTART 0
9 #ifndef __ASSEMBLY__
11 * The basic type of a PTE - 64 bits for those CPUs with > 32 bit
12 * physical addressing. For now this just the IBM PPC440.
14 #ifdef CONFIG_PTE_64BIT
15 typedef unsigned long long pte_basic_t;
16 #define PTE_SHIFT (PAGE_SHIFT - 3) /* 512 ptes per page */
17 #else
18 typedef unsigned long pte_basic_t;
19 #define PTE_SHIFT (PAGE_SHIFT - 2) /* 1024 ptes per page */
20 #endif
22 struct page;
23 extern void clear_pages(void *page, int order);
24 static inline void clear_page(void *page) { clear_pages(page, 0); }
25 extern void copy_page(void *to, void *from);
27 #include <asm-generic/page.h>
29 #endif /* __ASSEMBLY__ */
31 #endif /* __KERNEL__ */
32 #endif /* _ASM_POWERPC_PAGE_32_H */