Received: by 10.213.65.68 with SMTP id h4csp420877imn; Tue, 13 Mar 2018 08:31:40 -0700 (PDT) X-Google-Smtp-Source: AG47ELt4NuO2dGB2Ye8FN2eu94Ma3UR9zQ/hPFdnNioA0HhOBQ7qSGvj0x/Kn0NWZuKLTZQBE6Vt X-Received: by 2002:a17:902:5803:: with SMTP id m3-v6mr891813pli.389.1520955100056; Tue, 13 Mar 2018 08:31:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1520955100; cv=none; d=google.com; s=arc-20160816; b=PUC+Mxj//pLbC5Kb4oM7I51U1vOmwy8uZHmJ+p5rn7TbCAXT4xSv/yKHhD1Y2RuJE5 99nxo8kpj7xSVYN3a9+F0z9w+lNz5i6b7PbWz5LKNBiz5KUN2ec2LGhrC8LUN8YR7j9+ rsZRMngaS3YXvYV5zP7NmNDcuhClPd2v+3PAZxP1Yi3FP3OzGd5rZwXgaNUD1NKjmq91 +WEBehtiwuRbOpyLXMe7MFwMym5f02sLi5JPZCFUhqo0p1IVRXWQSQxTeoLtouHMBI/A hDAzux9M0gQ2cgiMnwEtsj8uUfIjXQrWI+J75MdtZq58FyL8eAxY4YFzyArIShV5SF4u IQgQ== 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=J8xndn30T169Fw55rPaqi2ZFr29aC08rQrqHpqiuRGU=; b=YaJxaXAQar3KuJY/udeN4ul5lSTs1TpQFVGJNY8KptLxqU9fOt9mJMATvKM5nm9xQe bkaq4xqCLtbyPzWuIlm9dhYTR0whbaLsOSOKADLJ2ee4aVsHRQwgUKeDjGT29r8cfltN xe+tn52ZdxeN4MZ9SFBuSMqbSJIU18tTuArJ+W9eezHQl5bkmh5sBbTOWvArvWy+JFue +/oiySS8doYK5y2q9FJv4EkfjHiUM2IerG2y0xghFiJgWkkf0DA+vWFZcnPnb/6nFGy6 RGkrs/4INwvdf5mVEtayESFCtzVV4EBj6INiGymUcGvhGtyr0ujS9s8b4aO8uh5MTJ07 RfVg== 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 n5si258637pgd.345.2018.03.13.08.31.24; Tue, 13 Mar 2018 08:31:40 -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 S933062AbeCMP3p (ORCPT + 99 others); Tue, 13 Mar 2018 11:29:45 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:58482 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932995AbeCMP3m (ORCPT ); Tue, 13 Mar 2018 11:29:42 -0400 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 4CBFCF99; Tue, 13 Mar 2018 15:29:41 +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.15 021/146] drm: Allow determining if current task is output poll worker Date: Tue, 13 Mar 2018 16:23:08 +0100 Message-Id: <20180313152322.128669301@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180313152320.439085687@linuxfoundation.org> References: <20180313152320.439085687@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.15-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 @@ -655,6 +655,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 @@ -77,5 +77,6 @@ void drm_kms_helper_hotplug_event(struct void drm_kms_helper_poll_disable(struct drm_device *dev); void drm_kms_helper_poll_enable(struct drm_device *dev); +bool drm_kms_helper_is_poll_worker(void); #endif