diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-23 02:25:38 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-23 02:25:38 +0000 |
commit | 16b5d462f73eb29d1f67fa01cc1ea66afdc72569 (patch) | |
tree | 5407bd573f4840e473ea27cbe61e5c7a07131fcd /include/asm-alpha/page.h | |
parent | ce8a076e11e7e5ee36007f9a3eee5bb3744cb8f6 (diff) |
Merge with Linux 2.3.99-pre2.
Diffstat (limited to 'include/asm-alpha/page.h')
-rw-r--r-- | include/asm-alpha/page.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-alpha/page.h b/include/asm-alpha/page.h index d1dde606e..62a72144f 100644 --- a/include/asm-alpha/page.h +++ b/include/asm-alpha/page.h @@ -38,6 +38,8 @@ static inline void clear_page(void * page) } while (count); } +#define clear_user_page(page, vaddr) clear_page(page) + static inline void copy_page(void * _to, void * _from) { unsigned long count = PAGE_SIZE/64; @@ -68,6 +70,8 @@ static inline void copy_page(void * _to, void * _from) } while (count); } +#define copy_user_page(to, from, vaddr) copy_page(to, from) + #ifdef STRICT_MM_TYPECHECKS /* * These are used to make use of C type-checking.. |