mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
drm/xe: Add xe_vm_has_valid_gpu_mapping helper
Rather than having multiple READ_ONCE of the tile_* fields and comments in code, use helper with kernel doc for single access point and clear rules. v3: - s/xe_vm_has_valid_gpu_pages/xe_vm_has_valid_gpu_mapping Suggested-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Link: https://lore.kernel.org/r/20250616063024.2059829-2-matthew.brost@intel.com
This commit is contained in:
@@ -2196,7 +2196,7 @@ static void bind_op_commit(struct xe_vm *vm, struct xe_tile *tile,
|
||||
DMA_RESV_USAGE_KERNEL :
|
||||
DMA_RESV_USAGE_BOOKKEEP);
|
||||
}
|
||||
/* All WRITE_ONCE pair with READ_ONCE in xe_gt_pagefault.c */
|
||||
/* All WRITE_ONCE pair with READ_ONCE in xe_vm_has_valid_gpu_mapping() */
|
||||
WRITE_ONCE(vma->tile_present, vma->tile_present | BIT(tile->id));
|
||||
if (invalidate_on_bind)
|
||||
WRITE_ONCE(vma->tile_invalidated,
|
||||
@@ -2255,7 +2255,7 @@ static void range_present_and_invalidated_tile(struct xe_vm *vm,
|
||||
struct xe_svm_range *range,
|
||||
u8 tile_id)
|
||||
{
|
||||
/* WRITE_ONCE pairs with READ_ONCE in xe_svm.c */
|
||||
/* All WRITE_ONCE pair with READ_ONCE in xe_vm_has_valid_gpu_mapping() */
|
||||
|
||||
lockdep_assert_held(&vm->svm.gpusvm.notifier_lock);
|
||||
|
||||
@@ -2324,7 +2324,7 @@ static void op_commit(struct xe_vm *vm,
|
||||
}
|
||||
case DRM_GPUVA_OP_DRIVER:
|
||||
{
|
||||
/* WRITE_ONCE pairs with READ_ONCE in xe_svm.c */
|
||||
/* WRITE_ONCE pairs with READ_ONCE in xe_vm_has_valid_gpu_mapping() */
|
||||
if (op->subop == XE_VMA_SUBOP_MAP_RANGE)
|
||||
range_present_and_invalidated_tile(vm, op->map_range.range, tile->id);
|
||||
else if (op->subop == XE_VMA_SUBOP_UNMAP_RANGE)
|
||||
|
||||
Reference in New Issue
Block a user