From: Eric Anholt Date: Wed, 9 May 2018 00:14:25 +0000 (-0700) Subject: drm: Fix render node numbering regression from control node removal. X-Git-Tag: v4.19~298^2~45^2~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9ac371d4b5982d2f179d42bb99781e510d55f50;p=platform%2Fkernel%2Flinux-rpi.git drm: Fix render node numbering regression from control node removal. drm_minor_alloc() does multiplication on this enum, so the removal ended up moving render nodes down from 128 base to 64. This caused Mesa's surfaceless backend to be unable to open the render nodes, since it was still looking up at 128. v2: Add a comment warning the next person. Signed-off-by: Eric Anholt Fixes: 0d49f303e8a7 ("drm: remove all control node code") Reviewed-by: Daniel Vetter Cc: Sean Paul Link: https://patchwork.freedesktop.org/patch/msgid/20180509001425.12574-1-eric@anholt.net --- diff --git a/include/drm/drm_file.h b/include/drm/drm_file.h index 91a65a3..027ac16 100644 --- a/include/drm/drm_file.h +++ b/include/drm/drm_file.h @@ -47,8 +47,12 @@ struct device; * header include loops we need it here for now. */ +/* Note that the order of this enum is ABI (it determines + * /dev/dri/renderD* numbers). + */ enum drm_minor_type { DRM_MINOR_PRIMARY, + DRM_MINOR_CONTROL, DRM_MINOR_RENDER, };