Skip to content

Commit

Permalink
SDL_kmsdrmvideo.c: check atomic modesetting in check_modesetting()
Browse files Browse the repository at this point in the history
.. so that KMSDRM_CreateDevice() can fail and SDL_VideoInit() would
move on to next bootstrap member which is kmsdrm_legacy.  hopefully
fixes bug #5393.
  • Loading branch information
sezero committed Dec 18, 2020
1 parent 5c654d0 commit 6c4ab48
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/video/kmsdrm/SDL_kmsdrmvideo.c
Expand Up @@ -58,6 +58,14 @@

#define AMDGPU_COMPAT 1

static int check_atomic_modesetting (int fd)
{
if (KMSDRM_drmSetClientCap(fd, DRM_CLIENT_CAP_ATOMIC, 1)) {
return SDL_SetError("no atomic modesetting support.");
}
return 0;
}

static int
check_modesetting(int devindex)
{
Expand All @@ -72,7 +80,7 @@ check_modesetting(int devindex)
drm_fd = open(device, O_RDWR | O_CLOEXEC);
if (drm_fd >= 0) {
if (SDL_KMSDRM_LoadSymbols()) {
drmModeRes *resources = KMSDRM_drmModeGetResources(drm_fd);
drmModeRes *resources = (check_atomic_modesetting(drm_fd) < 0) ? NULL : KMSDRM_drmModeGetResources(drm_fd);
if (resources) {
SDL_LogDebug(SDL_LOG_CATEGORY_VIDEO, "%scard%d connector, encoder and CRTC counts are: %d %d %d",
KMSDRM_DRI_PATH, devindex,
Expand Down Expand Up @@ -1189,9 +1197,8 @@ KMSDRM_VideoInit(_THIS)

/* Try ATOMIC compatibility */

ret = KMSDRM_drmSetClientCap(viddata->drm_fd, DRM_CLIENT_CAP_ATOMIC, 1);
ret = check_atomic_modesetting(viddata->drm_fd);
if (ret) {
ret = SDL_SetError("no atomic modesetting support.");
goto cleanup;
}

Expand Down

0 comments on commit 6c4ab48

Please sign in to comment.