The BO handle table exists to avoid double-closing a BO handle, which aren't reference-counted by the kernel. But if we can guarantee that there is only ever a single ref for each BO handle, then we don't need the BO handle table anymore. This is possible if we create the handle right before the ADDFB2 IOCTL, and close the handle right after. The handles are very short-lived and we don't need to track their lifetime. Because of multi-planar FBs, we need to be a bit careful: some FB planes might share the same handle. But with a small check, it's easy to avoid double-closing the same handle (which wouldn't be a big deal anyways). There's one gotcha though: drmModeSetCursor2 takes a BO handle as input. Saving the handles until drmModeSetCursor2 time would require us to track BO handle lifetimes, so we wouldn't be able to get rid of the BO handle table. As a workaround, use drmModeGetFB to turn the FB ID back to a BO handle, call drmModeSetCursor2 and then immediately close the BO handle. The overhead should be minimal since these IOCTLs are pretty cheap. Closes: https://github.com/swaywm/wlroots/issues/3164master
parent
3b96aa04db
commit
0817c52a21
@ -1,43 +0,0 @@
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include "backend/drm/bo_handle_table.h"
|
||||
|
||||
static size_t align(size_t val, size_t align) {
|
||||
size_t mask = align - 1;
|
||||
return (val + mask) & ~mask;
|
||||
}
|
||||
|
||||
void drm_bo_handle_table_finish(struct wlr_drm_bo_handle_table *table) {
|
||||
free(table->nrefs);
|
||||
}
|
||||
|
||||
bool drm_bo_handle_table_ref(struct wlr_drm_bo_handle_table *table,
|
||||
uint32_t handle) {
|
||||
assert(handle != 0);
|
||||
|
||||
if (handle > table->len) {
|
||||
// Grow linearly, because we don't expect the number of BOs to explode
|
||||
size_t len = align(handle + 1, 512);
|
||||
size_t *nrefs = realloc(table->nrefs, len * sizeof(size_t));
|
||||
if (nrefs == NULL) {
|
||||
wlr_log_errno(WLR_ERROR, "realloc failed");
|
||||
return false;
|
||||
}
|
||||
memset(&nrefs[table->len], 0, (len - table->len) * sizeof(size_t));
|
||||
table->len = len;
|
||||
table->nrefs = nrefs;
|
||||
}
|
||||
|
||||
table->nrefs[handle]++;
|
||||
return true;
|
||||
}
|
||||
|
||||
size_t drm_bo_handle_table_unref(struct wlr_drm_bo_handle_table *table,
|
||||
uint32_t handle) {
|
||||
assert(handle < table->len);
|
||||
assert(table->nrefs[handle] > 0);
|
||||
table->nrefs[handle]--;
|
||||
return table->nrefs[handle];
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
#ifndef BACKEND_DRM_BO_HANDLE_TABLE_H
|
||||
#define BACKEND_DRM_BO_HANDLE_TABLE_H
|
||||
|
||||
/**
|
||||
* Table performing reference counting for buffer object handles.
|
||||
*
|
||||
* The BO handles are allocated incrementally and are recycled by the kernel,
|
||||
* so a simple array is used.
|
||||
*
|
||||
* This design is inspired from amdgpu's code in libdrm:
|
||||
* https://gitlab.freedesktop.org/mesa/drm/-/blob/1a4c0ec9aea13211997f982715fe5ffcf19dd067/amdgpu/handle_table.c
|
||||
*/
|
||||
struct wlr_drm_bo_handle_table {
|
||||
size_t *nrefs;
|
||||
size_t len;
|
||||
};
|
||||
|
||||
void drm_bo_handle_table_finish(struct wlr_drm_bo_handle_table *table);
|
||||
bool drm_bo_handle_table_ref(struct wlr_drm_bo_handle_table *table,
|
||||
uint32_t handle);
|
||||
size_t drm_bo_handle_table_unref(struct wlr_drm_bo_handle_table *table,
|
||||
uint32_t handle);
|
||||
|
||||
#endif
|
Loading…
Reference in new issue