From patchwork Thu Feb 9 19:32:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janusz Krzysztofik X-Patchwork-Id: 13135005 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 D7B43C61DA4 for ; Thu, 9 Feb 2023 19:32:56 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2888410EB84; Thu, 9 Feb 2023 19:32:56 +0000 (UTC) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id EA2AF10E02B; Thu, 9 Feb 2023 19:32:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675971173; x=1707507173; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Ek85u9Nu1aVyKiXDb4lukVu/o4Raqo5SxJFlNZ2w6jE=; b=HjrbeaI7qHF/u4NU5SQ9I6gk9XXxflpWBiYfF52BLVHenZvh5PP0sG1J 7XZGcJf4SJ7eRpl/kHFb413k43/aiw5/zTB/VdeyZ8HGwXJm5UEkkn+od 5q/jSkd1sIy4Bm3k5LasNqDcdA4af1SMiZIlbECE2mFKX9JUpSEIh8YNG Kv2m2hGgSopV9nqT3X6AG3pRIYcqrvtgNg9jNEfVCI2krqWJaYsET6fnW TpFN0LK6VjTwXQpEMZDRfL0lKZCukIGC3wo6nEMyPaaVVhNYpIvd+He9p omLR0ni+BbkG+05Q+VNuhwT8ZXKiYX7Ml1Cct6+hNiKC2l/9uj4LJVz7j w==; X-IronPort-AV: E=McAfee;i="6500,9779,10616"; a="416455669" X-IronPort-AV: E=Sophos;i="5.97,284,1669104000"; d="scan'208";a="416455669" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2023 11:32:53 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10616"; a="661139919" X-IronPort-AV: E=Sophos;i="5.97,284,1669104000"; d="scan'208";a="661139919" Received: from jkrzyszt-mobl1.ger.corp.intel.com ([10.213.17.20]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2023 11:32:50 -0800 From: Janusz Krzysztofik To: igt-dev@lists.freedesktop.org Date: Thu, 9 Feb 2023 20:32:31 +0100 Message-Id: <20230209193231.57538-1-janusz.krzysztofik@linux.intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH i-g-t] tests/i915_suspend: Free device list after *-without-i915 subtests X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: intel-gfx@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" If any of *-without-i915 subtests fails or skips for any reason, it may leave the i915 module unloaded while keeping our device list populated with initially collected data. In a follow up igt_fixture section we then try to reopen the device. If the test has been executed with a device filter specified, an attempt to open the device finds a matching entry that belongs to the no longer existing device in that initially collected device list, fails to stat() it, concludes that's because of the device having been already open, and returns an error. Fix this potentially confusing test result by freeing the potentially outdated device list before continuing with drm_open_driver(). While being at it, add a comment that explains why we call igt_device_scan() from __igt_device_card_match() but don't force device rescan, and emit a debug message if we fail in _is_already_opened() on unsuccessful device stat(). Subtest basic-s3-without-i915: FAIL (9.572s) (i915_suspend:9050) drmtest-WARNING: card maching filter 0 is already opened (i915_suspend:9050) drmtest-CRITICAL: Test abort in function drm_open_driver, file ../lib/drmtest.c:639: (i915_suspend:9050) drmtest-CRITICAL: abort condition: fd < 0 (i915_suspend:9050) drmtest-CRITICAL: Last errno: 2, No such file or directory (i915_suspend:9050) drmtest-CRITICAL: No known gpu found for chipset flags 0x1 (intel) Test i915_suspend failed. **** DEBUG **** (i915_suspend:9050) drmtest-DEBUG: Looking for devices to open using filter 0: pci:vendor=intel,device=dg2 (i915_suspend:9050) drmtest-DEBUG: Filter matched /dev/dri/card0 | /dev/dri/renderD128 (i915_suspend:9050) drmtest-WARNING: card maching filter 0 is already opened (i915_suspend:9050) drmtest-CRITICAL: Test abort in function drm_open_driver, file ../lib/drmtest.c:639: (i915_suspend:9050) drmtest-CRITICAL: abort condition: fd < 0 (i915_suspend:9050) drmtest-CRITICAL: Last errno: 2, No such file or directory (i915_suspend:9050) drmtest-CRITICAL: No known gpu found for chipset flags 0x1 (intel) (i915_suspend:9050) igt_core-INFO: Stack trace: (i915_suspend:9050) igt_core-INFO: #0 ../lib/igt_core.c:2066 __igt_abort() (i915_suspend:9050) igt_core-INFO: #1 ../lib/drmtest.c:573 drm_open_driver() (i915_suspend:9050) igt_core-INFO: #2 ../tests/i915/i915_suspend.c:258 __igt_unique____real_main245() (i915_suspend:9050) igt_core-INFO: #3 ../tests/i915/i915_suspend.c:245 main() (i915_suspend:9050) igt_core-INFO: #4 ../sysdeps/nptl/libc_start_call_main.h:58 __libc_start_call_main() (i915_suspend:9050) igt_core-INFO: #5 ../csu/libc-start.c:128 __libc_start_main@@GLIBC_2.34() (i915_suspend:9050) igt_core-INFO: #6 [_start+0x2a] **** END **** Fixes: f7aff600ab16 ("tests/i915/i915_suspend: Disable d3cold_allowed for basic-s2idle-without-i915") Signed-off-by: Janusz Krzysztofik Cc: Riana Tauro Reviewed-by: Kamil Konieczny --- lib/drmtest.c | 2 +- lib/igt_device_scan.c | 4 ++++ tests/i915/i915_suspend.c | 10 +++++++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/lib/drmtest.c b/lib/drmtest.c index 16e80bdfcf..8e2d1ac50b 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -260,7 +260,7 @@ static bool _is_already_opened(const char *path, int as_idx) * we cannot even stat the device, so it's of no use - let's claim it's * already opened */ - if (stat(path, &new) != 0) + if (igt_debug_on(stat(path, &new) != 0)) return true; for (int i = 0; i < as_idx; ++i) { diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index 8b767eed20..ae69ed09f1 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -1918,6 +1918,10 @@ static bool __igt_device_card_match(const char *filter, return false; memset(card, 0, sizeof(*card)); + /* + * Scan devices in case the user hasn't yet, + * but leave a decision on forced rescan on the user side. + */ igt_devices_scan(false); if (igt_device_filter_apply(filter) == false) diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index 815f1c8a2c..c68110476e 100644 --- a/tests/i915/i915_suspend.c +++ b/tests/i915/i915_suspend.c @@ -253,8 +253,16 @@ igt_main igt_subtest("basic-s3-without-i915") test_suspend_without_i915(SUSPEND_STATE_S3); - igt_fixture + igt_fixture { + /* + * Since above tests may fail leaving the i915 module unloaded, + * force refresh of device list before opening an i915 device + * by cleaning up the current device list, otherwise we can fail + * if we have been called with a device filter specified. + */ + igt_devices_free(); fd = drm_open_driver(DRIVER_INTEL); + } igt_subtest("fence-restore-tiled2untiled") { gem_require_mappable_ggtt(fd);