Skip to content

Commit 1a524e8

Browse files
committed
drm/xe: Do not warn on SVM migration failing because of 64k requirements
On platforms which only support 64k VRAM pages, it is expected that 4k faults will not migrate. Do not warn on this, rather print a debug message. Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://lore.kernel.org/r/20250529164338.1745515-1-matthew.brost@intel.com
1 parent 241cc82 commit 1a524e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/xe/xe_svm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ bool xe_svm_range_needs_migrate_to_vram(struct xe_svm_range *range, struct xe_vm
821821
}
822822

823823
if (preferred_region_is_vram && range_size <= SZ_64K && !supports_4K_migration(vm->xe)) {
824-
drm_warn(&vm->xe->drm, "Platform doesn't support SZ_4K range migration\n");
824+
drm_dbg(&vm->xe->drm, "Platform doesn't support SZ_4K range migration\n");
825825
return false;
826826
}
827827

0 commit comments

Comments
 (0)