mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 06:59:58 +00:00
shared_memory: Remove some checks.
This commit is contained in:
parent
42c062c620
commit
df008a159b
1 changed files with 0 additions and 13 deletions
|
@ -111,13 +111,6 @@ ResultCode SharedMemory::Map(Process* target_process, VAddr address, MemoryPermi
|
||||||
return ERR_INVALID_COMBINATION;
|
return ERR_INVALID_COMBINATION;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Heap-backed memory blocks can not be mapped with other_permissions = DontCare
|
|
||||||
if (base_address != 0 && other_permissions == MemoryPermission::DontCare) {
|
|
||||||
LOG_ERROR(Kernel, "cannot map id=%u, address=0x%llx name=%s, permissions don't match",
|
|
||||||
GetObjectId(), address, name.c_str());
|
|
||||||
return ERR_INVALID_COMBINATION;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Error out if the provided permissions are not compatible with what the creator process needs.
|
// Error out if the provided permissions are not compatible with what the creator process needs.
|
||||||
if (other_permissions != MemoryPermission::DontCare &&
|
if (other_permissions != MemoryPermission::DontCare &&
|
||||||
static_cast<u32>(this->permissions) & ~static_cast<u32>(other_permissions)) {
|
static_cast<u32>(this->permissions) & ~static_cast<u32>(other_permissions)) {
|
||||||
|
@ -126,12 +119,6 @@ ResultCode SharedMemory::Map(Process* target_process, VAddr address, MemoryPermi
|
||||||
return ERR_WRONG_PERMISSION;
|
return ERR_WRONG_PERMISSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO(Subv): Check for the Shared Device Mem flag in the creator process.
|
|
||||||
/*if (was_created_with_shared_device_mem && address != 0) {
|
|
||||||
return ResultCode(ErrorDescription::InvalidCombination, ErrorModule::OS,
|
|
||||||
ErrorSummary::InvalidArgument, ErrorLevel::Usage);
|
|
||||||
}*/
|
|
||||||
|
|
||||||
// TODO(Subv): The same process that created a SharedMemory object
|
// TODO(Subv): The same process that created a SharedMemory object
|
||||||
// can not map it in its own address space unless it was created with addr=0, result 0xD900182C.
|
// can not map it in its own address space unless it was created with addr=0, result 0xD900182C.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue