]> www.infradead.org Git - linux.git/commit
i915: fix DRM_I915_GVT_KVMGT dependencies
authorArnd Bergmann <arnd@arndb.de>
Tue, 15 Oct 2024 15:21:48 +0000 (15:21 +0000)
committerJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
Mon, 21 Oct 2024 06:51:05 +0000 (09:51 +0300)
commit338b655a1178900ac05aca7ac66dc28b05100430
tree6fecae07738be72d4b5763d3f1c328bd4c856928
parent42f7652d3eb527d03665b09edac47f85fb600924
i915: fix DRM_I915_GVT_KVMGT dependencies

Depending on x86 and KVM is not enough, as the kvm helper functions
that get called here are controlled by CONFIG_KVM_X86, which is
disabled if both KVM_INTEL and KVM_AMD are turned off.

ERROR: modpost: "kvm_write_track_remove_gfn" [drivers/gpu/drm/i915/kvmgt.ko] undefined!
ERROR: modpost: "kvm_page_track_register_notifier" [drivers/gpu/drm/i915/kvmgt.ko] undefined!
ERROR: modpost: "kvm_page_track_unregister_notifier" [drivers/gpu/drm/i915/kvmgt.ko] undefined!
ERROR: modpost: "kvm_write_track_add_gfn" [drivers/gpu/drm/i915/kvmgt.ko] undefined!

Change the dependency to CONFIG_KVM_X86 instead.

Fixes: ea4290d77bda ("KVM: x86: leave kvm.ko out of the build if no vendor module is requested")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20241015152157.2955229-1-arnd@kernel.org
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
(cherry picked from commit 341e4023032fba6c02326bfc6babd63ef4039712)
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
drivers/gpu/drm/i915/Kconfig