Received: by 10.213.65.68 with SMTP id h4csp464967imn; Fri, 16 Mar 2018 08:33:36 -0700 (PDT) X-Google-Smtp-Source: AG47ELulOx3fWMbt06BcnXckhv4FhdTk6ARmjOZ10k66R4sD6QhdHMfgZJLxFnn9gSq19lckBjzm X-Received: by 10.98.215.18 with SMTP id b18mr1936456pfh.33.1521214416784; Fri, 16 Mar 2018 08:33:36 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521214416; cv=none; d=google.com; s=arc-20160816; b=YmcppRG2p3lzGfOhYtaH2pkPNwwzM7ApqDR8MLXOYSe7s9xHkBg9//7aOY6xeMLZd7 sXOZSaTDNFwmwbapB9xFWPAbrq7TzfvBQehdL83M2IuA6n21Kp7c2PeUj7CTBra9cFfz rKV9XVcdCLICdeQnc4RNQTEqAHiN0RymFOv3dQ53o/3lYEpnpPjNfTC+jcok0q7k7qnh u3fpJR7gp3JjjCekqvs/b7Qahg2iSGcQzarC4NtqJ9V6zOHxUT/Fmoi5M2WxmOFJFPil SluPw+zZ1J2eb2hPWHAPvquhkJ9PtSUlf3+H6hz0KkrkMphI8UCA2lfYxDNOG3Zvw+HA ZLnw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=MKW3pRKmhzZ9moZYskI9+/i3AoPaYCtLau4CnF6x3Lo=; b=xhIRZkcWUml7xh8yQV/fX9UeAk0s6PkoHzcae3UmW2vxF5/vjsXM5mGd6owdkuo+OG 0x0We1t1dx8uGxy7ld6S1C8vMZsSqIW6QW/6hCo9tXKBt8RVfj7vQY9KolquZKd+tpXq xi62QKr2qc03s3Au3AdToeNqeaGNlnVrPo7eynnxbD+i06M3hDyuTehZcbqRC2W9ZUX4 fjDeiftxcFXS9VOHWLYU5qLKht21+8HQCk0nsClqImA1mEOV4TFlHUCZ86tMuDIuWbVn ICfeoaQDm6Xo9GAsHn7DU8zeOv7cmujWfhnv5jV+GJX5CYqnPIVCPR2KQrZyO5g7VLd9 chUw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s4si5653548pfs.116.2018.03.16.08.33.22; Fri, 16 Mar 2018 08:33:36 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933439AbeCPPb5 (ORCPT + 99 others); Fri, 16 Mar 2018 11:31:57 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:37712 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932303AbeCPPby (ORCPT ); Fri, 16 Mar 2018 11:31:54 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 60EA01162; Fri, 16 Mar 2018 15:31:53 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Dave Airlie , Ben Skeggs , Alex Deucher , Lyude Paul , Lukas Wunner Subject: [PATCH 4.9 08/86] drm: Allow determining if current task is output poll worker Date: Fri, 16 Mar 2018 16:22:31 +0100 Message-Id: <20180316152317.837266563@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180316152317.167709497@linuxfoundation.org> References: <20180316152317.167709497@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Lukas Wunner commit 25c058ccaf2ebbc3e250ec1e199e161f91fe27d4 upstream. Introduce a helper to determine if the current task is an output poll worker. This allows us to fix a long-standing deadlock in several DRM drivers wherein the ->runtime_suspend callback waits for the output poll worker to finish and the worker in turn calls a ->detect callback which waits for runtime suspend to finish. The ->detect callback is invoked from multiple call sites and waiting for runtime suspend to finish is the correct thing to do except if it's executing in the context of the worker. v2: Expand kerneldoc to specifically mention deadlock between output poll worker and autosuspend worker as use case. (Lyude) Cc: Dave Airlie Cc: Ben Skeggs Cc: Alex Deucher Reviewed-by: Lyude Paul Signed-off-by: Lukas Wunner Link: https://patchwork.freedesktop.org/patch/msgid/3549ce32e7f1467102e70d3e9cbf70c46bfe108e.1518593424.git.lukas@wunner.de Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/drm_probe_helper.c | 20 ++++++++++++++++++++ include/drm/drm_crtc_helper.h | 1 + 2 files changed, 21 insertions(+) --- a/drivers/gpu/drm/drm_probe_helper.c +++ b/drivers/gpu/drm/drm_probe_helper.c @@ -461,6 +461,26 @@ out: } /** + * drm_kms_helper_is_poll_worker - is %current task an output poll worker? + * + * Determine if %current task is an output poll worker. This can be used + * to select distinct code paths for output polling versus other contexts. + * + * One use case is to avoid a deadlock between the output poll worker and + * the autosuspend worker wherein the latter waits for polling to finish + * upon calling drm_kms_helper_poll_disable(), while the former waits for + * runtime suspend to finish upon calling pm_runtime_get_sync() in a + * connector ->detect hook. + */ +bool drm_kms_helper_is_poll_worker(void) +{ + struct work_struct *work = current_work(); + + return work && work->func == output_poll_execute; +} +EXPORT_SYMBOL(drm_kms_helper_is_poll_worker); + +/** * drm_kms_helper_poll_disable - disable output polling * @dev: drm_device * --- a/include/drm/drm_crtc_helper.h +++ b/include/drm/drm_crtc_helper.h @@ -74,5 +74,6 @@ extern void drm_kms_helper_hotplug_event extern void drm_kms_helper_poll_disable(struct drm_device *dev); extern void drm_kms_helper_poll_enable(struct drm_device *dev); extern void drm_kms_helper_poll_enable_locked(struct drm_device *dev); +extern bool drm_kms_helper_is_poll_worker(void); #endif