mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Fix typo
Change-Id: I83f38c41f822f62688b618b84eb8221a160d3528 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
5ca820ca3b
commit
067fea96ca
@@ -161,7 +161,7 @@ void BufferObject::unbind(OsContext *osContext, uint32_t vmHandleId) {
|
|||||||
if (this->bindInfo[contextId][vmHandleId]) {
|
if (this->bindInfo[contextId][vmHandleId]) {
|
||||||
auto ret = this->drm->unbindBufferObject(osContext, vmHandleId, this);
|
auto ret = this->drm->unbindBufferObject(osContext, vmHandleId, this);
|
||||||
auto err = this->drm->getErrno();
|
auto err = this->drm->getErrno();
|
||||||
printDebugString(DebugManager.flags.PrintBOBindingResult.get(), stderr, "unbind BO-%d, rande: %llx - %llx, size: %lld, result: %d, errno: %d(%s)\n", this->handle, this->gpuAddress, ptrOffset(this->gpuAddress, this->size), this->size, ret, err, strerror(err));
|
printDebugString(DebugManager.flags.PrintBOBindingResult.get(), stderr, "unbind BO-%d, range: %llx - %llx, size: %lld, result: %d, errno: %d(%s)\n", this->handle, this->gpuAddress, ptrOffset(this->gpuAddress, this->size), this->size, ret, err, strerror(err));
|
||||||
UNRECOVERABLE_IF(ret != 0);
|
UNRECOVERABLE_IF(ret != 0);
|
||||||
this->bindInfo[contextId][vmHandleId] = false;
|
this->bindInfo[contextId][vmHandleId] = false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user