mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-22 03:27:30 -04:00
Since Rust uses GPUVM via the kernel crate, which is built-in, the GPUVM module must also be built-in to use GPUVM from Rust. Adjust the Kconfig settings accordingly. Suggested-by: Danilo Krummrich <dakr@kernel.org> Signed-off-by: Alice Ryhl <aliceryhl@google.com> Link: https://patch.msgid.link/20260427-gpuvm-config-v1-1-8ece03771f8a@google.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
27 lines
537 B
C
27 lines
537 B
C
// SPDX-License-Identifier: GPL-2.0 or MIT
|
|
|
|
#ifdef CONFIG_RUST_DRM_GPUVM
|
|
|
|
#include <drm/drm_gpuvm.h>
|
|
|
|
__rust_helper
|
|
struct drm_gpuvm_bo *rust_helper_drm_gpuvm_bo_get(struct drm_gpuvm_bo *vm_bo)
|
|
{
|
|
return drm_gpuvm_bo_get(vm_bo);
|
|
}
|
|
|
|
__rust_helper
|
|
struct drm_gpuvm *rust_helper_drm_gpuvm_get(struct drm_gpuvm *obj)
|
|
{
|
|
return drm_gpuvm_get(obj);
|
|
}
|
|
|
|
__rust_helper
|
|
bool rust_helper_drm_gpuvm_is_extobj(struct drm_gpuvm *gpuvm,
|
|
struct drm_gem_object *obj)
|
|
{
|
|
return drm_gpuvm_is_extobj(gpuvm, obj);
|
|
}
|
|
|
|
#endif // CONFIG_RUST_DRM_GPUVM
|