mirror of
https://github.com/mii443/qemu.git
synced 2025-08-23 23:49:36 +00:00
EFAULT - verify pages are in cache and are read/write, by Thayne Harbaugh.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3506 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
@ -203,7 +203,8 @@ int target_msync(abi_ulong start, abi_ulong len, int flags);
|
||||
#define VERIFY_READ 0
|
||||
#define VERIFY_WRITE 1
|
||||
|
||||
#define access_ok(type,addr,size) (1)
|
||||
#define access_ok(type,addr,size) \
|
||||
(page_check_range((target_ulong)addr,size,(type==VERIFY_READ)?PAGE_READ:PAGE_WRITE)==0)
|
||||
|
||||
/* NOTE get_user and put_user use host addresses. */
|
||||
#define __put_user(x,ptr)\
|
||||
|
Reference in New Issue
Block a user