On Tue, 21 Apr 2015, Mika Kuoppala <mika.kuoppala@xxxxxxxxxxxxxxx> wrote: > Reading from disconnected ports will spit out timeout error > on the dmesg. Skip the attempted read if the port is not > connected and avoid confusing users/testcases about > expected timeouts. > > This new dpcd debugfs entry was introduced by commit aa7471d228eb > ("drm/i915: add i915 specific connector debugfs file for DPCD") > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=90060 > Tested-by: yex.tian@xxxxxxxxx > Cc: Jani Nikula <jani.nikula@xxxxxxxxx> > Cc: Bob Paauwe <bob.j.paauwe@xxxxxxxxx> > Signed-off-by: Mika Kuoppala <mika.kuoppala@xxxxxxxxx> > --- > drivers/gpu/drm/i915/i915_debugfs.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c > index 9c2b9e4..fbc1f39 100644 > --- a/drivers/gpu/drm/i915/i915_debugfs.c > +++ b/drivers/gpu/drm/i915/i915_debugfs.c > @@ -4938,6 +4938,9 @@ static int i915_dpcd_show(struct seq_file *m, void *data) > connector->connector_type != DRM_MODE_CONNECTOR_eDP) > continue; > > + if (connector->status != connector_status_connected) > + continue; The loop isn't iterating over connectors, so this check should be at the top of the function. BR, Jani. > + > /* low tech for now */ > if (WARN_ON(size > sizeof(buf))) > continue; > -- > 1.9.1 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@xxxxxxxxxxxxxxxxxxxxx > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Jani Nikula, Intel Open Source Technology Center _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/intel-gfx