A D | usercopy.c | 13 unsigned __copy_to_user_ll(void __user *to, const void *from, unsigned n) in __copy_to_user_ll() argument 43 : [cnt] "+c" (n), [to] "+D" (to), [from] "+S" (from), in __copy_to_user_ll() 88 : [cnt] "+c" (n), [to] "+D" (to), [from] "+S" (from), in __copy_from_user_ll() 110 unsigned copy_to_user(void __user *to, const void *from, unsigned n) in copy_to_user() argument 112 if ( access_ok(to, n) ) in copy_to_user() 113 n = __copy_to_user(to, from, n); in copy_to_user() 127 unsigned clear_user(void __user *to, unsigned n) in clear_user() argument 129 if ( access_ok(to, n) ) in clear_user() 143 : [cnt] "=&c" (n), [to] "+D" (to) in clear_user() 171 n = __copy_from_user(to, from, n); in copy_from_user() [all …]
|