From nobody Fri Dec 19 15:17:54 2025 Received: from bali.collaboradmins.com (bali.collaboradmins.com [148.251.105.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BC73E15F306 for ; Mon, 17 Feb 2025 05:37:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=148.251.105.195 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739770668; cv=none; b=gmvZkJlXNiiMPpbqSCyw4gCw3uOG1AqjbFo1mZMyfpmN9t12/CP81mpmbXx7QPKpgUfm/LZBEuu1+ntv5bPs1FY6ErXe5KIAAZcPdR74eMeZjud7n1xqanOvX5GOkbGIF8v0bwSJ0d5U8K1cDqBRq8ENbGrOz+UrRpMJHo0hgLY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739770668; c=relaxed/simple; bh=iG4R8KXF/3Kpb+nBroyLd+zG/D7FL/wGqoOUVHGAz0o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=EykpkeUnCb5mueA69LY+3Ztc3mFAeoj38x3GbzXpwgrk9SsG1aHOtirTfEmqJCm7uz8OYlVyFV184Z3G4ye+Pxp8imY9qUQY8Ox7j9FI2/1eaN0BgHJmUjN6l1PCxHNY+ZsIV2m1hW7gzP4Eq01ZFSgBNYeFpTkpMEpDBnHEMP8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com; spf=pass smtp.mailfrom=collabora.com; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b=EYfwkZ7T; arc=none smtp.client-ip=148.251.105.195 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=collabora.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b="EYfwkZ7T" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1739770664; bh=iG4R8KXF/3Kpb+nBroyLd+zG/D7FL/wGqoOUVHGAz0o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EYfwkZ7Ts9/ctEYoWsHYCxLQ5v1b0T7m3h+nXecOzPwnI1AGZyWecCseAZOjf1WI3 qQC0IkPrIXY32kAZO5eVg5xpHv6ehiJ2TIIiIQZcTWSe3h0djNwEGQSefVPTR3b/Ge Rea+bmVzCqc16lCfWH8Uztz9Ka4BqbzXZi4LANhZ3UKl/kYsTRN+IBLnFqZTl6uXnD 7PXv+wf5m5j2wd92dlqFHw+j9uPo8nBxw0Ru4Ub7SSR1fdf/ubmGHa4PvAXN0Zd/vr V7x/djSgBMWCgPg9e6pAIZW8cRHdSg6p5BXaIDc6Hl5LzNr3KiDmAKRytvQxDL99O/ L3W44TBnHeJjg== Received: from localhost.localdomain (unknown [171.76.83.32]) (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 65BD817E14E7; Mon, 17 Feb 2025 06:37:39 +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 v3 1/3] drm/ci: refactor software-driver stage jobs Date: Mon, 17 Feb 2025 11:07:10 +0530 Message-ID: <20250217053719.442644-2-vignesh.raman@collabora.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250217053719.442644-1-vignesh.raman@collabora.com> References: <20250217053719.442644-1-vignesh.raman@collabora.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Move common job configuration for software-driver stage jobs to separate job. Signed-off-by: Vignesh Raman Acked-by: Helen Koike Reviewed-by: Daniel Stone --- v2: - New patch in the series. v3: - No changes. --- drivers/gpu/drm/ci/test.yml | 59 +++++++++++++++---------------------- 1 file changed, 24 insertions(+), 35 deletions(-) diff --git a/drivers/gpu/drm/ci/test.yml b/drivers/gpu/drm/ci/test.yml index 6a1e059858e5..0eab020a33b9 100644 --- a/drivers/gpu/drm/ci/test.yml +++ b/drivers/gpu/drm/ci/test.yml @@ -89,6 +89,26 @@ tags: - $RUNNER_TAG =20 +.software-driver: + stage: software-driver + timeout: "1h30m" + rules: + - !reference [.scheduled_pipeline-rules, rules] + - when: on_success + extends: + - .test-gl + tags: + - kvm + script: + - ln -sf $CI_PROJECT_DIR/install /install + - mv install/bzImage /lava-files/bzImage + - mkdir -p /lib/modules + - install/crosvm-runner.sh install/igt_runner.sh + needs: + - debian/x86_64_test-gl + - testing:x86_64 + - igt:x86_64 + .msm-sc7180: extends: - .lava-igt:arm64 @@ -440,47 +460,16 @@ panfrost:g12b: - .panfrost-gpu =20 virtio_gpu:none: - stage: software-driver - timeout: "1h30m" - rules: - - !reference [.scheduled_pipeline-rules, rules] - - when: on_success + extends: + - .software-driver variables: CROSVM_GALLIUM_DRIVER: llvmpipe DRIVER_NAME: virtio_gpu GPU_VERSION: none - extends: - - .test-gl - tags: - - kvm - script: - - ln -sf $CI_PROJECT_DIR/install /install - - mv install/bzImage /lava-files/bzImage - - install/crosvm-runner.sh install/igt_runner.sh - needs: - - debian/x86_64_test-gl - - testing:x86_64 - - igt:x86_64 =20 vkms:none: - stage: software-driver - timeout: "1h30m" - rules: - - !reference [.scheduled_pipeline-rules, rules] - - when: on_success + extends: + - .software-driver variables: DRIVER_NAME: vkms GPU_VERSION: none - extends: - - .test-gl - tags: - - kvm - script: - - ln -sf $CI_PROJECT_DIR/install /install - - mv install/bzImage /lava-files/bzImage - - mkdir -p /lib/modules - - ./install/crosvm-runner.sh ./install/igt_runner.sh - needs: - - debian/x86_64_test-gl - - testing:x86_64 - - igt:x86_64 --=20 2.43.0 From nobody Fri Dec 19 15:17:54 2025 Received: from bali.collaboradmins.com (bali.collaboradmins.com [148.251.105.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B9F90137750 for ; Mon, 17 Feb 2025 05:37:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=148.251.105.195 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739770674; cv=none; b=BMHkmE6qkYVeJ+n4ON9M8/SXoLntzBv3/C8Lurq0/A/dpHmU3q1JCpAnXh7iOowqL5xupwvk9zWTpQlX/yzLdBiiS07KD2MczbmfB2C5huIVqE7vuQSq8pDVP4AidH6PZWN+OgR4AL9DKBOtb9wQ42NLys2hCgpDCOrRPdXG/uI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739770674; c=relaxed/simple; bh=aohlNE3sp+EZSse6h0vdAdyitlo7jWoQr65EYPkC03Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HfdTW15Mc7fjzq06oADnqnt9IvJCGjU/25CvMohWNFXzcRVUmvRCkYhP+ztE6OPRC2S6t2LwcH/jxvV1d5jti9W1PbNw++P6w8RU5/RZGpSijVf4aQ33dshTiDVgPehEYKgVVt5F9naw2GHq2WeaS9rd/40nRHFU1bK0r6+02D0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com; spf=pass smtp.mailfrom=collabora.com; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b=ikI0hylY; arc=none smtp.client-ip=148.251.105.195 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=collabora.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b="ikI0hylY" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1739770671; bh=aohlNE3sp+EZSse6h0vdAdyitlo7jWoQr65EYPkC03Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ikI0hylYANVUoJGaDr7ylRKbTO2sR3u9EfO1DIzp+evkXAP8BXSvIdJ9OUd38dCrE JEcV36YIjh6/A3rH5GsPdB7z+lbRmYCwLUg/5/BblohEJiezD5Iyj43x9cHpTlvZQO H0DPvkr2/yskH0LzrfAhQ5s9U5daYu1nLaG4Qr5WQlU87VONU0Z5DPxnP6CxXW3T01 M1Qc45Zm8QftkfH5KuhTdr843cAtmiWGD+uyVJK8AHyL1FAmwMUSV1U7BEJQJ9Pg2l qeqb+6OrdkQMQoxvb/GVXrxjqyRij/jT2tE/6f4oMMLFMKMM0tsxDCCuoB24f/746H N6v+PRhcmYoAA== Received: from localhost.localdomain (unknown [171.76.83.32]) (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 B8B6517E154F; Mon, 17 Feb 2025 06:37:45 +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 v3 2/3] drm/ci: enable CONFIG_DEBUG_WW_MUTEX_SLOWPATH Date: Mon, 17 Feb 2025 11:07:11 +0530 Message-ID: <20250217053719.442644-3-vignesh.raman@collabora.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250217053719.442644-1-vignesh.raman@collabora.com> References: <20250217053719.442644-1-vignesh.raman@collabora.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Enable CONFIG_DEBUG_WW_MUTEX_SLOWPATH for mutex slowpath debugging. Signed-off-by: Vignesh Raman Acked-by: Helen Koike Reviewed-by: Daniel Stone --- v2: - New patch in the series. v3: - No changes. --- drivers/gpu/drm/ci/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/ci/build.yml b/drivers/gpu/drm/ci/build.yml index 274f118533a7..6c0dc10b547c 100644 --- a/drivers/gpu/drm/ci/build.yml +++ b/drivers/gpu/drm/ci/build.yml @@ -67,7 +67,7 @@ testing:arm32: # # db410c and db820c don't boot with KASAN_INLINE, probably due to the = kernel # becoming too big for their bootloaders. - ENABLE_KCONFIGS: "PROVE_LOCKING DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT" + ENABLE_KCONFIGS: "PROVE_LOCKING DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT DEB= UG_WW_MUTEX_SLOWPATH" UPLOAD_TO_MINIO: 1 MERGE_FRAGMENT: arm.config =20 @@ -79,7 +79,7 @@ testing:arm64: # # db410c and db820c don't boot with KASAN_INLINE, probably due to the = kernel # becoming too big for their bootloaders. - ENABLE_KCONFIGS: "PROVE_LOCKING DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT" + ENABLE_KCONFIGS: "PROVE_LOCKING DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT DEB= UG_WW_MUTEX_SLOWPATH" UPLOAD_TO_MINIO: 1 MERGE_FRAGMENT: arm64.config =20 @@ -91,7 +91,7 @@ testing:x86_64: # # db410c and db820c don't boot with KASAN_INLINE, probably due to the = kernel # becoming too big for their bootloaders. - ENABLE_KCONFIGS: "PROVE_LOCKING DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT" + ENABLE_KCONFIGS: "PROVE_LOCKING DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT DEB= UG_WW_MUTEX_SLOWPATH" UPLOAD_TO_MINIO: 1 MERGE_FRAGMENT: x86_64.config =20 --=20 2.43.0 From nobody Fri Dec 19 15:17:54 2025 Received: from bali.collaboradmins.com (bali.collaboradmins.com [148.251.105.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 769BA137750 for ; Mon, 17 Feb 2025 05:37:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=148.251.105.195 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739770681; cv=none; b=J9ub43q0QwvJumAIatSB7arKyKGopPdhXjRY/ItUGysAGJ3JxdKkoHAeEuTHlfGzAZB/EayW/+ipYIqVcEB+wkdJ6HiKZS1ZEZSNdsOwIQ2xuGElr0cm513MOwHj90BP4mtnu7B0UYsaNzd0b9e957n34KJacYW4cgzP/jt0iRw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739770681; c=relaxed/simple; bh=rCzCYxlLVkTl3XI+BB3+bFMYsq3g9fdk/lOCxvptPSc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=lZLygTIa2xbWoVDFAMs9F1OorqzRS+TRgddYTYBwdFzdgloB3Tq5FpggKgMOzpq8LCLbDabN35sOgdgIsiBh+em63e8hE0vnkVLIaTfCa2/iml81bBVYcxZILHOiQKkVaXrw7s387tFY39sghj3e32tsxK9DoDl0d5gYItRYpIs= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com; spf=pass smtp.mailfrom=collabora.com; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b=oM1pziku; arc=none smtp.client-ip=148.251.105.195 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=collabora.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b="oM1pziku" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1739770677; bh=rCzCYxlLVkTl3XI+BB3+bFMYsq3g9fdk/lOCxvptPSc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oM1pzikumaW+7OWkYMi36tm4rhEDEIZid9o0TmpqVFa2n52o/Dq+ATukew7JwMSEc bqKgWD6gSPxz4swGU81EP8dYZ4qhyOvhkaF1yHoomG22TNLpaeS+qv1kynGxbxGQeZ Z7NQbQiZNU0OEep9TLX1mQYx7M/rv8iQZzVpgvkyz/dPz3C4ooMFOO3FSxb0TxY4dg lHFjJAxReuG/R1g6PuGbMqWCazsOKiugRwDQ37/gH+pLdLd6aGxR/dOr+8fZlXqpkm om8IRiA30j/M0SfU0zzFSOafWhgfFYKqjf+b9dDEy4fuKcE5UYWdGcRdT/eh5UYj8G 10y07cItwMczQ== Received: from localhost.localdomain (unknown [171.76.83.32]) (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 188EC17E0B59; Mon, 17 Feb 2025 06:37:51 +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 v3 3/3] drm/ci: enable lockdep detection Date: Mon, 17 Feb 2025 11:07:12 +0530 Message-ID: <20250217053719.442644-4-vignesh.raman@collabora.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250217053719.442644-1-vignesh.raman@collabora.com> References: <20250217053719.442644-1-vignesh.raman@collabora.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" We have enabled PROVE_LOCKING (which enables LOCKDEP) in drm-ci. This will output warnings when kernel locking errors are encountered and will continue executing tests. To detect if lockdep has been triggered, check the debug_locks value in /proc/lockdep_stats after the tests have run. When debug_locks is 0, it indicates that lockdep has detected issues and turned itself off. Check this value, and if lockdep is detected, exit with an error and configure it as a warning in GitLab CI. GitLab CI ignores exit codes other than 1 by default. Pass the correct exit code with variable FF_USE_NEW_BASH_EVAL_STRATEGY set to true or exit on failure. Also update the documentation. Signed-off-by: Vignesh Raman Acked-by: Helen Koike Reviewed-by: Daniel Stone --- v2: - Lockdep failures are reported as pipeline warnings, and the documentation is updated. v3: - Add a common job for exit code handling and extend it in other jobs. --- Documentation/gpu/automated_testing.rst | 4 ++++ drivers/gpu/drm/ci/igt_runner.sh | 11 +++++++++++ drivers/gpu/drm/ci/test.yml | 17 ++++++++++++++--- 3 files changed, 29 insertions(+), 3 deletions(-) diff --git a/Documentation/gpu/automated_testing.rst b/Documentation/gpu/au= tomated_testing.rst index 6d7c6086034d..62aa3ede02a5 100644 --- a/Documentation/gpu/automated_testing.rst +++ b/Documentation/gpu/automated_testing.rst @@ -115,6 +115,10 @@ created (eg. https://gitlab.freedesktop.org/janedoe/li= nux/-/pipelines) 5. The various jobs will be run and when the pipeline is finished, all jobs should be green unless a regression has been found. =20 +6. Warnings in the pipeline indicate that lockdep +(see Documentation/locking/lockdep-design.rst) issues have been detected +during the tests. + =20 How to update test expectations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D diff --git a/drivers/gpu/drm/ci/igt_runner.sh b/drivers/gpu/drm/ci/igt_runn= er.sh index 68b042e43b7f..2a0599f12c58 100755 --- a/drivers/gpu/drm/ci/igt_runner.sh +++ b/drivers/gpu/drm/ci/igt_runner.sh @@ -85,5 +85,16 @@ deqp-runner junit \ --limit 50 \ --template "See $ARTIFACTS_BASE_URL/results/{{testcase}}.xml" =20 +# Check if /proc/lockdep_stats exists +if [ -f /proc/lockdep_stats ]; then + # If debug_locks is 0, it indicates lockdep is detected and it turns i= tself off. + debug_locks=3D$(grep 'debug_locks:' /proc/lockdep_stats | awk '{print = $2}') + if [ "$debug_locks" -eq 0 ] && [ "$ret" -eq 0 ]; then + echo "Warning: LOCKDEP issue detected. Please check dmesg logs for= more information." + cat /proc/lockdep_stats + ret=3D101 + fi +fi + cd $oldpath exit $ret diff --git a/drivers/gpu/drm/ci/test.yml b/drivers/gpu/drm/ci/test.yml index 0eab020a33b9..dbc4ff50d8ff 100644 --- a/drivers/gpu/drm/ci/test.yml +++ b/drivers/gpu/drm/ci/test.yml @@ -1,6 +1,14 @@ +.allow_failure_lockdep: + variables: + FF_USE_NEW_BASH_EVAL_STRATEGY: 'true' + allow_failure: + exit_codes: + - 101 + .lava-test: extends: - .container+build-rules + - .allow_failure_lockdep timeout: "1h30m" rules: - !reference [.scheduled_pipeline-rules, rules] @@ -69,6 +77,7 @@ extends: - .baremetal-test-arm64 - .use-debian/baremetal_arm64_test + - .allow_failure_lockdep timeout: "1h30m" rules: - !reference [.scheduled_pipeline-rules, rules] @@ -91,6 +100,8 @@ =20 .software-driver: stage: software-driver + extends: + - .allow_failure_lockdep timeout: "1h30m" rules: - !reference [.scheduled_pipeline-rules, rules] @@ -153,7 +164,7 @@ msm:apq8016: BM_KERNEL_EXTRA_ARGS: clk_ignore_unused RUNNER_TAG: google-freedreno-db410c script: - - ./install/bare-metal/fastboot.sh + - ./install/bare-metal/fastboot.sh || exit $? =20 msm:apq8096: extends: @@ -167,7 +178,7 @@ msm:apq8096: GPU_VERSION: apq8096 RUNNER_TAG: google-freedreno-db820c script: - - ./install/bare-metal/fastboot.sh + - ./install/bare-metal/fastboot.sh || exit $? =20 msm:sdm845: extends: @@ -181,7 +192,7 @@ msm:sdm845: GPU_VERSION: sdm845 RUNNER_TAG: google-freedreno-cheza script: - - ./install/bare-metal/cros-servo.sh + - ./install/bare-metal/cros-servo.sh || exit $? =20 msm:sm8350-hdk: extends: --=20 2.43.0