From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Wilson Subject: Re: [PATCH 1/2] drm/i915: time out of load detect busy-waits Date: Wed, 25 Apr 2012 18:14:37 +0100 Message-ID: <1335374112_49610@CP5-2952> References: <1334948616-16073-1-git-send-email-daniel.vetter@ffwll.ch> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from fireflyinternet.com (smtp.fireflyinternet.com [109.228.6.236]) by gabe.freedesktop.org (Postfix) with ESMTP id 2A4229E889 for ; Wed, 25 Apr 2012 10:15:18 -0700 (PDT) In-Reply-To: <1334948616-16073-1-git-send-email-daniel.vetter@ffwll.ch> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: Intel Graphics Development Cc: Daniel Vetter List-Id: intel-gfx@lists.freedesktop.org On Fri, 20 Apr 2012 21:03:35 +0200, Daniel Vetter wrote: > If we try to do that and the scanlines just wouldn't advance, we > busy-hang the machine holding the modeset mutex. Not great for > debugging. > > References: https://bugzilla.kernel.org/show_bug.cgi?id=43020 > Signed-off-by: Daniel Vetter Reviewer hangs head in shame: > + if (wait_for(I915_READ(pipe_dsl_reg) >= vactive, 1000)) > + DRM_ERROR("timed out waiting for vactive in " > + "load_detect, scanline: %u\n", > + I915_READ(pipe_dsl_reg)); > + if (wait_for((dsl = I915_READ(pipe_dsl_reg)) <= vsample, 1000)) > + DRM_ERROR("timed out waiting for vsample in " > + "load_detect, scanline: %u\n", > + I915_READ(pipe_dsl_reg)); wait_for() catches us out everytime we convert and existing while(), because the predicate is when it stops. Perhaps if we had a wait_until, but anyway the fix here is: if (wait_for(I915_READ(pipe_dsl_reg) < vactive, 1000)) ... if (wait_for((dsl = I915_READ(pipe_dsl_reg)) > vsample, 1000)) ... -Chris -- Chris Wilson, Intel Open Source Technology Centre