aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-12-28 10:52:40 +0100
committerSimon Ser <contact@emersion.fr>2021-01-04 19:46:44 +0100
commite8d56ca415f6214681daa65c0da505cd2d0bdc75 (patch)
treeaf24c6652a7b2e289a9ea6313fbc2871c5ddf9d9 /backend
parent7febdc73345f9759a766ee3c7b17d7195192bd38 (diff)
backend/session: allow wlr_session_find_gpus to return an error
Sometimes wlr_session_find_gpus will encounter an error. This is different from finding zero GPUs. On error, wlr_session_find_gpus already returns -1. However, this is casted to size_t, so callers uncorrectly assume this is a success. Instead, make wlr_session_find_gpus return a ssize_t and allow callers to handle the error accordingly.
Diffstat (limited to 'backend')
-rw-r--r--backend/backend.c11
-rw-r--r--backend/session/session.c6
2 files changed, 11 insertions, 6 deletions
diff --git a/backend/backend.c b/backend/backend.c
index 8163e203..7e299f9d 100644
--- a/backend/backend.c
+++ b/backend/backend.c
@@ -150,11 +150,16 @@ static struct wlr_backend *attempt_noop_backend(struct wl_display *display) {
static struct wlr_backend *attempt_drm_backend(struct wl_display *display,
struct wlr_backend *backend, struct wlr_session *session) {
struct wlr_device *gpus[8];
- size_t num_gpus = wlr_session_find_gpus(session, 8, gpus);
- struct wlr_backend *primary_drm = NULL;
+ ssize_t num_gpus = wlr_session_find_gpus(session, 8, gpus);
+ if (num_gpus < 0) {
+ wlr_log(WLR_ERROR, "Failed to find GPUs");
+ return NULL;
+ }
+
wlr_log(WLR_INFO, "Found %zu GPUs", num_gpus);
- for (size_t i = 0; i < num_gpus; ++i) {
+ struct wlr_backend *primary_drm = NULL;
+ for (size_t i = 0; i < (size_t)num_gpus; ++i) {
struct wlr_backend *drm = wlr_drm_backend_create(display, session,
gpus[i], primary_drm);
if (!drm) {
diff --git a/backend/session/session.c b/backend/session/session.c
index b58bd967..1c6321a5 100644
--- a/backend/session/session.c
+++ b/backend/session/session.c
@@ -278,12 +278,12 @@ out_dev:
return NULL;
}
-static size_t explicit_find_gpus(struct wlr_session *session,
+static ssize_t explicit_find_gpus(struct wlr_session *session,
size_t ret_len, struct wlr_device *ret[static ret_len], const char *str) {
char *gpus = strdup(str);
if (!gpus) {
wlr_log_errno(WLR_ERROR, "Allocation failed");
- return 0;
+ return -1;
}
size_t i = 0;
@@ -345,7 +345,7 @@ static void find_gpus_handle_add(struct wl_listener *listener, void *data) {
/* Tries to find the primary GPU by checking for the "boot_vga" attribute.
* If it's not found, it returns the first valid GPU it finds.
*/
-size_t wlr_session_find_gpus(struct wlr_session *session,
+ssize_t wlr_session_find_gpus(struct wlr_session *session,
size_t ret_len, struct wlr_device **ret) {
const char *explicit = getenv("WLR_DRM_DEVICES");
if (explicit) {