Skip to content

Commit bb12770

Browse files
Revert "feature: Enable kmd migration by default on PVC platform"
This reverts commit eb8e69d. Signed-off-by: Compute-Runtime-Validation <[email protected]> Source: b4d8d6b
1 parent 49fb4f8 commit bb12770

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

shared/source/xe_hpc_core/linux/product_helper_pvc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021-2024 Intel Corporation
2+
* Copyright (C) 2021-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -78,7 +78,7 @@ bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
7878

7979
template <>
8080
bool ProductHelperHw<gfxProduct>::isKmdMigrationSupported() const {
81-
return true;
81+
return false;
8282
}
8383

8484
template <>

shared/test/unit_test/xe_hpc_core/pvc/linux/product_helper_tests_pvc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupported
7878
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfKmdMigrationIsSupportedThenReturnFalse, IGFX_PVC);
7979

8080
PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsKmdMigrationSupportedThenReturnTrue) {
81-
EXPECT_TRUE(productHelper->isKmdMigrationSupported());
81+
EXPECT_FALSE(productHelper->isKmdMigrationSupported());
8282
}
8383

8484
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {

0 commit comments

Comments
 (0)