ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / include / um_uaccess.h
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __ARCH_UM_UACCESS_H
7 #define __ARCH_UM_UACCESS_H
8
9 #include "linux/config.h"
10 #include "choose-mode.h"
11
12 #ifdef CONFIG_MODE_TT
13 #include "../kernel/tt/include/uaccess.h"
14 #endif
15
16 #ifdef CONFIG_MODE_SKAS
17 #include "../kernel/skas/include/uaccess.h"
18 #endif
19
20 #define access_ok(type, addr, size) \
21         CHOOSE_MODE_PROC(access_ok_tt, access_ok_skas, type, addr, size)
22
23 static inline int verify_area(int type, const void * addr, unsigned long size)
24 {
25         return(CHOOSE_MODE_PROC(verify_area_tt, verify_area_skas, type, addr,
26                                 size));
27 }
28
29 static inline int copy_from_user(void *to, const void *from, int n)
30 {
31         return(CHOOSE_MODE_PROC(copy_from_user_tt, copy_from_user_skas, to,
32                                 from, n));
33 }
34
35 static inline int copy_to_user(void *to, const void *from, int n)
36 {
37         return(CHOOSE_MODE_PROC(copy_to_user_tt, copy_to_user_skas, to, 
38                                 from, n));
39 }
40
41 static inline int strncpy_from_user(char *dst, const char *src, int count)
42 {
43         return(CHOOSE_MODE_PROC(strncpy_from_user_tt, strncpy_from_user_skas,
44                                 dst, src, count));
45 }
46
47 static inline int __clear_user(void *mem, int len)
48 {
49         return(CHOOSE_MODE_PROC(__clear_user_tt, __clear_user_skas, mem, len));
50 }
51
52 static inline int clear_user(void *mem, int len)
53 {
54         return(CHOOSE_MODE_PROC(clear_user_tt, clear_user_skas, mem, len));
55 }
56
57 static inline int strnlen_user(const void *str, int len)
58 {
59         return(CHOOSE_MODE_PROC(strnlen_user_tt, strnlen_user_skas, str, len));
60 }
61
62 #endif
63
64 /*
65  * Overrides for Emacs so that we follow Linus's tabbing style.
66  * Emacs will notice this stuff at the end of the file and automatically
67  * adjust the settings for this buffer only.  This must remain at the end
68  * of the file.
69  * ---------------------------------------------------------------------------
70  * Local variables:
71  * c-file-style: "linux"
72  * End:
73  */