diff --git a/manifests/manifest.yml b/manifests/manifest.yml index 7fe490be5e..154702a0f0 100644 --- a/manifests/manifest.yml +++ b/manifests/manifest.yml @@ -19,7 +19,7 @@ components: internal: branch: master dest_dir: internal - revision: fb79d6e30f52a7d640bc808ec41997a1ce1faa34 + revision: 603332ad122fdb2eb0a8151dda4e12b50f1620d7 type: git kmdaf: branch: kmdaf diff --git a/shared/source/os_interface/linux/drm_memory_manager_allocate_in_device_pool_dg1.cpp b/shared/source/os_interface/linux/drm_memory_manager_allocate_in_device_pool_dg1.cpp index cda358c2a9..23635c24b2 100644 --- a/shared/source/os_interface/linux/drm_memory_manager_allocate_in_device_pool_dg1.cpp +++ b/shared/source/os_interface/linux/drm_memory_manager_allocate_in_device_pool_dg1.cpp @@ -212,7 +212,7 @@ void *DrmMemoryManager::lockResourceInLocalMemoryImpl(BufferObject *bo) { return nullptr; } - auto addr = mmapFunction(nullptr, bo->peekSize(), PROT_WRITE | PROT_READ, MAP_SHARED, getDrm(rootDeviceIndex).getFileDescriptor(), mmapOffset.offset); + auto addr = mmapFunction(nullptr, bo->peekSize(), PROT_WRITE | PROT_READ, MAP_SHARED, getDrm(rootDeviceIndex).getFileDescriptor(), static_cast(mmapOffset.offset)); DEBUG_BREAK_IF(addr == MAP_FAILED); bo->setLockedAddress(addr);