Home
last modified time | relevance | path

Searched refs:gtt_sa_bitmap (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.10/drivers/gpu/drm/amd/amdkfd/
Dkfd_device.c1074 kfd->gtt_sa_bitmap = kcalloc(num_of_longs, sizeof(long), GFP_KERNEL); in kfd_gtt_sa_init()
1076 if (!kfd->gtt_sa_bitmap) in kfd_gtt_sa_init()
1080 kfd->gtt_sa_num_of_chunks, kfd->gtt_sa_bitmap); in kfd_gtt_sa_init()
1091 kfree(kfd->gtt_sa_bitmap); in kfd_gtt_sa_fini()
1131 found = find_next_zero_bit(kfd->gtt_sa_bitmap, in kfd_gtt_sa_allocate()
1159 set_bit(found, kfd->gtt_sa_bitmap); in kfd_gtt_sa_allocate()
1167 find_next_zero_bit(kfd->gtt_sa_bitmap, in kfd_gtt_sa_allocate()
1200 set_bit(found, kfd->gtt_sa_bitmap); in kfd_gtt_sa_allocate()
1230 clear_bit(bit, kfd->gtt_sa_bitmap); in kfd_gtt_sa_free()
Dkfd_priv.h255 void *gtt_sa_bitmap; member