Fix debug message

Change-Id: Ia80264e3e5447d250ca18be4adf80a80c349701d
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2020-08-19 15:51:25 +02:00
committed by sys_ocldev
parent c3790388b8
commit b3fea30b11

View File

@@ -775,7 +775,7 @@ inline void CommandStreamReceiverHw<GfxFamily>::waitForTaskCountWithKmdNotifyFal
bool enableTimeout = kmdNotifyHelper->obtainTimeoutParams(waitTimeout, useQuickKmdSleep, *getTagAddress(), taskCountToWait, flushStampToWait, forcePowerSavingMode); bool enableTimeout = kmdNotifyHelper->obtainTimeoutParams(waitTimeout, useQuickKmdSleep, *getTagAddress(), taskCountToWait, flushStampToWait, forcePowerSavingMode);
printDebugString(DebugManager.flags.LogWaitingForCompletion.get(), stdout, printDebugString(DebugManager.flags.LogWaitingForCompletion.get(), stdout,
"\nWaiting for task count %u at location 0x%p. Current value: %u\n", "\nWaiting for task count %u at location %p. Current value: %u\n",
taskCountToWait, getTagAddress(), *getTagAddress()); taskCountToWait, getTagAddress(), *getTagAddress());
auto status = waitForCompletionWithTimeout(enableTimeout, waitTimeout, taskCountToWait); auto status = waitForCompletionWithTimeout(enableTimeout, waitTimeout, taskCountToWait);