Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/xe/vf: Enable VF resource fixup unconditionally

All the feature enabling code is in place - drop the debug flag
requirement for VF resource fixup.

Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Link: https://patch.msgid.link/20251107161000.1938186-1-michal.winiarski@intel.com
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>

-8
-8
drivers/gpu/drm/xe/xe_sriov_vf.c
··· 156 156 157 157 static void vf_migration_init_early(struct xe_device *xe) 158 158 { 159 - /* 160 - * TODO: Add conditions to allow specific platforms, when they're 161 - * supported at production quality. 162 - */ 163 - if (!IS_ENABLED(CONFIG_DRM_XE_DEBUG)) 164 - return xe_sriov_vf_migration_disable(xe, 165 - "experimental feature not available on production builds"); 166 - 167 159 if (!xe_device_has_memirq(xe)) 168 160 return xe_sriov_vf_migration_disable(xe, "requires memory-based IRQ support"); 169 161