mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-10 21:01:49 +00:00
lx_emul/shadow: uaccess_32/64
Expand shadow header with '__copy_from_user_inatomic_nocache' and/or '__copy_from_user_flushcache'. issue #5104
This commit is contained in:
parent
1006e9d987
commit
a0840d7a06
@ -10,4 +10,6 @@
|
||||
unsigned long raw_copy_from_user(void *to, const void * from, unsigned long n);
|
||||
unsigned long raw_copy_to_user(void *to, const void *from, unsigned long n);
|
||||
|
||||
int __copy_from_user_inatomic_nocache(void *dst, const void __user *src,
|
||||
unsigned size);
|
||||
#endif /* _ASM__UACCESS_32_H_ */
|
||||
|
@ -12,4 +12,9 @@ unsigned long raw_copy_to_user(void *to, const void *from, unsigned long n);
|
||||
|
||||
unsigned long clear_user(void *mem, unsigned long len);
|
||||
|
||||
int __copy_from_user_inatomic_nocache(void *dst, const void __user *src,
|
||||
unsigned size);
|
||||
int __copy_from_user_flushcache(void *dst, const void __user *src, unsigned size);
|
||||
|
||||
|
||||
#endif /* _ASM__UACCESS_64_H_ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user