diff options
author | Greg V <[email protected]> | 2017-10-23 23:20:40 +0300 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-10-26 15:11:35 +0100 |
commit | db8519a369261cdedda50852facc45616d4eba28 (patch) | |
tree | 514aff3d1ed0d1ac42254c13fd74490b32afecbd /src/loader | |
parent | 9f7ed60b3eae9d3d20805e79c9ab67674619e2cd (diff) |
loader: use drmGetDeviceNameFromFd2 from libdrm
Reduce code duplication and automatically benefit from OS-specific
fixes to libdrm (e.g. in FreeBSD ports).
API was introduced with 2.4.74 and we already require 2.4.75 globally.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103283
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/loader')
-rw-r--r-- | src/loader/loader.c | 36 |
1 files changed, 1 insertions, 35 deletions
diff --git a/src/loader/loader.c b/src/loader/loader.c index 182ba90a0da..f7f85e37c20 100644 --- a/src/loader/loader.c +++ b/src/loader/loader.c @@ -245,29 +245,6 @@ int loader_get_user_preferred_fd(int default_fd, bool *different_device) #endif #if defined(HAVE_LIBDRM) -static int -dev_node_from_fd(int fd, unsigned int *maj, unsigned int *min) -{ - struct stat buf; - - if (fstat(fd, &buf) < 0) { - log_(_LOADER_WARNING, "MESA-LOADER: failed to stat fd %d\n", fd); - return -1; - } - - if (!S_ISCHR(buf.st_mode)) { - log_(_LOADER_WARNING, "MESA-LOADER: fd %d not a character device\n", fd); - return -1; - } - - *maj = major(buf.st_rdev); - *min = minor(buf.st_rdev); - - return 0; -} -#endif - -#if defined(HAVE_LIBDRM) static int drm_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id) @@ -312,18 +289,7 @@ loader_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id) static char * drm_get_device_name_for_fd(int fd) { - unsigned int maj, min; - char buf[0x40]; - int n; - - if (dev_node_from_fd(fd, &maj, &min) < 0) - return NULL; - - n = snprintf(buf, sizeof(buf), DRM_DEV_NAME, DRM_DIR_NAME, min); - if (n == -1 || n >= sizeof(buf)) - return NULL; - - return strdup(buf); + return drmGetDeviceNameFromFd2(fd); } #endif |