summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/r600_pipe_common.c
diff options
context:
space:
mode:
authorNicolai Hähnle <nicolai.haehnle@amd.com>2016-09-27 18:30:18 +0200
committerNicolai Hähnle <nicolai.haehnle@amd.com>2016-10-05 15:40:40 +0200
commitd8cff811dfb0172684fe3ec01c98fc847b0c17a7 (patch)
tree3b48b9d25896d1d41c9e48c2fb4624b3dcfe7d2f /src/gallium/drivers/radeon/r600_pipe_common.c
parent8915f0c0de84fa593ca6c31518c1292f94b3bb7b (diff)
downloadexternal_mesa3d-d8cff811dfb0172684fe3ec01c98fc847b0c17a7.zip
external_mesa3d-d8cff811dfb0172684fe3ec01c98fc847b0c17a7.tar.gz
external_mesa3d-d8cff811dfb0172684fe3ec01c98fc847b0c17a7.tar.bz2
util/slab: re-design to allow migration between pools (v3)
This is basically a re-write of the slab allocator into a design where multiple child pools are linked to a parent pool. The intention is that every (GL, pipe) context has its own child pool, while the corresponding parent pool is held by the winsys or screen, or possibly the GL share group. The fast path is still used when objects are freed by the same child pool that allocated them. However, it is now also possible to free an object in a different pool, as long as they belong to the same parent. Objects also survive the destruction of the (child) pool from which they were allocated. The slow path will return freed objects to the child pool from which they were originally allocated. If that child pool was destroyed, the corresponding page is considered an orphan and will be freed once all objects in it have been freed. This allocation pattern is required for pipe_transfers that correspond to (GL) buffer object mappings when the mapping is created in one context which is later destroyed while other contexts of the same share group live on -- see the bug report referenced below. Note that individual drivers do need to migrate to the new interface in order to benefit and fix the bug. v2: use singly-linked lists everywhere v3: use p_atomic_set for page->u.num_remaining Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=97894
Diffstat (limited to 'src/gallium/drivers/radeon/r600_pipe_common.c')
0 files changed, 0 insertions, 0 deletions