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:
Sebastian Sumpf 2023-09-20 19:33:55 +02:00 committed by Christian Helmuth
parent 1006e9d987
commit a0840d7a06
2 changed files with 7 additions and 0 deletions

View File

@ -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_ */

View File

@ -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_ */