From: Emil Velikov Date: Mon, 29 Jun 2015 13:01:39 +0000 (+0100) Subject: pipe-loader: use loader_open_device() rather than open() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc32d25454c382a971e81ae584a4296fdf492e70;p=mesa.git pipe-loader: use loader_open_device() rather than open() The former handles O_CLOEXEC (and the lack of it) appropriately. Signed-off-by: Emil Velikov Reviewed-by: Francisco Jerez --- diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index 05f7c57c904..cc6d74a964b 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -95,7 +95,7 @@ open_drm_render_node_minor(int minor) char path[PATH_MAX]; snprintf(path, sizeof(path), DRM_RENDER_NODE_DEV_NAME_FORMAT, DRM_DIR_NAME, minor); - return open(path, O_RDWR, 0); + return loader_open_device(path); } int