|
|
@ -69,11 +69,11 @@ static int reopen_drm_node(int drm_fd, bool allow_render_node) {
|
|
|
|
|
|
|
|
|
|
|
|
free(name);
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
|
|
|
|
// If we're using a DRM primary node (e.g. because we're running under the
|
|
|
|
// If we're using a DRM primary node and we are DRM master (e.g. because
|
|
|
|
// DRM backend, or because we're on split render/display machine), we need
|
|
|
|
// we're running under the DRM backend), we need to use the legacy DRM
|
|
|
|
// to use the legacy DRM authentication mechanism to have the permission to
|
|
|
|
// authentication mechanism to have the permission to manipulate DRM dumb
|
|
|
|
// manipulate buffers.
|
|
|
|
// buffers.
|
|
|
|
if (drmGetNodeTypeFromFd(new_fd) == DRM_NODE_PRIMARY) {
|
|
|
|
if (drmIsMaster(drm_fd) && drmGetNodeTypeFromFd(new_fd) == DRM_NODE_PRIMARY) {
|
|
|
|
drm_magic_t magic;
|
|
|
|
drm_magic_t magic;
|
|
|
|
if (drmGetMagic(new_fd, &magic) < 0) {
|
|
|
|
if (drmGetMagic(new_fd, &magic) < 0) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "drmGetMagic failed");
|
|
|
|
wlr_log_errno(WLR_ERROR, "drmGetMagic failed");
|
|
|
|