diff --git a/shared/source/os_interface/product_helper.inl b/shared/source/os_interface/product_helper.inl index c6186bbf80..f0bb1a79b4 100644 --- a/shared/source/os_interface/product_helper.inl +++ b/shared/source/os_interface/product_helper.inl @@ -453,8 +453,8 @@ bool ProductHelperHw::overridePatToUCAndTwoWayCohForDcFlushMitigatio return this->isDcFlushMitigated() && (this->overrideCacheableForDcFlushMitigation(allocationType) || allocationType == AllocationType::timestampPacketTagBuffer || - allocationType == AllocationType::gpuTimestampDeviceBuffer || - allocationType == AllocationType::tagBuffer); + allocationType == AllocationType::tagBuffer || + allocationType == AllocationType::gpuTimestampDeviceBuffer); } template @@ -473,8 +473,7 @@ bool ProductHelperHw::overrideCacheableForDcFlushMitigation(Allocati allocationType == AllocationType::svmCpu || allocationType == AllocationType::svmZeroCopy || allocationType == AllocationType::internalHostMemory || - allocationType == AllocationType::printfSurface || - allocationType == AllocationType::timestampPacketTagBuffer); + allocationType == AllocationType::printfSurface); } template diff --git a/shared/test/unit_test/xe2_hpg_core/lnl/product_helper_tests_lnl.cpp b/shared/test/unit_test/xe2_hpg_core/lnl/product_helper_tests_lnl.cpp index 5c21c91026..719c4cd22b 100644 --- a/shared/test/unit_test/xe2_hpg_core/lnl/product_helper_tests_lnl.cpp +++ b/shared/test/unit_test/xe2_hpg_core/lnl/product_helper_tests_lnl.cpp @@ -146,8 +146,7 @@ LNLTEST_F(LnlProductHelper, givenExternalHostPtrWhenMitigateDcFlushThenOverrideC allocationType == AllocationType::svmZeroCopy || allocationType == AllocationType::internalHostMemory || allocationType == AllocationType::commandBuffer || - allocationType == AllocationType::printfSurface || - allocationType == AllocationType::timestampPacketTagBuffer) { + allocationType == AllocationType::printfSurface) { EXPECT_TRUE(productHelper->overrideAllocationCacheable(allocationData)); } else { EXPECT_FALSE(productHelper->overrideAllocationCacheable(allocationData));