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

This reverts commit 5ed05c99b3.
Este commit está contenido en:
Oded Gabbay
2015-04-28 17:50:00 +03:00
padre 112f7e751a
commit 4c4df38035
Se han modificado 2 ficheros con 2 adiciones y 15 borrados
+1 -13
Ver fichero
@@ -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;
}