1. 09 2月, 2016 1 次提交
  2. 20 1月, 2016 1 次提交
  3. 19 1月, 2016 1 次提交
  4. 18 1月, 2016 1 次提交
  5. 06 1月, 2016 1 次提交
  6. 05 1月, 2016 2 次提交
  7. 15 12月, 2015 1 次提交
  8. 11 12月, 2015 2 次提交
  9. 08 12月, 2015 2 次提交
  10. 03 12月, 2015 2 次提交
  11. 30 11月, 2015 1 次提交
  12. 24 11月, 2015 2 次提交
  13. 19 11月, 2015 1 次提交
  14. 17 11月, 2015 2 次提交
  15. 19 10月, 2015 1 次提交
  16. 17 9月, 2015 1 次提交
  17. 14 9月, 2015 1 次提交
  18. 08 9月, 2015 5 次提交
  19. 12 8月, 2015 1 次提交
  20. 11 8月, 2015 1 次提交
  21. 07 8月, 2015 1 次提交
  22. 04 8月, 2015 2 次提交
  23. 03 8月, 2015 1 次提交
    • L
      i915: temporary fix for DP MST docking station NULL pointer dereference · 27667f47
      Linus Torvalds 提交于
      Ted Ts'o reports that his Lenovo T540p ThinkPad crashes at boot if
      attached to the docking station.  This is a regression that he was able
      to bisect to commit 8c7b5ccb: "drm/i915: Use atomic helpers for
      computing changed flags:"
      
      The reason seems to be the new call to drm_atomic_helper_check_modeset()
      added to intel_modeset_compute_config(), which in turn calls
      update_connector_routing(), and somehow ends up picking a NULL crtc for
      the connector state, causing the subsequent drm_crtc_index() to OOPS.
      
      Daniel Vetter says that the fundamental issue seems to be confusion in
      the encoder selection, and this isn't the right fix, but while he chases
      down the proper fix, this at least avoids the NULL pointer dereference
      and makes Ted's docking station work again.
      Reported-bisected-and-tested-by: NTheodore Ts'o <tytso@mit.edu>
      Cc: Daniel Vetter <daniel.vetter@intel.com>
      Cc: Mani Nikula <jani.nikula@linux.intel.com>
      Cc: Dave Airlie <airlied@gmail.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      27667f47
  24. 27 7月, 2015 4 次提交
  25. 22 7月, 2015 1 次提交
    • D
      drm: Roll out drm_for_each_connector more · 9a9f5ce8
      Daniel Vetter 提交于
      Now that we also grab the connection_mutex and so fixed the race with
      atomic modeset we can use the iterator there too.
      
      The other special case is drm_connector_unplug_all which would have a
      locking inversion with the sysfs store/show functions if we'd grab the
      mode_config.mutex around the unplug. We could just grab
      connection_mutex instead, but that's a bit too much a dirty trick for
      my taste. Also it's only used by udl, which doesn't do any other kind
      of connector hotplugging, so should be race-free. Hence just stick
      with a comment for now.
      Reviewed-by: NMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@intel.com>
      9a9f5ce8
  26. 16 7月, 2015 1 次提交