Revert "Add execution property in register memory for gfx801."

This reverts commit abf7770d46.


[ROCm/ROCR-Runtime commit: 4c4df38035]
This commit is contained in:
Oded Gabbay
2015-04-28 17:50:00 +03:00
parent fcf6e22216
commit b6c7551747
2 ha cambiato i file con 2 aggiunte e 15 eliminazioni
+1 -2
Vedi File
@@ -364,8 +364,7 @@ HSAKMT_STATUS
HSAKMTAPI
hsaKmtRegisterMemory(
void* MemoryAddress, //IN (page-aligned)
HSAuint64 MemorySizeInBytes, //IN (page-aligned)
int ExecuteAccess
HSAuint64 MemorySizeInBytes //IN (page-aligned)
);
+1 -13
Vedi File
@@ -170,23 +170,11 @@ HSAKMT_STATUS
HSAKMTAPI
hsaKmtRegisterMemory(
void *MemoryAddress, /* IN (page-aligned) */
HSAuint64 MemorySizeInBytes, /* IN (page-aligned) */
int ExecuteAccess
HSAuint64 MemorySizeInBytes /* IN (page-aligned) */
)
{
CHECK_KFD_OPEN();
int err;
/* for CZ ib execution */
if (ExecuteAccess) {
err = mprotect(MemoryAddress, MemorySizeInBytes,
PROT_READ | PROT_WRITE | PROT_EXEC);
if (err != 0) {
free(MemoryAddress);
return err;
}
}
return HSAKMT_STATUS_SUCCESS;
}