[Mesa-dev] [1/2] winsys/svga/drm: Include sys/types.h
Eric Engestrom
eric.engestrom at intel.com
Tue Feb 26 11:56:19 UTC 2019
On Monday, 2019-02-25 20:06:47 +0000, Ross Burton wrote:
> From: Khem Raj <raj.khem at gmail.com>
>
> vmw_screen.h uses dev_t which is defines in sys/types.h
> this header is required to be included for getting dev_t
> definition. This issue happens on musl C library, it is hidden
> on glibc since sys/types.h is included through another
> system headers
Reviewed-by: Eric Engestrom <eric.engestrom at intel.com>
> ---
> src/gallium/winsys/svga/drm/vmw_screen.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/src/gallium/winsys/svga/drm/vmw_screen.h b/src/gallium/winsys/svga/drm/vmw_screen.h
> index a87c087d9c5..cb34fec48e7 100644
> --- a/src/gallium/winsys/svga/drm/vmw_screen.h
> +++ b/src/gallium/winsys/svga/drm/vmw_screen.h
> @@ -41,6 +41,7 @@
> #include "svga_winsys.h"
> #include "pipebuffer/pb_buffer_fenced.h"
> #include <os/os_thread.h>
> +#include <sys/types.h>
>
> #define VMW_GMR_POOL_SIZE (16*1024*1024)
> #define VMW_QUERY_POOL_SIZE (8192)
More information about the mesa-dev
mailing list