From 6f66cafe7777d7ca406c4265cef32bf763573363 Mon Sep 17 00:00:00 2001 From: Compute-Runtime-Validation Date: Fri, 19 May 2023 10:25:43 +0200 Subject: [PATCH] Revert "feature: Enable kmd migration by default on PVC platform" This reverts commit eb8e69d2d45c5849eba94d7586a6d89fccedfd8f. Signed-off-by: Compute-Runtime-Validation Source: b4d8d6b447fe59642870ba852f184d2ca7957b6a --- shared/source/xe_hpc_core/linux/product_helper_pvc.cpp | 2 +- .../xe_hpc_core/pvc/linux/product_helper_tests_pvc.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/source/xe_hpc_core/linux/product_helper_pvc.cpp b/shared/source/xe_hpc_core/linux/product_helper_pvc.cpp index e0745c0398..c34a0d2e57 100644 --- a/shared/source/xe_hpc_core/linux/product_helper_pvc.cpp +++ b/shared/source/xe_hpc_core/linux/product_helper_pvc.cpp @@ -77,7 +77,7 @@ bool ProductHelperHw::isPageFaultSupported() const { template <> bool ProductHelperHw::isKmdMigrationSupported() const { - return true; + return false; } template <> diff --git a/shared/test/unit_test/xe_hpc_core/pvc/linux/product_helper_tests_pvc.cpp b/shared/test/unit_test/xe_hpc_core/pvc/linux/product_helper_tests_pvc.cpp index 87f56dd564..49fa069756 100644 --- a/shared/test/unit_test/xe_hpc_core/pvc/linux/product_helper_tests_pvc.cpp +++ b/shared/test/unit_test/xe_hpc_core/pvc/linux/product_helper_tests_pvc.cpp @@ -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) {