Remove MMAP allocator from DrmMemoryManager

Related-To: NEO-2877

Change-Id: Iddfadde449b71b2fcfb7d6298db5de014773476d
Signed-off-by: Venevtsev, Igor <igor.venevtsev@intel.com>
This commit is contained in:
Venevtsev, Igor
2019-08-05 13:34:29 +02:00
committed by sys_ocldev
parent 203d94d28f
commit 614104bf37
11 changed files with 82 additions and 315 deletions

View File

@@ -29,7 +29,7 @@
namespace NEO {
BufferObject::BufferObject(Drm *drm, int handle, bool isAllocated) : drm(drm), refCount(1), handle(handle), isReused(false), isAllocated(isAllocated) {
BufferObject::BufferObject(Drm *drm, int handle) : drm(drm), refCount(1), handle(handle), isReused(false) {
this->tiling_mode = I915_TILING_NONE;
this->stride = 0;
this->size = 0;