Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/context/
H A Dmali_kbase_context.c365 unsigned long pending_regions_to_clean; in kbase_context_sticky_resource_term() local
371 pending_regions_to_clean = KBASE_COOKIE_MASK; in kbase_context_sticky_resource_term()
372 bitmap_andnot(&pending_regions_to_clean, &pending_regions_to_clean, in kbase_context_sticky_resource_term()
374 while (pending_regions_to_clean) { in kbase_context_sticky_resource_term()
375 unsigned int cookie = find_first_bit(&pending_regions_to_clean, in kbase_context_sticky_resource_term()
389 bitmap_clear(&pending_regions_to_clean, cookie, 1); in kbase_context_sticky_resource_term()
/OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_context.c215 unsigned long pending_regions_to_clean; in kbase_destroy_context() local
260 pending_regions_to_clean = (~kctx->cookies) & KBASE_COOKIE_MASK; in kbase_destroy_context()
261 while (pending_regions_to_clean) { in kbase_destroy_context()
262 unsigned int cookie = __ffs(pending_regions_to_clean); in kbase_destroy_context()
269 pending_regions_to_clean &= ~(1UL << cookie); in kbase_destroy_context()