Re: [Intel-gfx] [PATCH 05/14] drm: Check locking in drm_for_each_connector

2015-07-28 Thread Laurent Pinchart
Hi Daniel, On Thursday 09 July 2015 23:44:28 Daniel Vetter wrote: Because of DP MST connectors can now be hotplugged and we must hold the right lock when walking the connector lists. Enforce this by checking the locking in our shiny new list walking macros. v2: Extract the locking check

[Intel-gfx] [PATCH 05/14] drm: Check locking in drm_for_each_connector

2015-07-09 Thread Daniel Vetter
Because of DP MST connectors can now be hotplugged and we must hold the right lock when walking the connector lists. Enforce this by checking the locking in our shiny new list walking macros. v2: Extract the locking check into a small static inline helper to help readability. This will be more