}
simple_mtx_lock(&ws->sws_list_lock);
- for (sws_iter = ws->sws_list; sws_iter; sws_iter = sws_iter->next)
- _mesa_hash_table_remove_key(sws_iter->kms_handles, bo);
+ for (sws_iter = ws->sws_list; sws_iter; sws_iter = sws_iter->next) {
+ if (sws_iter->kms_handles)
+ _mesa_hash_table_remove_key(sws_iter->kms_handles, bo);
+ }
simple_mtx_unlock(&ws->sws_list_lock);
simple_mtx_lock(&ws->bo_export_table_lock);
type = amdgpu_bo_handle_type_gem_flink_name;
break;
case WINSYS_HANDLE_TYPE_KMS:
+ if (sws->fd == ws->fd) {
+ whandle->handle = bo->u.real.kms_handle;
+
+ if (bo->is_shared)
+ return true;
+
+ goto hash_table_set;
+ }
+
simple_mtx_lock(&ws->sws_list_lock);
entry = _mesa_hash_table_search(sws->kms_handles, bo);
simple_mtx_unlock(&ws->sws_list_lock);
simple_mtx_unlock(&ws->sws_list_lock);
}
+ hash_table_set:
simple_mtx_lock(&ws->bo_export_table_lock);
util_hash_table_set(ws->bo_export_table, bo->bo, bo);
simple_mtx_unlock(&ws->bo_export_table_lock);
simple_mtx_unlock(&ws->sws_list_lock);
}
- _mesa_hash_table_destroy(sws->kms_handles, NULL);
+ if (sws->kms_handles) {
+ assert(!destroy);
+ _mesa_hash_table_destroy(sws->kms_handles, NULL);
+ }
+
close(sws->fd);
FREE(rws);
}
ws->fd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
- ws->kms_handles = _mesa_hash_table_create(NULL, kms_handle_hash,
- kms_handle_equals);
- if (!ws->kms_handles)
- goto fail;
-
/* Look up the winsys from the dev table. */
simple_mtx_lock(&dev_tab_mutex);
if (!dev_tab)
/* Initialize the amdgpu device. This should always return the same pointer
* for the same fd. */
- r = amdgpu_device_initialize(fd, &drm_major, &drm_minor, &dev);
+ r = amdgpu_device_initialize(ws->fd, &drm_major, &drm_minor, &dev);
if (r) {
fprintf(stderr, "amdgpu: amdgpu_device_initialize failed.\n");
goto fail;
/* Lookup a winsys if we have already created one for this device. */
aws = util_hash_table_get(dev_tab, dev);
if (aws) {
- pipe_reference(NULL, &aws->reference);
-
/* Release the device handle, because we don't need it anymore.
* This function is returning an existing winsys instance, which
* has its own device handle.
*/
amdgpu_device_deinitialize(dev);
+
+ ws->kms_handles = _mesa_hash_table_create(NULL, kms_handle_hash,
+ kms_handle_equals);
+ if (!ws->kms_handles)
+ goto fail;
+
+ pipe_reference(NULL, &aws->reference);
} else {
/* Create a new winsys. */
aws = CALLOC_STRUCT(amdgpu_winsys);
goto fail;
aws->dev = dev;
+ aws->fd = ws->fd;
aws->info.drm_major = drm_major;
aws->info.drm_minor = drm_minor;