Disable recoverable page faults on PVC platform
Related-To: NEO-6355 Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
This commit is contained in:
parent
8d2028a986
commit
57614f9cd4
|
@ -77,7 +77,7 @@ uint64_t ProductHelperHw<gfxProduct>::getDeviceMemoryMaxBandWidthInBytesPerSecon
|
|||
|
||||
template <>
|
||||
bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace NEO
|
||||
|
|
|
@ -77,7 +77,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIfPatIndexProgrammin
|
|||
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfPageFaultIsSupportedThenReturnFalse, IGFX_PVC);
|
||||
|
||||
PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupportedThenReturnTrue) {
|
||||
EXPECT_TRUE(productHelper->isPageFaultSupported());
|
||||
EXPECT_FALSE(productHelper->isPageFaultSupported());
|
||||
}
|
||||
|
||||
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {
|
||||
|
|
Loading…
Reference in New Issue