From patchwork Tue Feb 11 15:28:03 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vignesh Raman X-Patchwork-Id: 13969909 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 410CDC0219B for ; Tue, 11 Feb 2025 15:28:55 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 90E6310E3A7; Tue, 11 Feb 2025 15:28:54 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="Nj4bO6lQ"; dkim-atps=neutral Received: from bali.collaboradmins.com (bali.collaboradmins.com [148.251.105.195]) by gabe.freedesktop.org (Postfix) with ESMTPS id AAA4510E3A7 for ; Tue, 11 Feb 2025 15:28:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1739287731; bh=g/VzPgjMTUf8b4KZq8wW7K14EeqxaK8deIugM6ijxdc=; h=From:To:Cc:Subject:Date:From; b=Nj4bO6lQijRHRd5TqwliuF33tQ5gK5ernjeZp67nLCx5mPOt98Uge9263E377n8+d wAOkh7e1NGSXpLHpUR7eXo2CMV6tzCDW3POi2snbciX8On3OPqUwyghDhDRKCkcyvg UEOqFqfMLWc3adTEGjy0iwhDNtYqEVr4k/peliTTCiwbcPVh4si/GG9jIP6gd+UTBf DDKmSRTHDLK4qkkncJUNMMQnCjGMyDekIi3793c9VwYsL/QbUngPYd6YIokjPGd+qS S+gDg4E7AHPlSN1UN836dzpE2qwAFvZOYSNfydj8Y8YCxbVwi4GFSZmuahw+q0GNqm lLkRY7gZ5zHmQ== Received: from localhost.localdomain (unknown [171.76.80.66]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: vignesh) by bali.collaboradmins.com (Postfix) with ESMTPSA id 9984717E014F; Tue, 11 Feb 2025 16:28:46 +0100 (CET) From: Vignesh Raman To: dri-devel@lists.freedesktop.org Cc: daniels@collabora.com, helen.fornazier@gmail.com, airlied@gmail.com, simona.vetter@ffwll.ch, robdclark@gmail.com, guilherme.gallo@collabora.com, sergi.blanch.torne@collabora.com, valentine.burley@collabora.com, jani.nikula@linux.intel.com, dmitry.baryshkov@linaro.org, mripard@kernel.org, boqun.feng@gmail.com, linux-kernel@vger.kernel.org Subject: [PATCH v2 0/3] drm/ci: enable lockdep detection Date: Tue, 11 Feb 2025 20:58:03 +0530 Message-ID: <20250211152812.54018-1-vignesh.raman@collabora.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This patch series enables lockdep detection in drm-ci. Any lockdep failures will be shown as warnings in the pipeline. This series also enables CONFIG_DEBUG_WW_MUTEX_SLOWPATH for mutex slowpath debugging and refactors software-driver stage jobs. Test run with this series, https://gitlab.freedesktop.org/vigneshraman/linux/-/pipelines/1362134 Link to v1: https://lore.kernel.org/all/20240812112030.81774-1-vignesh.raman@collabora.com/ Vignesh Raman (3): drm/ci: refactor software-driver stage jobs drm/ci: enable CONFIG_DEBUG_WW_MUTEX_SLOWPATH drm/ci: enable lockdep detection Documentation/gpu/automated_testing.rst | 4 ++ drivers/gpu/drm/ci/build.yml | 6 +- drivers/gpu/drm/ci/igt_runner.sh | 11 ++++ drivers/gpu/drm/ci/test.yml | 78 +++++++++++++------------ 4 files changed, 58 insertions(+), 41 deletions(-)