* [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl
@ 2023-08-09 8:33 Jouni Högander
2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Jouni Högander @ 2023-08-09 8:33 UTC (permalink / raw)
To: igt-dev
This patchset is adding new testcases for dirtyfb ioctl with features
like FBC, PSR and DRRS.
Also some helpers are split from kms_frontbuffer_tracking to be shared
with a new testcases.
v7:
- Split kms_frontbuffer_tracking changes into separate patch
- Xe spinner changes already merged
v6:
- Perform igt_display_reset in prepare
v5:
- Modifications to support Xe as well
v4:
- Document library interface functions
- Check connector type is eDP when PSR is tested
v3:
- Use spinner
- Drop allocating big frambuffers
v2:
- Move fbc and drrs into libigt
- Change testcase license comment
- Move disable_features and do not apply for FEATURE_DEFAULT
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Jouni Högander (4):
lib/i915/fbc: Add fbc helpers
lib/i915/drrs: Add drrs helpers
tests/i915/kms_frontbuffer_tracking: Utilize added fbc and drrs
helpers
tests/kms_dirtyfb: Add new test for dirtyfb ioctl
lib/i915/intel_drrs.c | 133 +++++++++++
lib/i915/intel_drrs.h | 17 ++
lib/i915/intel_fbc.c | 96 ++++++++
lib/i915/intel_fbc.h | 18 ++
lib/meson.build | 2 +
tests/i915/kms_dirtyfb.c | 303 ++++++++++++++++++++++++++
tests/i915/kms_frontbuffer_tracking.c | 140 ++----------
tests/meson.build | 1 +
8 files changed, 587 insertions(+), 123 deletions(-)
create mode 100644 lib/i915/intel_drrs.c
create mode 100644 lib/i915/intel_drrs.h
create mode 100644 lib/i915/intel_fbc.c
create mode 100644 lib/i915/intel_fbc.h
create mode 100644 tests/i915/kms_dirtyfb.c
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t v7 1/4] lib/i915/fbc: Add fbc helpers 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander @ 2023-08-09 8:33 ` Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 2/4] lib/i915/drrs: Add drrs helpers Jouni Högander ` (6 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jouni Högander @ 2023-08-09 8:33 UTC (permalink / raw) To: igt-dev Add some fbc helpes into a library to be used by kms_frontbuffer_tracking and other tests as well. v4: Split testcase modification into a separate patch v3: Add library function descriptions v2: Moved into libigt instead of static kms_fbc_helper Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- lib/i915/intel_fbc.c | 96 ++++++++++++++++++++++++++++++++++++++++++++ lib/i915/intel_fbc.h | 18 +++++++++ lib/meson.build | 1 + 3 files changed, 115 insertions(+) create mode 100644 lib/i915/intel_fbc.c create mode 100644 lib/i915/intel_fbc.h diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c new file mode 100644 index 000000000..a885b2f97 --- /dev/null +++ b/lib/i915/intel_fbc.c @@ -0,0 +1,96 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#include <fcntl.h> + +#include "igt.h" + +#include "intel_fbc.h" + +#define FBC_STATUS_BUF_LEN 128 + +/** + * intel_fbc_supported_on_chipset: + * @device: fd of the device + * @pipe: Display pipe + * + * Check if FBC is supported by chipset on given pipe. + * + * Returns: + * true if FBC is supported and false otherwise. + */ +bool intel_fbc_supported_on_chipset(int device, enum pipe pipe) +{ + char buf[FBC_STATUS_BUF_LEN]; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf)); + close(dir); + if (*buf == '\0') + return false; + + return !strstr(buf, "FBC unsupported on this chipset\n"); +} + +static bool _intel_fbc_is_enabled(int device, enum pipe pipe, int log_level, char *last_fbc_buf) +{ + char buf[FBC_STATUS_BUF_LEN]; + bool print = true; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf)); + close(dir); + if (log_level != IGT_LOG_DEBUG) + last_fbc_buf[0] = '\0'; + else if (strcmp(last_fbc_buf, buf)) + strcpy(last_fbc_buf, buf); + else + print = false; + + if (print) + igt_log(IGT_LOG_DOMAIN, log_level, "fbc_is_enabled():\n%s\n", buf); + + return strstr(buf, "FBC enabled\n"); +} + +/** + * intel_fbc_is_enabled: + * @device: fd of the device + * @pipe: Display pipe + * @log_level: Wanted loglevel + * + * Check if FBC is enabled on given pipe. Loglevel can be used to + * control at which loglevel current state is printed out. + * + * Returns: + * true if FBC is enabled. + */ +bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level) +{ + char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'}; + + return _intel_fbc_is_enabled(device, pipe, log_level, last_fbc_buf); +} + +/** + * intel_fbc_wait_until_enabled: + * @device: fd of the device + * @pipe: Display pipe + * + * Wait until fbc is enabled. Used timeout is constant 2 seconds. + * + * Returns: + * true if FBC got enabled. + */ +bool intel_fbc_wait_until_enabled(int device, enum pipe pipe) +{ + char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'}; + + return igt_wait(_intel_fbc_is_enabled(device, pipe, IGT_LOG_DEBUG, last_fbc_buf), 2000, 1); +} diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h new file mode 100644 index 000000000..995dc7f1e --- /dev/null +++ b/lib/i915/intel_fbc.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2022 Intel Corporation + */ + +#ifndef INTEL_FBC_H +#define INTEL_FBC_H + +#include "igt.h" + +#define intel_fbc_enable(device) igt_set_module_param_int(device, "enable_fbc", 1) +#define intel_fbc_disable(device) igt_set_module_param_int(device, "enable_fbc", 0) + +bool intel_fbc_supported_on_chipset(int device, enum pipe pipe); +bool intel_fbc_wait_until_enabled(int device, enum pipe pipe); +bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level); + +#endif diff --git a/lib/meson.build b/lib/meson.build index ce11c0715..4b5c2f276 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -12,6 +12,7 @@ lib_sources = [ 'i915/gem_mman.c', 'i915/gem_vm.c', 'i915/intel_decode.c', + 'i915/intel_fbc.c', 'i915/intel_memory_region.c', 'i915/i915_crc.c', 'igt_collection.c', -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v7 2/4] lib/i915/drrs: Add drrs helpers 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander @ 2023-08-09 8:33 ` Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and " Jouni Högander ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jouni Högander @ 2023-08-09 8:33 UTC (permalink / raw) To: igt-dev Add drrs handling into a library to be used by kms_frontbuffer_tracking and other tests as well. v4: Split testcase modification into a separate patch v3: Add library function descriptions v2: Moved into libigt instead of static kms_drrs_helper Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- lib/i915/intel_drrs.c | 133 ++++++++++++++++++++++++++++++++++++++++++ lib/i915/intel_drrs.h | 17 ++++++ lib/meson.build | 1 + 3 files changed, 151 insertions(+) create mode 100644 lib/i915/intel_drrs.c create mode 100644 lib/i915/intel_drrs.h diff --git a/lib/i915/intel_drrs.c b/lib/i915/intel_drrs.c new file mode 100644 index 000000000..2f83e1394 --- /dev/null +++ b/lib/i915/intel_drrs.c @@ -0,0 +1,133 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#include <fcntl.h> + +#include "igt.h" +#include "igt_sysfs.h" + +#include "intel_drrs.h" + +/** + * intel_is_drrs_supported: + * @device: fd of the device + * @pipe: Display pipe + * + * Check if DRRS is supported on given pipe. + * + * Returns: + * true if DRRS is supported and false otherwise. + */ +bool intel_is_drrs_supported(int device, enum pipe pipe) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf)); + close(dir); + if (*buf == '\0') + return false; + + return !strcasestr(buf, "DRRS enabled:"); +} + +/** + * intel_output_has_drrs + * @device: fd of the device + * @output: Display output + * + * Check if drrs used on given output. + * + * Returns: + * true if DRRS is used and false otherwise. + */ +bool intel_output_has_drrs(int device, igt_output_t *output) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_connector_dir(device, output->name, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_drrs_type", buf, sizeof(buf)); + close(dir); + + return strstr(buf, "seamless"); +} + +static void drrs_set(int device, enum pipe pipe, unsigned int val) +{ + char buf[2]; + int dir, ret; + + igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val); + snprintf(buf, sizeof(buf), "%d", val); + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + ret = igt_sysfs_write(dir, "i915_drrs_ctl", buf, sizeof(buf) - 1); + + /* + * drrs_enable() is called on DRRS capable platform only, + * whereas drrs_disable() is called on all platforms. + * So handle the failure of debugfs_write only for drrs_enable(). + */ + if (val) + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); +} + +/** + * intel_drrs_enable: + * @device: fd of the device + * @pipe: Display pipe + * + * Enable DRRS on given pipe + * + * Returns: + * none + */ +void intel_drrs_enable(int device, enum pipe pipe) +{ + drrs_set(device, pipe, 1); +} + +/** + * intel_drrs_disable: + * @device: fd of the device + * @pipe: Display pipe + * + * Disable DRRS on given pipe + * + * Returns: + * none + */ +void intel_drrs_disable(int device, enum pipe pipe) +{ + drrs_set(device, pipe, 0); +} + +/** + * intel_is_drrs_inactive: + * @device: fd of the device + * @pipe: Display pipe + * + * Check if drrs is inactive on given pipe + * + * Returns: + * true if inactive and false otherwise + */ +bool intel_is_drrs_inactive(int device, enum pipe pipe) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf)); + close(dir); + + return strstr(buf, "DRRS active: no"); +} diff --git a/lib/i915/intel_drrs.h b/lib/i915/intel_drrs.h new file mode 100644 index 000000000..d4d27a5f9 --- /dev/null +++ b/lib/i915/intel_drrs.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2022 Intel Corporation + */ + +#ifndef INTEL_DRRS_H +#define INTEL_DRRS_H + +#include "igt.h" + +bool intel_is_drrs_supported(int device, enum pipe pipe); +bool intel_output_has_drrs(int device, igt_output_t *output); +void intel_drrs_enable(int device, enum pipe pipe); +void intel_drrs_disable(int device, enum pipe pipe); +bool intel_is_drrs_inactive(int device, enum pipe pipe); + +#endif diff --git a/lib/meson.build b/lib/meson.build index 4b5c2f276..819ae90b2 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -12,6 +12,7 @@ lib_sources = [ 'i915/gem_mman.c', 'i915/gem_vm.c', 'i915/intel_decode.c', + 'i915/intel_drrs.c', 'i915/intel_fbc.c', 'i915/intel_memory_region.c', 'i915/i915_crc.c', -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v7 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and drrs helpers 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 2/4] lib/i915/drrs: Add drrs helpers Jouni Högander @ 2023-08-09 8:33 ` Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander ` (4 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jouni Högander @ 2023-08-09 8:33 UTC (permalink / raw) To: igt-dev We have now helper functions for fbc and drrs in igt library. Use these instead of own implementations. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- tests/i915/kms_frontbuffer_tracking.c | 140 ++++---------------------- 1 file changed, 17 insertions(+), 123 deletions(-) diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c index b2183b08e..9c58beaae 100644 --- a/tests/i915/kms_frontbuffer_tracking.c +++ b/tests/i915/kms_frontbuffer_tracking.c @@ -32,6 +32,8 @@ #include "i915/gem.h" #include "i915/gem_create.h" +#include "i915/intel_drrs.h" +#include "i915/intel_fbc.h" #include "igt.h" #include "igt_sysfs.h" #include "igt_psr.h" @@ -745,75 +747,10 @@ static void __debugfs_read_crtc(const char *param, char *buf, int len) close(dir); } -static int __debugfs_write_crtc(const char *param, const char *buf, int len) -{ - int dir, ret; - enum pipe pipe; - - pipe = prim_mode_params.pipe; - dir = igt_debugfs_pipe_dir(drm.fd, pipe, O_DIRECTORY); - igt_require_fd(dir); - ret = igt_sysfs_write(dir, param, buf, len - 1); - close(dir); - - return ret; -} - -static void __debugfs_read_connector(const char *param, char *buf, int len) -{ - int dir; - igt_output_t *output; - - output = prim_mode_params.output; - dir = igt_debugfs_connector_dir(drm.fd, output->name, O_DIRECTORY); - igt_require_fd(dir); - igt_debugfs_simple_read(dir, param, buf, len); - close(dir); -} - #define debugfs_read_crtc(p, arr) __debugfs_read_crtc(p, arr, sizeof(arr)) #define debugfs_write_crtc(p, arr) __debugfs_write_crtc(p, arr, sizeof(arr)) #define debugfs_read_connector(p, arr) __debugfs_read_connector(p, arr, sizeof(arr)) -static char last_fbc_buf[128]; - -static bool fbc_is_enabled(int lvl) -{ - char buf[128]; - bool print = true; - - debugfs_read_crtc("i915_fbc_status", buf); - if (lvl != IGT_LOG_DEBUG) - last_fbc_buf[0] = '\0'; - else if (strcmp(last_fbc_buf, buf)) - strcpy(last_fbc_buf, buf); - else - print = false; - - if (print) - igt_log(IGT_LOG_DOMAIN, lvl, "fbc_is_enabled()?\n%s", buf); - - return strstr(buf, "FBC enabled\n"); -} - -static void drrs_set(unsigned int val) -{ - char buf[2]; - int ret; - - igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val); - snprintf(buf, sizeof(buf), "%d", val); - ret = debugfs_write_crtc("i915_drrs_ctl", buf); - - /* - * drrs_enable() is called on DRRS capable platform only, - * whereas drrs_disable() is called on all platforms. - * So handle the failure of debugfs_write only for drrs_enable(). - */ - if (val) - igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); -} - static bool is_drrs_high(void) { char buf[MAX_DRRS_STATUS_BUF_LEN]; @@ -830,22 +767,6 @@ static bool is_drrs_low(void) return strstr(buf, "DRRS refresh rate: low"); } -static bool is_drrs_supported(void) -{ - char buf[MAX_DRRS_STATUS_BUF_LEN]; - - debugfs_read_crtc("i915_drrs_status", buf); - return strcasestr(buf, "DRRS enabled:"); -} - -static bool is_drrs_inactive(void) -{ - char buf[MAX_DRRS_STATUS_BUF_LEN]; - - debugfs_read_crtc("i915_drrs_status", buf); - return strstr(buf, "DRRS active: no"); -} - static void drrs_print_status(void) { char buf[MAX_DRRS_STATUS_BUF_LEN]; @@ -854,14 +775,6 @@ static void drrs_print_status(void) igt_info("DRRS STATUS :\n%s\n", buf); } -static bool output_has_drrs(void) -{ - char buf[MAX_DRRS_STATUS_BUF_LEN]; - - debugfs_read_connector("i915_drrs_type", buf); - return strstr(buf, "seamless"); -} - static struct timespec fbc_get_last_action(void) { struct timespec ret = { 0, 0 }; @@ -970,23 +883,11 @@ static bool fbc_mode_too_large(void) return strstr(buf, "FBC disabled: mode too large for compression\n"); } -static bool fbc_wait_until_enabled(void) -{ - last_fbc_buf[0] = '\0'; - - return igt_wait(fbc_is_enabled(IGT_LOG_DEBUG), 2000, 1); -} - static bool drrs_wait_until_rr_switch_to_low(void) { return igt_wait(is_drrs_low(), 5000, 1); } -#define fbc_enable() igt_set_module_param_int(drm.fd, "enable_fbc", 1) -#define fbc_disable() igt_set_module_param_int(drm.fd, "enable_fbc", 0) -#define drrs_enable() drrs_set(1) -#define drrs_disable() drrs_set(0) - static struct rect pat1_get_rect(struct fb_region *fb, int r) { struct rect rect; @@ -1188,8 +1089,9 @@ static bool disable_features(const struct test_mode *t) if (t->feature == FEATURE_DEFAULT) return false; - fbc_disable(); - drrs_disable(); + intel_fbc_disable(drm.fd); + intel_drrs_disable(drm.fd, prim_mode_params.pipe); + return psr.can_test ? psr_disable(drm.fd, drm.debugfs) : false; } @@ -1431,20 +1333,9 @@ static void teardown_crcs(void) igt_pipe_crc_free(pipe_crc); } -static bool fbc_supported_on_chipset(void) -{ - char buf[128]; - - debugfs_read_crtc("i915_fbc_status", buf); - if (*buf == '\0') - return false; - - return !strstr(buf, "FBC unsupported on this chipset\n"); -} - static void setup_fbc(void) { - if (!fbc_supported_on_chipset()) { + if (!intel_fbc_supported_on_chipset(drm.fd, prim_mode_params.pipe)) { igt_info("Can't test FBC: not supported on this chipset\n"); return; } @@ -1479,12 +1370,12 @@ static void teardown_psr(void) static void setup_drrs(void) { - if (!output_has_drrs()) { + if (!intel_output_has_drrs(drm.fd, prim_mode_params.output)) { igt_info("Can't test DRRS: no usable screen.\n"); return; } - if (!is_drrs_supported()) { + if (!intel_is_drrs_supported(drm.fd, prim_mode_params.pipe)) { igt_info("Can't test DRRS: Not supported.\n"); return; } @@ -1642,7 +1533,7 @@ static void do_status_assertions(int flags) igt_assert_f(false, "DRRS LOW\n"); } } else if (flags & ASSERT_DRRS_INACTIVE) { - if (!is_drrs_inactive()) { + if (!intel_is_drrs_inactive(drm.fd, prim_mode_params.pipe)) { drrs_print_status(); igt_assert_f(false, "DRRS INACTIVE\n"); } @@ -1652,15 +1543,18 @@ static void do_status_assertions(int flags) igt_require(!fbc_not_enough_stolen()); igt_require(!fbc_stride_not_supported()); igt_require(!fbc_mode_too_large()); - if (!fbc_wait_until_enabled()) { - igt_assert_f(fbc_is_enabled(IGT_LOG_WARN), + if (!intel_fbc_wait_until_enabled(drm.fd, prim_mode_params.pipe)) { + igt_assert_f(intel_fbc_is_enabled(drm.fd, + prim_mode_params.pipe, + IGT_LOG_WARN), "FBC disabled\n"); } if (opt.fbc_check_compression) igt_assert(fbc_wait_for_compression()); } else if (flags & ASSERT_FBC_DISABLED) { - igt_assert(!fbc_wait_until_enabled()); + igt_assert(!intel_fbc_wait_until_enabled(drm.fd, + prim_mode_params.pipe)); } if (flags & ASSERT_PSR_ENABLED) @@ -1800,11 +1694,11 @@ static bool enable_features_for_test(const struct test_mode *t) return false; if (t->feature & FEATURE_FBC) - fbc_enable(); + intel_fbc_enable(drm.fd); if (t->feature & FEATURE_PSR) ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1); if (t->feature & FEATURE_DRRS) - drrs_enable(); + intel_drrs_enable(drm.fd, prim_mode_params.pipe); return ret; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v7 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (2 preceding siblings ...) 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and " Jouni Högander @ 2023-08-09 8:33 ` Jouni Högander 2023-08-18 9:34 ` Kamil Konieczny 2023-08-09 9:01 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev9) Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: Jouni Högander @ 2023-08-09 8:33 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Add new test to validate dirtyfb ioctl is working properly with GPU frontbuffer rendering. Create big framebuffer and use only lower right corner for the plane. Initiate GPU drawing for a rectangle over the whole framebuffer and perform dirtyfb ioctl. Then wait for the drawing to complete and collect crc and check that it matches with expected. v6: - Perform igt_display_reset in prepare v5: - Modifiations to support Xe as well v4: - Check connector type when PSR is tested v3: - Use spinner - Drop allocating big frambuffers v2: - Change license comment - Move disable_features and do not apply for FEATURE_DEFAULT Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/i915/kms_dirtyfb.c | 303 +++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 304 insertions(+) create mode 100644 tests/i915/kms_dirtyfb.c diff --git a/tests/i915/kms_dirtyfb.c b/tests/i915/kms_dirtyfb.c new file mode 100644 index 000000000..4e49574a2 --- /dev/null +++ b/tests/i915/kms_dirtyfb.c @@ -0,0 +1,303 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#include <sys/types.h> + +#include "igt.h" +#include "igt_psr.h" + +#include "i915/intel_drrs.h" +#include "i915/intel_fbc.h" + +#include "xe/xe_query.h" + +IGT_TEST_DESCRIPTION("Test the DIRTYFB ioctl is working properly with " + "its related features: FBC, PSR and DRRS"); + +#ifndef PAGE_ALIGN +#ifndef PAGE_SIZE +#define PAGE_SIZE 4096 +#endif +#define PAGE_ALIGN(x) ALIGN(x, PAGE_SIZE) +#endif + +typedef struct { + int drm_fd; + int debugfs_fd; + igt_display_t display; + drmModeModeInfo *mode; + igt_output_t *output; + igt_pipe_crc_t *pipe_crc; + enum pipe pipe; + + struct igt_fb fbs[3]; + + igt_crc_t ref_crc; + + struct buf_ops *bops; + enum { + FEATURE_NONE = 0, + FEATURE_PSR = 1, + FEATURE_FBC = 2, + FEATURE_DRRS = 4, + FEATURE_COUNT = 8, + FEATURE_DEFAULT = 8, + } feature; +} data_t; + +static const char *feature_str(int feature) +{ + switch (feature) { + case FEATURE_NONE: + return "nop"; + case FEATURE_FBC: + return "fbc"; + case FEATURE_PSR: + return "psr"; + case FEATURE_DRRS: + return "drrs"; + case FEATURE_DEFAULT: + return "default"; + default: + igt_assert(false); + } +} + +static bool check_support(data_t *data) +{ + switch (data->feature) { + case FEATURE_NONE: + return true; + case FEATURE_FBC: + return intel_fbc_supported_on_chipset(data->drm_fd, data->pipe); + case FEATURE_PSR: + if (data->output->config.connector->connector_type != + DRM_MODE_CONNECTOR_eDP) + return false; + return psr_sink_support(data->drm_fd, data->debugfs_fd, + PSR_MODE_1); + case FEATURE_DRRS: + return intel_is_drrs_supported(data->drm_fd, data->pipe) && + intel_output_has_drrs(data->drm_fd, data->output); + case FEATURE_DEFAULT: + return true; + default: + igt_assert(false); + } +} + +static void enable_feature(data_t *data) +{ + switch (data->feature) { + case FEATURE_NONE: + break; + case FEATURE_FBC: + intel_fbc_enable(data->drm_fd); + break; + case FEATURE_PSR: + psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1); + break; + case FEATURE_DRRS: + intel_drrs_enable(data->drm_fd, data->pipe); + break; + case FEATURE_DEFAULT: + break; + default: + igt_assert(false); + } +} + +static void check_feature(data_t *data) +{ + switch (data->feature) { + case FEATURE_NONE: + break; + case FEATURE_FBC: + igt_assert_f(intel_fbc_wait_until_enabled(data->drm_fd, + data->pipe), + "FBC still disabled"); + break; + case FEATURE_PSR: + igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1), + "PSR still disabled\n"); + break; + case FEATURE_DRRS: + igt_assert_f(intel_is_drrs_inactive(data->drm_fd, data->pipe), + "DRRS INACTIVE\n"); + break; + case FEATURE_DEFAULT: + break; + default: + igt_assert(false); + } +} + +static void disable_features(data_t *data) +{ + intel_fbc_disable(data->drm_fd); + psr_disable(data->drm_fd, data->debugfs_fd); + intel_drrs_disable(data->drm_fd, data->pipe); +} + +static void prepare(data_t *data) +{ + igt_plane_t *primary; + + igt_skip_on(!check_support(data)); + + igt_display_reset(&data->display); + + data->mode = igt_output_get_mode(data->output); + + igt_output_set_pipe(data->output, data->pipe); + + data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, + IGT_PIPE_CRC_SOURCE_AUTO); + + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, + &data->fbs[0]); + + igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[0], + IGT_DRAW_RENDER, 0, 0, data->fbs[0].width, + data->fbs[0].height, 0xFF); + + primary = igt_output_get_plane_type(data->output, + DRM_PLANE_TYPE_PRIMARY); + + igt_plane_set_fb(primary, &data->fbs[0]); + + if (data->feature != FEATURE_DEFAULT) + disable_features(data); + + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc); + + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, + &data->fbs[1]); + igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[1], + IGT_DRAW_RENDER, 0, 0, data->fbs[1].width, + data->fbs[1].height, 0xFF); + + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, + &data->fbs[2]); + + igt_plane_set_fb(primary, &data->fbs[2]); + + enable_feature(data); + + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + check_feature(data); +} + +static void cleanup(data_t *data) +{ + igt_remove_fb(data->drm_fd, &data->fbs[0]); + igt_remove_fb(data->drm_fd, &data->fbs[1]); + igt_remove_fb(data->drm_fd, &data->fbs[2]); + + igt_pipe_crc_free(data->pipe_crc); + + igt_output_set_pipe(data->output, PIPE_NONE); + + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void run_test(data_t *data) +{ + igt_crc_t crc; + struct intel_buf *src, *dst; + struct intel_bb *ibb; + igt_spin_t *spin; + uint32_t devid = intel_get_drm_devid(data->drm_fd); + igt_render_copyfunc_t rendercopy = igt_get_render_copyfunc(devid); + int r; + + igt_skip_on(!rendercopy); + + src = intel_buf_create_full(data->bops, data->fbs[1].gem_handle, + data->fbs[1].width, + data->fbs[1].height, + igt_drm_format_to_bpp(data->fbs[1].drm_format), + 0, + igt_fb_mod_to_tiling(data->fbs[1].modifier), + 0, 0, 0, is_xe_device(data->drm_fd) ? + system_memory(data->drm_fd) : 0); + dst = intel_buf_create_full(data->bops, data->fbs[2].gem_handle, + data->fbs[2].width, + data->fbs[2].height, + igt_drm_format_to_bpp(data->fbs[2].drm_format), + 0, igt_fb_mod_to_tiling(data->fbs[2].modifier), + 0, 0, 0, is_xe_device(data->drm_fd) ? + system_memory(data->drm_fd) : 0); + ibb = intel_bb_create(data->drm_fd, PAGE_SIZE); + + spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle); + igt_spin_set_timeout(spin, NSEC_PER_SEC); + + rendercopy(ibb, src, 0, 0, data->fbs[2].width, data->fbs[2].height, dst, 0, 0); + + /* Perfom dirtyfb right after initiating rendercopy */ + r = drmModeDirtyFB(data->drm_fd, data->fbs[2].fb_id, NULL, 0); + igt_assert(r == 0 || r == -ENOSYS); + + /* Ensure rendercopy is complete */ + intel_bb_sync(ibb); + + igt_pipe_crc_collect_crc(data->pipe_crc, &crc); + igt_assert_crc_equal(&crc, &data->ref_crc); + + igt_spin_free(data->drm_fd, spin); + intel_bb_destroy(ibb); + intel_buf_destroy(src); + intel_buf_destroy(dst); +} + +igt_main +{ + data_t data = {}; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + + data.bops = buf_ops_create(data.drm_fd); + + igt_display_reset(&data.display); + } + + igt_describe("Test dirtyFB ioctl"); + igt_subtest_with_dynamic("dirtyfb-ioctl") { + data.pipe = PIPE_A; + for_each_valid_output_on_pipe(&data.display, data.pipe, + data.output) { + for (data.feature = FEATURE_DEFAULT; data.feature > 0; + data.feature = data.feature >> 1) { + igt_dynamic_f("%s-%s", feature_str(data.feature), + igt_output_name(data.output)) { + prepare(&data); + run_test(&data); + cleanup(&data); + } + } + } + } + + igt_fixture { + buf_ops_destroy(data.bops); + igt_display_fini(&data.display); + close(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 58061dbc2..7b621220c 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -240,6 +240,7 @@ i915_progs = [ 'kms_busy', 'kms_ccs', 'kms_cdclk', + 'kms_dirtyfb', 'kms_draw_crc', 'kms_dsc', 'kms_fb_coherency', -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v7 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander @ 2023-08-18 9:34 ` Kamil Konieczny 0 siblings, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2023-08-18 9:34 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Hi Jouni, On 2023-08-09 at 11:33:45 +0300, Jouni Högander wrote: > Add new test to validate dirtyfb ioctl is working properly with GPU > frontbuffer rendering. > > Create big framebuffer and use only lower right corner for the > plane. Initiate GPU drawing for a rectangle over the whole > framebuffer and perform dirtyfb ioctl. Then wait for the drawing to > complete and collect crc and check that it matches with expected. > > v6: > - Perform igt_display_reset in prepare > v5: > - Modifiations to support Xe as well > v4: > - Check connector type when PSR is tested > v3: > - Use spinner > - Drop allocating big frambuffers > v2: > - Change license comment > - Move disable_features and do not apply for FEATURE_DEFAULT > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > tests/i915/kms_dirtyfb.c | 303 +++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 304 insertions(+) > create mode 100644 tests/i915/kms_dirtyfb.c > > diff --git a/tests/i915/kms_dirtyfb.c b/tests/i915/kms_dirtyfb.c > new file mode 100644 > index 000000000..4e49574a2 > --- /dev/null > +++ b/tests/i915/kms_dirtyfb.c > @@ -0,0 +1,303 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2023 Intel Corporation > + */ > + > +#include <sys/types.h> > + > +#include "igt.h" > +#include "igt_psr.h" > + > +#include "i915/intel_drrs.h" > +#include "i915/intel_fbc.h" > + > +#include "xe/xe_query.h" > + > +IGT_TEST_DESCRIPTION("Test the DIRTYFB ioctl is working properly with " > + "its related features: FBC, PSR and DRRS"); > + Please add also new style documentation here, see other kms_ files or read patch by Mauro here: https://patchwork.freedesktop.org/series/122564/ README.md and docs: describe how to document tests Regards, Kamil > +#ifndef PAGE_ALIGN > +#ifndef PAGE_SIZE > +#define PAGE_SIZE 4096 > +#endif > +#define PAGE_ALIGN(x) ALIGN(x, PAGE_SIZE) > +#endif > + > +typedef struct { > + int drm_fd; > + int debugfs_fd; > + igt_display_t display; > + drmModeModeInfo *mode; > + igt_output_t *output; > + igt_pipe_crc_t *pipe_crc; > + enum pipe pipe; > + > + struct igt_fb fbs[3]; > + > + igt_crc_t ref_crc; > + > + struct buf_ops *bops; > + enum { > + FEATURE_NONE = 0, > + FEATURE_PSR = 1, > + FEATURE_FBC = 2, > + FEATURE_DRRS = 4, > + FEATURE_COUNT = 8, > + FEATURE_DEFAULT = 8, > + } feature; > +} data_t; > + > +static const char *feature_str(int feature) > +{ > + switch (feature) { > + case FEATURE_NONE: > + return "nop"; > + case FEATURE_FBC: > + return "fbc"; > + case FEATURE_PSR: > + return "psr"; > + case FEATURE_DRRS: > + return "drrs"; > + case FEATURE_DEFAULT: > + return "default"; > + default: > + igt_assert(false); > + } > +} > + > +static bool check_support(data_t *data) > +{ > + switch (data->feature) { > + case FEATURE_NONE: > + return true; > + case FEATURE_FBC: > + return intel_fbc_supported_on_chipset(data->drm_fd, data->pipe); > + case FEATURE_PSR: > + if (data->output->config.connector->connector_type != > + DRM_MODE_CONNECTOR_eDP) > + return false; > + return psr_sink_support(data->drm_fd, data->debugfs_fd, > + PSR_MODE_1); > + case FEATURE_DRRS: > + return intel_is_drrs_supported(data->drm_fd, data->pipe) && > + intel_output_has_drrs(data->drm_fd, data->output); > + case FEATURE_DEFAULT: > + return true; > + default: > + igt_assert(false); > + } > +} > + > +static void enable_feature(data_t *data) > +{ > + switch (data->feature) { > + case FEATURE_NONE: > + break; > + case FEATURE_FBC: > + intel_fbc_enable(data->drm_fd); > + break; > + case FEATURE_PSR: > + psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1); > + break; > + case FEATURE_DRRS: > + intel_drrs_enable(data->drm_fd, data->pipe); > + break; > + case FEATURE_DEFAULT: > + break; > + default: > + igt_assert(false); > + } > +} > + > +static void check_feature(data_t *data) > +{ > + switch (data->feature) { > + case FEATURE_NONE: > + break; > + case FEATURE_FBC: > + igt_assert_f(intel_fbc_wait_until_enabled(data->drm_fd, > + data->pipe), > + "FBC still disabled"); > + break; > + case FEATURE_PSR: > + igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1), > + "PSR still disabled\n"); > + break; > + case FEATURE_DRRS: > + igt_assert_f(intel_is_drrs_inactive(data->drm_fd, data->pipe), > + "DRRS INACTIVE\n"); > + break; > + case FEATURE_DEFAULT: > + break; > + default: > + igt_assert(false); > + } > +} > + > +static void disable_features(data_t *data) > +{ > + intel_fbc_disable(data->drm_fd); > + psr_disable(data->drm_fd, data->debugfs_fd); > + intel_drrs_disable(data->drm_fd, data->pipe); > +} > + > +static void prepare(data_t *data) > +{ > + igt_plane_t *primary; > + > + igt_skip_on(!check_support(data)); > + > + igt_display_reset(&data->display); > + > + data->mode = igt_output_get_mode(data->output); > + > + igt_output_set_pipe(data->output, data->pipe); > + > + data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, > + IGT_PIPE_CRC_SOURCE_AUTO); > + > + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, > + data->mode->vdisplay, DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, > + &data->fbs[0]); > + > + igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[0], > + IGT_DRAW_RENDER, 0, 0, data->fbs[0].width, > + data->fbs[0].height, 0xFF); > + > + primary = igt_output_get_plane_type(data->output, > + DRM_PLANE_TYPE_PRIMARY); > + > + igt_plane_set_fb(primary, &data->fbs[0]); > + > + if (data->feature != FEATURE_DEFAULT) > + disable_features(data); > + > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + > + igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc); > + > + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, > + data->mode->vdisplay, DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, > + &data->fbs[1]); > + igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[1], > + IGT_DRAW_RENDER, 0, 0, data->fbs[1].width, > + data->fbs[1].height, 0xFF); > + > + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, > + data->mode->vdisplay, DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, > + &data->fbs[2]); > + > + igt_plane_set_fb(primary, &data->fbs[2]); > + > + enable_feature(data); > + > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + > + check_feature(data); > +} > + > +static void cleanup(data_t *data) > +{ > + igt_remove_fb(data->drm_fd, &data->fbs[0]); > + igt_remove_fb(data->drm_fd, &data->fbs[1]); > + igt_remove_fb(data->drm_fd, &data->fbs[2]); > + > + igt_pipe_crc_free(data->pipe_crc); > + > + igt_output_set_pipe(data->output, PIPE_NONE); > + > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > +} > + > +static void run_test(data_t *data) > +{ > + igt_crc_t crc; > + struct intel_buf *src, *dst; > + struct intel_bb *ibb; > + igt_spin_t *spin; > + uint32_t devid = intel_get_drm_devid(data->drm_fd); > + igt_render_copyfunc_t rendercopy = igt_get_render_copyfunc(devid); > + int r; > + > + igt_skip_on(!rendercopy); > + > + src = intel_buf_create_full(data->bops, data->fbs[1].gem_handle, > + data->fbs[1].width, > + data->fbs[1].height, > + igt_drm_format_to_bpp(data->fbs[1].drm_format), > + 0, > + igt_fb_mod_to_tiling(data->fbs[1].modifier), > + 0, 0, 0, is_xe_device(data->drm_fd) ? > + system_memory(data->drm_fd) : 0); > + dst = intel_buf_create_full(data->bops, data->fbs[2].gem_handle, > + data->fbs[2].width, > + data->fbs[2].height, > + igt_drm_format_to_bpp(data->fbs[2].drm_format), > + 0, igt_fb_mod_to_tiling(data->fbs[2].modifier), > + 0, 0, 0, is_xe_device(data->drm_fd) ? > + system_memory(data->drm_fd) : 0); > + ibb = intel_bb_create(data->drm_fd, PAGE_SIZE); > + > + spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle); > + igt_spin_set_timeout(spin, NSEC_PER_SEC); > + > + rendercopy(ibb, src, 0, 0, data->fbs[2].width, data->fbs[2].height, dst, 0, 0); > + > + /* Perfom dirtyfb right after initiating rendercopy */ > + r = drmModeDirtyFB(data->drm_fd, data->fbs[2].fb_id, NULL, 0); > + igt_assert(r == 0 || r == -ENOSYS); > + > + /* Ensure rendercopy is complete */ > + intel_bb_sync(ibb); > + > + igt_pipe_crc_collect_crc(data->pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &data->ref_crc); > + > + igt_spin_free(data->drm_fd, spin); > + intel_bb_destroy(ibb); > + intel_buf_destroy(src); > + intel_buf_destroy(dst); > +} > + > +igt_main > +{ > + data_t data = {}; > + > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); > + kmstest_set_vt_graphics_mode(); > + > + igt_display_require(&data.display, data.drm_fd); > + > + data.bops = buf_ops_create(data.drm_fd); > + > + igt_display_reset(&data.display); > + } > + > + igt_describe("Test dirtyFB ioctl"); > + igt_subtest_with_dynamic("dirtyfb-ioctl") { > + data.pipe = PIPE_A; > + for_each_valid_output_on_pipe(&data.display, data.pipe, > + data.output) { > + for (data.feature = FEATURE_DEFAULT; data.feature > 0; > + data.feature = data.feature >> 1) { > + igt_dynamic_f("%s-%s", feature_str(data.feature), > + igt_output_name(data.output)) { > + prepare(&data); > + run_test(&data); > + cleanup(&data); > + } > + } > + } > + } > + > + igt_fixture { > + buf_ops_destroy(data.bops); > + igt_display_fini(&data.display); > + close(data.drm_fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 58061dbc2..7b621220c 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -240,6 +240,7 @@ i915_progs = [ > 'kms_busy', > 'kms_ccs', > 'kms_cdclk', > + 'kms_dirtyfb', > 'kms_draw_crc', > 'kms_dsc', > 'kms_fb_coherency', > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev9) 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (3 preceding siblings ...) 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander @ 2023-08-09 9:01 ` Patchwork 2023-08-09 9:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-09 9:01 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev == Series Details == Series: Testcases for dirtyfb ioctl (rev9) URL : https://patchwork.freedesktop.org/series/116130/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/956386 for the overview. containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/46985415): Downloading artifacts for build:tests-fedora (46985400)... Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=46985400 responseStatus=200 OK token=64_7kjsm section_end:1691571392:download_artifacts section_start:1691571392:step_script Executing "step_script" stage of the job script Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org $ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY Login Succeeded! $ .gitlab-ci/pull-or-rebuild.sh igt Dockerfile igt Error: could not get runtime: error configuring CNI network plugin: could not create new watcher too many open files section_end:1691571393:step_script section_start:1691571393:cleanup_file_variables Cleaning up project directory and file based variables section_end:1691571394:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/956386 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Testcases for dirtyfb ioctl (rev9) 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (4 preceding siblings ...) 2023-08-09 9:01 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev9) Patchwork @ 2023-08-09 9:30 ` Patchwork 2023-08-09 10:19 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-09 16:37 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-09 9:30 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9439 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl (rev9) URL : https://patchwork.freedesktop.org/series/116130/ State : success == Summary == CI Bug Log - changes from IGT_7424 -> IGTPW_9551 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9551 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: NOTRUN -> [ABORT][1] ([i915#8011]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-adlp-11/igt@core_auth@basic-auth.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-1115g4: [PASS][3] -> [FAIL][4] ([i915#7940]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@module-reload: - fi-rkl-11600: [PASS][5] -> [FAIL][6] ([i915#7940]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#6621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#7059]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][10] ([i915#8497]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-rpls-1: [PASS][11] -> [ABORT][12] ([i915#4983] / [i915#7911] / [i915#7920]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-rpls-1/igt@i915_selftest@live@requests.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-2: NOTRUN -> [ABORT][13] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#6645]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#7828]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][16] -> [ABORT][17] ([i915#8442] / [i915#8668]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#3708]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#3708] / [i915#4077]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][20] ([i915#7077] / [i915#7977] / [i915#8668]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@module-reload: - fi-cfl-8109u: [FAIL][22] ([i915#7940]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@requests: - bat-rpls-2: [ABORT][24] ([i915#4983] / [i915#7913]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-rpls-2/igt@i915_selftest@live@requests.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-rpls-2/igt@i915_selftest@live@requests.html - bat-mtlp-6: [DMESG-FAIL][26] ([i915#8497]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-mtlp-6/igt@i915_selftest@live@requests.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [DMESG-WARN][28] ([i915#6367]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-mtlp-6/igt@i915_selftest@live@slpc.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-mtlp-6/igt@i915_selftest@live@slpc.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [ABORT][30] ([i915#4423]) -> [DMESG-WARN][31] ([i915#4423]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-adlp-11/igt@i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-guc: [FAIL][32] ([i915#7691]) -> [FAIL][33] ([i915#7940]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1: - bat-adlp-6: [ABORT][34] ([i915#7977] / [i915#8434] / [i915#8668]) -> [ABORT][35] ([i915#7977] / [i915#8469] / [i915#8668]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7424 -> IGTPW_9551 CI-20190529: 20190529 CI_DRM_13492: 525b387a224ced0a360fcbf92794392999de7208 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9551: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/index.html IGT_7424: f12c2533941c9dfce43f455a02b7986605692b29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_dirtyfb@dirtyfb-ioctl -igt@xe_pm_residency@gt-c6-freeze == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/index.html [-- Attachment #2: Type: text/html, Size: 11485 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Testcases for dirtyfb ioctl (rev9) 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (5 preceding siblings ...) 2023-08-09 9:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-09 10:19 ` Patchwork 2023-08-09 16:37 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-09 10:19 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 342 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl (rev9) URL : https://patchwork.freedesktop.org/series/116130/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[1]: bat-pvc-2 Results: [IGTPW_9551](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9551/index.html) [-- Attachment #2: Type: text/html, Size: 864 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Testcases for dirtyfb ioctl (rev9) 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (6 preceding siblings ...) 2023-08-09 10:19 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-08-09 16:37 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-09 16:37 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 80477 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl (rev9) URL : https://patchwork.freedesktop.org/series/116130/ State : success == Summary == CI Bug Log - changes from IGT_7424_full -> IGTPW_9551_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_9551_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9551_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9551_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1} (NEW): - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1.html * {igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-4} (NEW): - shard-dg2: NOTRUN -> [SKIP][2] +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-4.html #### Warnings #### * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: [SKIP][3] ([i915#5235]) -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1.html New tests --------- New tests have been introduced between IGT_7424_full and IGTPW_9551_full: ### New IGT tests (25) ### * igt@kms_dirtyfb@dirtyfb-ioctl: - Statuses : - Exec time: [None] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9551_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +4 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][6] -> [FAIL][7] ([i915#7742]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#5325]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][10] -> [FAIL][11] ([i915#2410]) +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@idempotent: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-snb5/igt@gem_ctx_persistence@idempotent.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][15] -> [ABORT][16] ([i915#7975] / [i915#8213]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-19/igt@gem_eio@hibernate.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-14/igt@gem_eio@hibernate.html - shard-tglu: [PASS][17] -> [ABORT][18] ([i915#7975] / [i915#8213] / [i915#8398]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-9/igt@gem_eio@hibernate.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-10/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][19] -> [FAIL][20] ([i915#5784]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-13/igt@gem_eio@reset-stress.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@sliced: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-7/igt@gem_exec_fair@basic-flow@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][26] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@gem_exec_fair@basic-pace.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][29] -> [FAIL][30] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][32] ([fdo#112283]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +4 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_suspend@basic-s3@smem: - shard-dg2: [PASS][35] -> [INCOMPLETE][36] ([i915#7793]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-1/igt@gem_exec_suspend@basic-s3@smem.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][37] ([i915#7975] / [i915#8213]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#4613]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][39] ([i915#5493]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-9/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4077]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4083]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3282]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3282]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4270]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_tiled_wb: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-3/igt@gem_tiled_wb.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-mtlp: NOTRUN -> [SKIP][55] ([fdo#109289]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-7/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-2/igt@gen9_exec_parse@batch-invalid-length.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#2527]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#2527]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-14/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [PASS][59] -> [FAIL][60] ([i915#7069]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-3/igt@i915_hangman@gt-engine-error@vcs0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: NOTRUN -> [ABORT][61] ([i915#8489] / [i915#8668]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][62] -> [SKIP][63] ([i915#4281]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#1902]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][66] -> [FAIL][67] ([i915#3591]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][68] -> [SKIP][69] ([i915#1397]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#1397]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][71] -> [SKIP][72] ([i915#1397]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-13/igt@i915_pm_rpm@modeset-non-lpsp.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#1397]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [PASS][74] -> [FAIL][75] ([i915#7940]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][76] ([fdo#109506]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@i915_pm_rpm@pc8-residency.html - shard-rkl: NOTRUN -> [SKIP][77] ([fdo#109506]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-1/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rpm@system-suspend: - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#7940]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-10/igt@i915_pm_rpm@system-suspend.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-4/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#6621]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8925]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html - shard-dg2: NOTRUN -> [SKIP][82] ([i915#8925]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][83] -> [DMESG-FAIL][84] ([i915#6763]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [PASS][85] -> [ABORT][86] ([i915#4528]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-snb5/igt@i915_selftest@perf@engine_cs.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-snb6/igt@i915_selftest@perf@engine_cs.html * igt@i915_suspend@fence-restore-untiled: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4077]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-14/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@sysfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][88] ([i915#8841]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-snb2/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4212]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#8709]) +11 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][91] ([i915#8247]) +3 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-b-vga-1: - shard-snb: NOTRUN -> [FAIL][92] ([i915#8247]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-snb7/igt@kms_async_flips@crc@pipe-b-vga-1.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][93] ([i915#8247]) +3 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#1769] / [i915#3555]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#1769] / [i915#3555]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#111614]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3638]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#111614] / [i915#3638]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#111615]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5190]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#5354] / [i915#6095]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-7/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3886] / [i915#6095]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +3 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5354]) +21 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +3 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#3886] / [i915#5354]) +5 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3734] / [i915#5354] / [i915#6095]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#3886]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3689] / [i915#5354] / [i915#6095]) +5 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-17/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#5354]) +6 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-5/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#5354] / [i915#6095]) +5 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6095]) +8 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-8/igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5354]) +5 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4087]) +3 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][119] ([fdo#111827]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-6/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-negative: - shard-dg1: NOTRUN -> [SKIP][120] ([fdo#111827]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#7828]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@kms_chamelium_frames@dp-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#7828]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#7828]) +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#7828]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#7828]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][127] ([i915#7173]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7118]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7118]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3359]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4103] / [i915#4213]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4103] / [i915#4213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#4103]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-tglu: NOTRUN -> [SKIP][135] ([i915#4103]) +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109274] / [i915#5354]) +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html - shard-rkl: NOTRUN -> [SKIP][137] ([fdo#111825]) +1 similar issue [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3546]) +1 similar issue [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][139] -> [FAIL][140] ([i915#2346]) +1 similar issue [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4213]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1 (NEW): - shard-apl: NOTRUN -> [SKIP][142] ([fdo#109271]) +2 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-apl2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#8588]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#8588]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#8588]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555]) +4 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [PASS][147] -> [FAIL][148] ([i915#4767]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-8/igt@kms_fbcon_fbt@fbc-suspend.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#109274]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-tglu: NOTRUN -> [SKIP][150] ([fdo#109274] / [i915#3637]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-4/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3637]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#2587] / [i915#2672]) +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#2672]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#2672]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#2672]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#8708]) +6 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][158] ([fdo#111825]) +9 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8708]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#1825]) +4 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [PASS][161] -> [FAIL][162] ([fdo#103375]) +1 similar issue [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-suspend.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#8708]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111825] / [i915#1825]) +8 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3458]) +7 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3023]) +3 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109280]) +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3458]) +3 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8228]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8228]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-bottom-right@pipe-a-planes: - shard-dg1: [PASS][172] -> [FAIL][173] ([i915#8892]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-17/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8806]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8806]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][176] ([i915#8292]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][177] -> [FAIL][178] ([i915#8292]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5176]) +3 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#5176]) +27 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#5176]) +5 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#5235]) +1 similar issue [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#5235]) +19 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#5235]) +7 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#5235]) +3 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][186] ([fdo#109271]) +121 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#6524] / [i915#6805]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#6524]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#6524]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][190] ([fdo#109271] / [i915#658]) +1 similar issue [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk8/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2920]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][192] ([fdo#111068] / [i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@no_drrs: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#1072]) +2 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@kms_psr@no_drrs.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#1072]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_psr@primary_render.html - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#110189]) +3 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-4/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1072]) +2 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#5461] / [i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#5461] / [i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][199] ([i915#5461] / [i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#4235]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-4/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_selftest@drm_format: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8661]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@kms_selftest@drm_format.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8661]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@kms_selftest@drm_format.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#4098]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8823]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#4070] / [i915#533] / [i915#6768]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@kms_writeback@writeback-check-output: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2437]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][207] ([fdo#109271] / [i915#2437]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk9/igt@kms_writeback@writeback-fb-id.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#2434]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2434]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@perf@mi-rpc.html * igt@perf_pmu@render-node-busy@vcs0: - shard-dg1: [PASS][210] -> [FAIL][211] ([i915#4349]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-18/igt@perf_pmu@render-node-busy@vcs0.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@perf_pmu@render-node-busy@vcs0.html * igt@prime_vgem@basic-read: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3708]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3708] / [i915#4077]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-3/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][214] ([fdo#109295] / [fdo#111656] / [i915#3708]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@prime_vgem@coherency-gtt.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [PASS][215] -> [ABORT][216] ([i915#8521] / [i915#8865]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-5/igt@sysfs_preempt_timeout@timeout@vecs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-8/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@sysfs_timeslice_duration@idempotent@vcs0: - shard-snb: NOTRUN -> [SKIP][217] ([fdo#109271]) +193 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-snb5/igt@sysfs_timeslice_duration@idempotent@vcs0.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4818]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html - shard-rkl: NOTRUN -> [SKIP][219] ([fdo#109307]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html - shard-tglu: NOTRUN -> [SKIP][220] ([fdo#109307]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-7/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-invalid-counters: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575]) +4 similar issues [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-2/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][222] ([fdo#109315]) +2 similar issues [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html - shard-tglu: NOTRUN -> [SKIP][223] ([fdo#109315] / [i915#2575]) +1 similar issue [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-9/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#2575]) +3 similar issues [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@v3d/v3d_wait_bo@used-bo.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2575]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#7711]) +1 similar issue [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#7711]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-3/igt@vc4/vc4_tiling@set-bad-flags.html - shard-rkl: NOTRUN -> [SKIP][228] ([i915#7711]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@vc4/vc4_tiling@set-bad-flags.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#7711]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-2/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@fbdev@unaligned-write: - shard-mtlp: [DMESG-WARN][230] ([i915#2017]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-5/igt@fbdev@unaligned-write.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@fbdev@unaligned-write.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [FAIL][232] ([i915#6121]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-6/igt@gem_ctx_exec@basic-nohangcheck.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@hibernate: - shard-dg2: [ABORT][234] ([i915#7975] / [i915#8213]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-8/igt@gem_eio@hibernate.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [ABORT][236] ([i915#7941]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-3/igt@gem_eio@in-flight-contexts-10ms.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][238] ([i915#5784]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-18/igt@gem_eio@unwedge-stress.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][240] ([i915#2842]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][242] ([i915#2842]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][244] ([i915#2842]) -> [PASS][245] +1 similar issue [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][246] ([i915#2842]) -> [PASS][247] +1 similar issue [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-glk1/igt@gem_exec_fair@basic-pace@vcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][248] ([i915#7069]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][250] -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][252] ([i915#1397]) -> [PASS][253] +2 similar issues [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress@smem0: - shard-dg1: [FAIL][254] ([i915#7940]) -> [PASS][255] +1 similar issue [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-tglu: [FAIL][256] ([i915#7940]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-6/igt@i915_pm_rpm@modeset-lpsp-stress.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-2/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][258] ([i915#1397]) -> [PASS][259] +1 similar issue [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: [SKIP][260] ([i915#1397]) -> [PASS][261] +3 similar issues [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@reset: - shard-tglu: [INCOMPLETE][262] ([i915#8320]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-tglu-9/igt@i915_pm_rps@reset.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-tglu-3/igt@i915_pm_rps@reset.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][264] ([fdo#103375]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][266] ([i915#5138]) -> [PASS][267] +1 similar issue [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][268] ([i915#3743]) -> [PASS][269] +1 similar issue [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [FAIL][270] ([i915#8248]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][272] ([i915#2346]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-mtlp: [FAIL][274] ([i915#2346]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][276] ([fdo#103375]) -> [PASS][277] +1 similar issue [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [FAIL][278] ([i915#6880]) -> [PASS][279] +2 similar issues [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [FAIL][280] ([i915#1623]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-2/igt@kms_plane@pixel-format@pipe-b-planes.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_sysfs_edid_timing: - shard-apl: [FAIL][282] ([IGT#2]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-apl4/igt@kms_sysfs_edid_timing.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-apl2/igt@kms_sysfs_edid_timing.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][284] ([i915#8724]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-8/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][286] ([i915#4349]) -> [PASS][287] +3 similar issues [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [FAIL][288] ([i915#5234]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-10/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [FAIL][290] ([i915#5234]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@i915_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][292] ([i915#4391]) -> [DMESG-WARN][293] ([i915#4391] / [i915#4423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-19/igt@i915_pm_rpm@i2c.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-13/igt@i915_pm_rpm@i2c.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][294] ([i915#1982] / [i915#8561]) -> [DMESG-FAIL][295] ([i915#8561]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][296] ([i915#7116]) -> [SKIP][297] ([fdo#109300]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-17/igt@kms_content_protection@mei_interface.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-18/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][298] ([i915#2017] / [i915#5954]) -> [FAIL][299] ([i915#2346]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][300] ([i915#3955]) -> [SKIP][301] ([fdo#110189] / [i915#3955]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-7/igt@kms_fbcon_fbt@psr.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][302] ([fdo#109285]) -> [SKIP][303] ([fdo#109285] / [i915#4098]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][304] ([i915#4070] / [i915#4816]) -> [SKIP][305] ([i915#4816]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][306] ([i915#1072] / [i915#4078]) -> [SKIP][307] ([i915#1072]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-18/igt@kms_psr@cursor_plane_move.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-19/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][308] ([i915#1072]) -> [SKIP][309] ([i915#1072] / [i915#4078]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg1-14/igt@kms_psr@primary_page_flip.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg1-16/igt@kms_psr@primary_page_flip.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][310] ([i915#5493]) -> [CRASH][311] ([i915#7331]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7424/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7793]: https://gitlab.freedesktop.org/drm/intel/issues/7793 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8320]: https://gitlab.freedesktop.org/drm/intel/issues/8320 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8892]: https://gitlab.freedesktop.org/drm/intel/issues/8892 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7424 -> IGTPW_9551 CI-20190529: 20190529 CI_DRM_13492: 525b387a224ced0a360fcbf92794392999de7208 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9551: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/index.html IGT_7424: f12c2533941c9dfce43f455a02b7986605692b29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9551/index.html [-- Attachment #2: Type: text/html, Size: 99062 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-08-18 9:34 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-09 8:33 [igt-dev] [PATCH i-g-t v7 0/4] Testcases for dirtyfb ioctl Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 2/4] lib/i915/drrs: Add drrs helpers Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and " Jouni Högander 2023-08-09 8:33 ` [igt-dev] [PATCH i-g-t v7 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander 2023-08-18 9:34 ` Kamil Konieczny 2023-08-09 9:01 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev9) Patchwork 2023-08-09 9:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-09 10:19 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-09 16:37 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox