Hi Andy On Wednesday, October 16th, 2024 at 11:23 AM, Piotr Zalewski <pZ010001011111@xxxxxxxxx> wrote: > > > static void vop2_crtc_atomic_flush(struct drm_crtc *crtc, > > > @@ -2790,7 +2945,13 @@ static int vop2_create_crtcs(struct vop2 *vop2) > > > } > > > > > > drm_crtc_helper_add(&vp->crtc, &vop2_crtc_helper_funcs); > > > + if (vop2->lut_regs && vp->crtc.dev != NULL) { > > > > There is no need to check vp->crtc.dev here, set has been set in drm_crtc_init_with_planes . > > > I tested it and this check must be here because trying to enable color mgmt > on CRTC with no associated device, causes null ptr dereference later on in > drm_crtc_enable_color_mgmt (unless something changed in recent kernel > versions, last time I tested was 6.10? or even 6.8). Just tested it without the null check and it works. Next version will be without it. Best regards, Piotr Zalewski