Revert "feature: Enable kmd migration by default on PVC platform"

This reverts commit eb8e69d2d4.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>

Source: b4d8d6b447
This commit is contained in:
Compute-Runtime-Validation 2023-05-19 10:25:43 +02:00 committed by Compute-Runtime-Automation
parent bc6cacdc53
commit 6f66cafe77
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
template <>
bool ProductHelperHw<gfxProduct>::isKmdMigrationSupported() const {
return true;
return false;
}
template <>

View File

@ -78,7 +78,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupported
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfKmdMigrationIsSupportedThenReturnFalse, IGFX_PVC);
PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsKmdMigrationSupportedThenReturnTrue) {
EXPECT_TRUE(productHelper->isKmdMigrationSupported());
EXPECT_FALSE(productHelper->isKmdMigrationSupported());
}
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {