* [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level
@ 2024-07-11 4:13 Pranay Samala
2024-07-11 4:13 ` [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Pranay Samala @ 2024-07-11 4:13 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar,
pranay.samala
In certain scenarios, tests may fail due to insufficient disk space,
even though they fulfill all requirements.
To resolve this issue, adjust the debug log level before initiating
the test. Rather than manually editing the debug log level each time,
aim to dynamically adjust it.
This approach involves modifying the log level within the test using
the debugfs entry, with an exit handler ensuring default settings are
restored after testing.
Pranay Samala (3):
lib/igt_sysfs: Implement dynamic adjustment of debug log level
tests/kms_atomic_transition: Reducing debug loglevel dynamically
tests/intel-ci/fast-feedback.testlist: To get the required results
lib/igt_sysfs.c | 109 +++++++++++++++
lib/igt_sysfs.h | 5 +
tests/intel-ci/fast-feedback.testlist | 184 +++-----------------------
tests/kms_atomic_transition.c | 3 +
4 files changed, 134 insertions(+), 167 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala @ 2024-07-11 4:13 ` Pranay Samala 2024-07-11 5:47 ` Modem, Bhanuprakash 2024-07-11 4:13 ` [PATCH i-g-t v3 2/3] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Pranay Samala @ 2024-07-11 4:13 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar, pranay.samala Adjust debug log levels dynamically to prevent machine disk overflow during excessive test debug logs. Introduce function to modify log levels as needed, with an exit handler restoring default settings post-test. v3: - Adding module drm_open_param function to open the sysfs directory (Bhanu) - Reducing the current drm loglevel by step value to make it more robust (Bhanu) Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- lib/igt_sysfs.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 5 +++ 2 files changed, 114 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index ffeec1ca2..d29e0299c 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -49,6 +49,8 @@ #include "igt_io.h" #include "intel_chipset.h" +#define PATH "/sys/module/drm/parameters/debug" + /** * SECTION:igt_sysfs * @short_description: Support code for sysfs features @@ -412,6 +414,113 @@ int igt_sysfs_get_num_gt(int device) return num_gts; } +/** + * igt_sysfs_drm_module_params_open: + * + * This opens the sysfs directory corresponding to drm module + * parameters. + * + * Returns: + * The directory fd, or -1 on failure. + */ +int igt_sysfs_drm_module_params_open(void) +{ + char path[] = "/sys/module/drm/parameters"; + + if (access(path, F_OK)) + return -1; + + return open(path, O_RDONLY); +} + +static int log_level = -1; + +/** + * igt_drm_debug_level_get: + * + * This reads the current debug log level of the machine on + * which the test is currently executing. + * + * Returns: + * The current log level, or -1 on error. + */ + +int igt_drm_debug_level_get(int dir) +{ + char buf[20]; + + if (log_level >= 0) + return log_level; + + if (igt_sysfs_read(dir, "debug", buf, sizeof(buf) - 1) < 0) + return -1; + + return atoi(buf); +} + +/** + * igt_drm_debug_level_reset: + * + * This modifies the current debug log level of the machine + * to the default value post-test. + * + */ + +void igt_drm_debug_level_reset(void) +{ + char buf[20]; + int dir; + + if (log_level < 0) + return; + + dir = igt_sysfs_drm_module_params_open(); + if (dir < 0) + return; + + igt_debug("Resetting DRM debug level to %d\n", log_level); + snprintf(buf, sizeof(buf), "%d", log_level); + igt_assert(igt_sysfs_set(dir, "debug", buf)); + + close(dir); +} + +static void igt_drm_debug_level_reset_exit_handler(int sig) +{ + igt_drm_debug_level_reset(); +} + +/** + * igt_drm_debug_level_update: + * @debug_level: new debug level to set + * + * This modifies the current drm debug log level to the new value. + */ + +void igt_drm_debug_level_update(unsigned int step) +{ + char buf[220]; + int dir, new_log_level; + + dir = igt_sysfs_drm_module_params_open(); + if (dir < 0) + return; + + log_level = igt_drm_debug_level_get(dir); + if (log_level < 0) { + close(dir); + return; + } + + new_log_level = log_level - step; + igt_debug("Setting DRM bebug level to %d\n", new_log_level); + snprintf(buf, sizeof(buf), "%d", new_log_level); + igt_assert(igt_sysfs_set(dir, "debug", buf)); + + close(dir); + igt_install_exit_handler(igt_drm_debug_level_reset_exit_handler); +} + /** * igt_sysfs_write: * @dir: sysfs directory diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 6c604d939..a276c6ed1 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -138,6 +138,11 @@ void igt_sysfs_set_boolean(int dir, const char *attr, bool value); void bind_fbcon(bool enable); void fbcon_blink_enable(bool enable); +void igt_drm_debug_level_update(unsigned int debug_level); +void igt_drm_debug_level_reset(void); +int igt_drm_debug_level_get(int dir); +int igt_sysfs_drm_module_params_open(void); + /** * igt_sysfs_rw_attr: * @dir: file descriptor for parent directory -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level 2024-07-11 4:13 ` [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala @ 2024-07-11 5:47 ` Modem, Bhanuprakash 0 siblings, 0 replies; 10+ messages in thread From: Modem, Bhanuprakash @ 2024-07-11 5:47 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar On 11-07-2024 09:43 am, Pranay Samala wrote: > Adjust debug log levels dynamically to prevent machine > disk overflow during excessive test debug logs. > > Introduce function to modify log levels as needed, > with an exit handler restoring default settings post-test. > > v3: > - Adding module drm_open_param function to open > the sysfs directory (Bhanu) > - Reducing the current drm loglevel by step value > to make it more robust (Bhanu) Please keep maintain the rev history (v2 is missing). > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > lib/igt_sysfs.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_sysfs.h | 5 +++ > 2 files changed, 114 insertions(+) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index ffeec1ca2..d29e0299c 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -49,6 +49,8 @@ > #include "igt_io.h" > #include "intel_chipset.h" > > +#define PATH "/sys/module/drm/parameters/debug" Unused declaration, please drop. > + > /** > * SECTION:igt_sysfs > * @short_description: Support code for sysfs features > @@ -412,6 +414,113 @@ int igt_sysfs_get_num_gt(int device) > return num_gts; > } > > +/** > + * igt_sysfs_drm_module_params_open: > + * > + * This opens the sysfs directory corresponding to drm module > + * parameters. > + * > + * Returns: > + * The directory fd, or -1 on failure. > + */ > +int igt_sysfs_drm_module_params_open(void) > +{ > + char path[] = "/sys/module/drm/parameters"; > + > + if (access(path, F_OK)) > + return -1; > + > + return open(path, O_RDONLY); > +} > + > +static int log_level = -1; > + > +/** > + * igt_drm_debug_level_get: > + * > + * This reads the current debug log level of the machine on > + * which the test is currently executing. > + * > + * Returns: > + * The current log level, or -1 on error. > + */ > + Please drop this extra new line. > +int igt_drm_debug_level_get(int dir) > +{ > + char buf[20]; > + > + if (log_level >= 0) > + return log_level; > + > + if (igt_sysfs_read(dir, "debug", buf, sizeof(buf) - 1) < 0) > + return -1; > + > + return atoi(buf); > +} > + > +/** > + * igt_drm_debug_level_reset: > + * > + * This modifies the current debug log level of the machine > + * to the default value post-test. > + * > + */ > + Please drop this extra new line. > +void igt_drm_debug_level_reset(void) > +{ > + char buf[20]; > + int dir; > + > + if (log_level < 0) > + return; > + > + dir = igt_sysfs_drm_module_params_open(); > + if (dir < 0) > + return; > + > + igt_debug("Resetting DRM debug level to %d\n", log_level); > + snprintf(buf, sizeof(buf), "%d", log_level); > + igt_assert(igt_sysfs_set(dir, "debug", buf)); > + > + close(dir); > +} > + > +static void igt_drm_debug_level_reset_exit_handler(int sig) > +{ > + igt_drm_debug_level_reset(); > +} > + > +/** > + * igt_drm_debug_level_update: > + * @debug_level: new debug level to set > + * > + * This modifies the current drm debug log level to the new value. > + */ > + Please drop this extra new line. > +void igt_drm_debug_level_update(unsigned int step) > +{ > + char buf[220]; ----------------^ Please reduce the buf size. > + int dir, new_log_level; > + > + dir = igt_sysfs_drm_module_params_open(); > + if (dir < 0) > + return; > + > + log_level = igt_drm_debug_level_get(dir); > + if (log_level < 0) { > + close(dir); > + return; > + } > + > + new_log_level = log_level - step; This logic must be handled at caller. This API is supposed to update with the requested value. > + igt_debug("Setting DRM bebug level to %d\n", new_log_level); -------------------------------^ Typo: s/bebug/debug/ - Bhanu > + snprintf(buf, sizeof(buf), "%d", new_log_level); > + igt_assert(igt_sysfs_set(dir, "debug", buf)); > + > + close(dir); > + igt_install_exit_handler(igt_drm_debug_level_reset_exit_handler); > +} > + > /** > * igt_sysfs_write: > * @dir: sysfs directory > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > index 6c604d939..a276c6ed1 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -138,6 +138,11 @@ void igt_sysfs_set_boolean(int dir, const char *attr, bool value); > void bind_fbcon(bool enable); > void fbcon_blink_enable(bool enable); > > +void igt_drm_debug_level_update(unsigned int debug_level); > +void igt_drm_debug_level_reset(void); > +int igt_drm_debug_level_get(int dir); > +int igt_sysfs_drm_module_params_open(void); > + > /** > * igt_sysfs_rw_attr: > * @dir: file descriptor for parent directory ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 2/3] tests/kms_atomic_transition: Reducing debug loglevel dynamically 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala 2024-07-11 4:13 ` [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala @ 2024-07-11 4:13 ` Pranay Samala 2024-07-11 5:47 ` Modem, Bhanuprakash 2024-07-11 4:13 ` [PATCH i-g-t v3 3/3] tests/intel-ci/fast-feedback.testlist: To get the required results Pranay Samala ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Pranay Samala @ 2024-07-11 4:13 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar, pranay.samala This test is debug logs are too much and was killed due to exceeding disk usage limit on the less disk space machines. So dynamically reducing the debug log level to 13. v3: - Calling loglevel init functionality in lib file (Bhanu) - Here 2 means the log level will be reduced by 2 (Bhanu) Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_atomic_transition.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index 29dd8ac4e..f89cd0814 100644 --- a/tests/kms_atomic_transition.c +++ b/tests/kms_atomic_transition.c @@ -34,6 +34,7 @@ #include "igt_rand.h" #include "drmtest.h" #include "sw_sync.h" +#include "igt_sysfs.h" #include <errno.h> #include <pthread.h> #include <stdbool.h> @@ -1176,6 +1177,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_drm_debug_level_update(2); + kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v3 2/3] tests/kms_atomic_transition: Reducing debug loglevel dynamically 2024-07-11 4:13 ` [PATCH i-g-t v3 2/3] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala @ 2024-07-11 5:47 ` Modem, Bhanuprakash 0 siblings, 0 replies; 10+ messages in thread From: Modem, Bhanuprakash @ 2024-07-11 5:47 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar On 11-07-2024 09:43 am, Pranay Samala wrote: > This test is debug logs are too much and was killed > due to exceeding disk usage limit on the less disk > space machines. > > So dynamically reducing the debug log level to 13. > > v3: > - Calling loglevel init functionality in lib file (Bhanu) > - Here 2 means the log level will be reduced by 2 (Bhanu) Please keep maintain the rev history (v2 is missing). > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_atomic_transition.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c > index 29dd8ac4e..f89cd0814 100644 > --- a/tests/kms_atomic_transition.c > +++ b/tests/kms_atomic_transition.c > @@ -34,6 +34,7 @@ > #include "igt_rand.h" > #include "drmtest.h" > #include "sw_sync.h" > +#include "igt_sysfs.h" > #include <errno.h> > #include <pthread.h> > #include <stdbool.h> > @@ -1176,6 +1177,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > igt_fixture { > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > + igt_drm_debug_level_update(2); Comments in Rev 2 is not addressed. Probably, you can read the current debug level & take the decision. Ex: if (igt_drm_debug_level_get() > <your magic number>) igt_drm_debug_level_update(2); Also, please move this logic to end of the igt_fixture. Ex: If there is valid connector found, then there is no point to update the debug level. - Bhanu > + > kmstest_set_vt_graphics_mode(); > > igt_display_require(&data.display, data.drm_fd); ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 3/3] tests/intel-ci/fast-feedback.testlist: To get the required results 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala 2024-07-11 4:13 ` [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala 2024-07-11 4:13 ` [PATCH i-g-t v3 2/3] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala @ 2024-07-11 4:13 ` Pranay Samala 2024-07-11 5:47 ` Modem, Bhanuprakash 2024-07-11 4:50 ` ✗ CI.xeBAT: failure for Runtime alteration of debuglog level (rev3) Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Pranay Samala @ 2024-07-11 4:13 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, kunal1.joshi, bhanuprakash.modem, sameer.lattannavar, pranay.samala This is to get results of all the tests which are dependent on drm debug log level alteration Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/intel-ci/fast-feedback.testlist | 184 +++----------------------- 1 file changed, 17 insertions(+), 167 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..9cf8edcef 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -1,171 +1,21 @@ # Try to load the driver if it's not available yet. igt@i915_module_load@load -# Keep alphabetically sorted by default -igt@core_auth@basic-auth -igt@debugfs_test@read_all_entries -igt@debugfs_test@basic-hwmon -igt@debugfs_test@sysfs -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write -igt@gem_basic@bad-close -igt@gem_basic@create-close -igt@gem_basic@create-fd-close -igt@gem_busy@busy@all-engines -igt@gem_close_race@basic-process -igt@gem_close_race@basic-threads -igt@gem_ctx_create@basic -igt@gem_ctx_create@basic-files -igt@gem_ctx_exec@basic -igt@gem_exec_basic@basic -igt@gem_exec_create@basic -igt@gem_exec_fence@basic-busy -igt@gem_exec_fence@basic-wait -igt@gem_exec_fence@basic-await -igt@gem_exec_fence@nb-await -igt@gem_exec_gttfill@basic -igt@gem_exec_parallel@engines -igt@gem_exec_store@basic -igt@gem_flink_basic@bad-flink -igt@gem_flink_basic@bad-open -igt@gem_flink_basic@basic -igt@gem_flink_basic@double-flink -igt@gem_flink_basic@flink-lifetime -igt@gem_huc_copy@huc-copy -igt@gem_linear_blits@basic -igt@gem_mmap@basic -igt@gem_mmap_gtt@basic -igt@gem_render_linear_blits@basic -igt@gem_render_tiled_blits@basic -igt@gem_ringfill@basic-all -igt@gem_softpin@allocator-basic -igt@gem_softpin@allocator-basic-reserve -igt@gem_softpin@safe-alignment -igt@gem_sync@basic-all -igt@gem_sync@basic-each -igt@gem_tiled_blits@basic -igt@gem_tiled_fence_blits@basic -igt@gem_tiled_pread_basic -igt@gem_wait@busy@all-engines -igt@gem_wait@wait@all-engines -igt@i915_getparams_basic@basic-eu-total -igt@i915_getparams_basic@basic-subslice-total -igt@i915_hangman@error-state-basic -igt@i915_pciid -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@basic-y-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@bo-too-small-due-to-tiling -igt@kms_addfb_basic@clobberred-modifier -igt@kms_addfb_basic@framebuffer-vs-set-tiling -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@tile-pitch-mismatch -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_busy@basic -igt@kms_prop_blob@basic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@force-load-detect -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_pm_backlight@basic-brightness -igt@kms_pm_rpm@basic-pci-d3-state -igt@kms_pm_rpm@basic-rte -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@kms_psr@psr-primary-mmap-gtt -igt@kms_setmode@basic-clone-single-crtc -igt@i915_pm_rps@basic-api -igt@prime_self_import@basic-llseek-bad -igt@prime_self_import@basic-llseek-size -igt@prime_self_import@basic-with_fd_dup -igt@prime_self_import@basic-with_one_bo -igt@prime_self_import@basic-with_one_bo_two_files -igt@prime_self_import@basic-with_two_bos -igt@prime_vgem@basic-fence-flip -igt@prime_vgem@basic-fence-mmap -igt@prime_vgem@basic-fence-read -igt@prime_vgem@basic-gtt -igt@prime_vgem@basic-read -igt@prime_vgem@basic-write -igt@vgem_basic@setversion -igt@vgem_basic@create -igt@vgem_basic@debugfs -igt@vgem_basic@dmabuf-export -igt@vgem_basic@dmabuf-fence -igt@vgem_basic@dmabuf-fence-before -igt@vgem_basic@dmabuf-mmap -igt@vgem_basic@mmap -igt@vgem_basic@second-client -igt@vgem_basic@sysfs - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. - -igt@core_hotunplug@unbind-rebind -igt@vgem_basic@unload -igt@i915_module_load@reload -igt@gem_lmem_swapping@basic -igt@gem_lmem_swapping@parallel-random-engines -igt@gem_lmem_swapping@random-engines -igt@gem_lmem_swapping@verify-random -igt@i915_pm_rpm@module-reload - # Kernel selftests -igt@i915_selftest@live -igt@dmabuf@all-tests +igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait +igt@kms_atomic_transition@plane-all-transition +igt@kms_atomic_transition@plane-all-transition-fencing +igt@kms_atomic_transition@plane-all-transition-nonblocking +igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing +igt@kms_atomic_transition@plane-use-after-nonblocking-unbind +igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing +igt@kms_atomic_transition@plane-all-modeset-transition +igt@kms_atomic_transition@plane-all-modeset-transition-fencing +igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels +igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels +igt@kms_atomic_transition@plane-toggle-modeset-transition +igt@kms_atomic_transition@modeset-transition +igt@kms_atomic_transition@modeset-transition-fencing +igt@kms_atomic_transition@modeset-transition-nonblocking +igt@kms_atomic_transition@modeset-transition-nonblocking-fencing + -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v3 3/3] tests/intel-ci/fast-feedback.testlist: To get the required results 2024-07-11 4:13 ` [PATCH i-g-t v3 3/3] tests/intel-ci/fast-feedback.testlist: To get the required results Pranay Samala @ 2024-07-11 5:47 ` Modem, Bhanuprakash 0 siblings, 0 replies; 10+ messages in thread From: Modem, Bhanuprakash @ 2024-07-11 5:47 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, kunal1.joshi, sameer.lattannavar Hi Pranay, Please follow [1] to test something in CI BAT. So that we people wont review such patches. [1]: https://intel-gfx-ci.01.org/#forcing-tests-in-bat-and-changing-configuration - Bhanu On 11-07-2024 09:43 am, Pranay Samala wrote: > This is to get results of all the tests which are dependent on drm debug > log level alteration > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/intel-ci/fast-feedback.testlist | 184 +++----------------------- > 1 file changed, 17 insertions(+), 167 deletions(-) > > diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist > index be0965110..9cf8edcef 100644 > --- a/tests/intel-ci/fast-feedback.testlist > +++ b/tests/intel-ci/fast-feedback.testlist > @@ -1,171 +1,21 @@ > # Try to load the driver if it's not available yet. > igt@i915_module_load@load > > -# Keep alphabetically sorted by default > -igt@core_auth@basic-auth > -igt@debugfs_test@read_all_entries > -igt@debugfs_test@basic-hwmon > -igt@debugfs_test@sysfs > -igt@fbdev@eof > -igt@fbdev@info > -igt@fbdev@nullptr > -igt@fbdev@read > -igt@fbdev@write > -igt@gem_basic@bad-close > -igt@gem_basic@create-close > -igt@gem_basic@create-fd-close > -igt@gem_busy@busy@all-engines > -igt@gem_close_race@basic-process > -igt@gem_close_race@basic-threads > -igt@gem_ctx_create@basic > -igt@gem_ctx_create@basic-files > -igt@gem_ctx_exec@basic > -igt@gem_exec_basic@basic > -igt@gem_exec_create@basic > -igt@gem_exec_fence@basic-busy > -igt@gem_exec_fence@basic-wait > -igt@gem_exec_fence@basic-await > -igt@gem_exec_fence@nb-await > -igt@gem_exec_gttfill@basic > -igt@gem_exec_parallel@engines > -igt@gem_exec_store@basic > -igt@gem_flink_basic@bad-flink > -igt@gem_flink_basic@bad-open > -igt@gem_flink_basic@basic > -igt@gem_flink_basic@double-flink > -igt@gem_flink_basic@flink-lifetime > -igt@gem_huc_copy@huc-copy > -igt@gem_linear_blits@basic > -igt@gem_mmap@basic > -igt@gem_mmap_gtt@basic > -igt@gem_render_linear_blits@basic > -igt@gem_render_tiled_blits@basic > -igt@gem_ringfill@basic-all > -igt@gem_softpin@allocator-basic > -igt@gem_softpin@allocator-basic-reserve > -igt@gem_softpin@safe-alignment > -igt@gem_sync@basic-all > -igt@gem_sync@basic-each > -igt@gem_tiled_blits@basic > -igt@gem_tiled_fence_blits@basic > -igt@gem_tiled_pread_basic > -igt@gem_wait@busy@all-engines > -igt@gem_wait@wait@all-engines > -igt@i915_getparams_basic@basic-eu-total > -igt@i915_getparams_basic@basic-subslice-total > -igt@i915_hangman@error-state-basic > -igt@i915_pciid > -igt@kms_addfb_basic@addfb25-4-tiled > -igt@kms_addfb_basic@addfb25-bad-modifier > -igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling > -igt@kms_addfb_basic@addfb25-modifier-no-flag > -igt@kms_addfb_basic@addfb25-x-tiled-legacy > -igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy > -igt@kms_addfb_basic@addfb25-yf-tiled-legacy > -igt@kms_addfb_basic@addfb25-y-tiled-legacy > -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy > -igt@kms_addfb_basic@bad-pitch-0 > -igt@kms_addfb_basic@bad-pitch-1024 > -igt@kms_addfb_basic@bad-pitch-128 > -igt@kms_addfb_basic@bad-pitch-256 > -igt@kms_addfb_basic@bad-pitch-32 > -igt@kms_addfb_basic@bad-pitch-63 > -igt@kms_addfb_basic@bad-pitch-65536 > -igt@kms_addfb_basic@bad-pitch-999 > -igt@kms_addfb_basic@basic > -igt@kms_addfb_basic@basic-x-tiled-legacy > -igt@kms_addfb_basic@basic-y-tiled-legacy > -igt@kms_addfb_basic@bo-too-small > -igt@kms_addfb_basic@bo-too-small-due-to-tiling > -igt@kms_addfb_basic@clobberred-modifier > -igt@kms_addfb_basic@framebuffer-vs-set-tiling > -igt@kms_addfb_basic@invalid-get-prop > -igt@kms_addfb_basic@invalid-get-prop-any > -igt@kms_addfb_basic@invalid-set-prop > -igt@kms_addfb_basic@invalid-set-prop-any > -igt@kms_addfb_basic@no-handle > -igt@kms_addfb_basic@size-max > -igt@kms_addfb_basic@small-bo > -igt@kms_addfb_basic@tile-pitch-mismatch > -igt@kms_addfb_basic@too-high > -igt@kms_addfb_basic@too-wide > -igt@kms_addfb_basic@unused-handle > -igt@kms_addfb_basic@unused-modifier > -igt@kms_addfb_basic@unused-offsets > -igt@kms_addfb_basic@unused-pitches > -igt@kms_busy@basic > -igt@kms_prop_blob@basic > -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic > -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy > -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic > -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy > -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size > -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic > -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy > -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size > -igt@kms_dsc@dsc-basic > -igt@kms_flip@basic-flip-vs-dpms > -igt@kms_flip@basic-flip-vs-modeset > -igt@kms_flip@basic-flip-vs-wf_vblank > -igt@kms_flip@basic-plain-flip > -igt@kms_force_connector_basic@force-connector-state > -igt@kms_force_connector_basic@force-edid > -igt@kms_force_connector_basic@force-load-detect > -igt@kms_force_connector_basic@prune-stale-modes > -igt@kms_frontbuffer_tracking@basic > -igt@kms_hdmi_inject@inject-audio > -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 > -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 > -igt@kms_pipe_crc_basic@hang-read-crc > -igt@kms_pipe_crc_basic@nonblocking-crc > -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence > -igt@kms_pipe_crc_basic@read-crc > -igt@kms_pipe_crc_basic@read-crc-frame-sequence > -igt@kms_pm_backlight@basic-brightness > -igt@kms_pm_rpm@basic-pci-d3-state > -igt@kms_pm_rpm@basic-rte > -igt@kms_psr@psr-primary-page-flip > -igt@kms_psr@psr-cursor-plane-move > -igt@kms_psr@psr-sprite-plane-onoff > -igt@kms_psr@psr-primary-mmap-gtt > -igt@kms_setmode@basic-clone-single-crtc > -igt@i915_pm_rps@basic-api > -igt@prime_self_import@basic-llseek-bad > -igt@prime_self_import@basic-llseek-size > -igt@prime_self_import@basic-with_fd_dup > -igt@prime_self_import@basic-with_one_bo > -igt@prime_self_import@basic-with_one_bo_two_files > -igt@prime_self_import@basic-with_two_bos > -igt@prime_vgem@basic-fence-flip > -igt@prime_vgem@basic-fence-mmap > -igt@prime_vgem@basic-fence-read > -igt@prime_vgem@basic-gtt > -igt@prime_vgem@basic-read > -igt@prime_vgem@basic-write > -igt@vgem_basic@setversion > -igt@vgem_basic@create > -igt@vgem_basic@debugfs > -igt@vgem_basic@dmabuf-export > -igt@vgem_basic@dmabuf-fence > -igt@vgem_basic@dmabuf-fence-before > -igt@vgem_basic@dmabuf-mmap > -igt@vgem_basic@mmap > -igt@vgem_basic@second-client > -igt@vgem_basic@sysfs > - > -# All tests that do module unloading and reloading are executed last. > -# They will sometimes reveal issues of earlier tests leaving the > -# driver in a broken state that is not otherwise noticed in that test. > - > -igt@core_hotunplug@unbind-rebind > -igt@vgem_basic@unload > -igt@i915_module_load@reload > -igt@gem_lmem_swapping@basic > -igt@gem_lmem_swapping@parallel-random-engines > -igt@gem_lmem_swapping@random-engines > -igt@gem_lmem_swapping@verify-random > -igt@i915_pm_rpm@module-reload > - > # Kernel selftests > -igt@i915_selftest@live > -igt@dmabuf@all-tests > +igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait > +igt@kms_atomic_transition@plane-all-transition > +igt@kms_atomic_transition@plane-all-transition-fencing > +igt@kms_atomic_transition@plane-all-transition-nonblocking > +igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing > +igt@kms_atomic_transition@plane-use-after-nonblocking-unbind > +igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing > +igt@kms_atomic_transition@plane-all-modeset-transition > +igt@kms_atomic_transition@plane-all-modeset-transition-fencing > +igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels > +igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels > +igt@kms_atomic_transition@plane-toggle-modeset-transition > +igt@kms_atomic_transition@modeset-transition > +igt@kms_atomic_transition@modeset-transition-fencing > +igt@kms_atomic_transition@modeset-transition-nonblocking > +igt@kms_atomic_transition@modeset-transition-nonblocking-fencing > + ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeBAT: failure for Runtime alteration of debuglog level (rev3) 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala ` (2 preceding siblings ...) 2024-07-11 4:13 ` [PATCH i-g-t v3 3/3] tests/intel-ci/fast-feedback.testlist: To get the required results Pranay Samala @ 2024-07-11 4:50 ` Patchwork 2024-07-11 5:13 ` ✗ Fi.CI.BAT: " Patchwork 2024-07-11 5:47 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-07-11 4:50 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1575 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev3) URL : https://patchwork.freedesktop.org/series/135823/ State : failure == Summary == CI Bug Log - changes from XEIGT_7922_BAT -> XEIGTPW_11397_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11397_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11397_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (7 -> 0) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_11397_BAT prevented too many machines from booting. Missing (7): bat-bmg-1 bat-lnl-2 bat-pvc-2 bat-lnl-1 bat-dg2-oem2 bat-adlp-7 bat-atsm-2 Changes ------- No changes found Build changes ------------- * IGT: IGT_7922 -> IGTPW_11397 * Linux: xe-1589-28c3b18581a110660a7c42bb988a12a3b1f6d402 -> xe-1591-36e90f69c967f4cbcdd02c40c9ef25694ffb1a13 IGTPW_11397: 11397 IGT_7922: 325d4f4efbf869f93d3b4479046713d0ce7220e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1589-28c3b18581a110660a7c42bb988a12a3b1f6d402: 28c3b18581a110660a7c42bb988a12a3b1f6d402 xe-1591-36e90f69c967f4cbcdd02c40c9ef25694ffb1a13: 36e90f69c967f4cbcdd02c40c9ef25694ffb1a13 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/index.html [-- Attachment #2: Type: text/html, Size: 2158 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.BAT: failure for Runtime alteration of debuglog level (rev3) 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala ` (3 preceding siblings ...) 2024-07-11 4:50 ` ✗ CI.xeBAT: failure for Runtime alteration of debuglog level (rev3) Patchwork @ 2024-07-11 5:13 ` Patchwork 2024-07-11 5:47 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-07-11 5:13 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12077 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev3) URL : https://patchwork.freedesktop.org/series/135823/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15060 -> IGTPW_11397 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11397 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11397, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11397/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-11 fi-snb-2520m fi-elk-e7500 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11397: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-1: - bat-adls-6: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-adls-6/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_11397 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@modeset-transition: - bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#9792]) +15 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-mtlp-6/igt@kms_atomic_transition@modeset-transition.html - bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#9197]) +15 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-dg2-9/igt@kms_atomic_transition@modeset-transition.html - bat-adlp-11: NOTRUN -> [SKIP][4] ([i915#10470] / [i915#10501]) +10 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-adlp-11/igt@kms_atomic_transition@modeset-transition.html * igt@kms_atomic_transition@modeset-transition-fencing: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#6078]) +15 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-atsm-1/igt@kms_atomic_transition@modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition: - bat-rplp-1: NOTRUN -> [SKIP][6] ([i915#3555]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-rplp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - bat-arls-2: NOTRUN -> [SKIP][7] ([i915#11589] / [i915#1769]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-arls-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#1769] / [i915#3555]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#1769] / [i915#3555]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-jsl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#1769]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-twl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - bat-twl-1: NOTRUN -> [SKIP][11] ([i915#1769]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-twl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#1769] / [i915#3555]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-adls-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - fi-cfl-8700k: NOTRUN -> [SKIP][13] ([i915#1769]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-cfl-8700k/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-apl-1: NOTRUN -> [SKIP][14] ([i915#1769]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-apl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-kbl-2: NOTRUN -> [SKIP][15] +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-kbl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-arls-5: NOTRUN -> [SKIP][16] ([i915#1769]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-arls-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#11346]) +14 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-arlh-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - fi-rkl-11600: NOTRUN -> [SKIP][18] ([i915#1769] / [i915#3555]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-rkl-11600/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#1769] / [i915#3555]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-dg1-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-rpls-4: NOTRUN -> [SKIP][20] ([i915#1769] / [i915#3555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-rpls-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - fi-cfl-8109u: NOTRUN -> [SKIP][21] ([i915#1769]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-cfl-8109u/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - fi-kbl-7567u: NOTRUN -> [SKIP][22] ([i915#1769]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-kbl-7567u/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - fi-ivb-3770: NOTRUN -> [SKIP][23] ([i915#1769]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-ivb-3770/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - bat-dg2-14: NOTRUN -> [SKIP][24] ([i915#1769] / [i915#3555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-dg2-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - fi-cfl-guc: NOTRUN -> [SKIP][25] ([i915#1769]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-cfl-guc/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - bat-dg2-8: NOTRUN -> [SKIP][26] ([i915#1769] / [i915#3555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - fi-kbl-guc: NOTRUN -> [SKIP][27] +15 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-kbl-guc/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - fi-ilk-650: NOTRUN -> [SKIP][28] ([i915#1769]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-ilk-650/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - fi-tgl-1115g4: NOTRUN -> [SKIP][29] ([i915#1769] / [i915#3555]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-tgl-1115g4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - bat-arls-1: NOTRUN -> [SKIP][30] ([i915#1769]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-arls-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - fi-bsw-n3050: NOTRUN -> [SKIP][31] ([i915#1769]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-bsw-n3050/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - fi-glk-j4005: NOTRUN -> [SKIP][32] ([i915#1769]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-glk-j4005/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - bat-adlp-9: NOTRUN -> [SKIP][33] ([i915#1769] / [i915#3555]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-transition-fencing: - fi-kbl-x1275: NOTRUN -> [SKIP][34] +15 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-kbl-x1275/igt@kms_atomic_transition@plane-all-transition-fencing.html - bat-adlp-11: NOTRUN -> [SKIP][35] ([i915#10470]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-adlp-11/igt@kms_atomic_transition@plane-all-transition-fencing.html * igt@kms_atomic_transition@plane-all-transition-nonblocking: - bat-adlm-1: NOTRUN -> [SKIP][36] ([i915#9900]) +15 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-adlm-1/igt@kms_atomic_transition@plane-all-transition-nonblocking.html * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait: - fi-pnv-d510: NOTRUN -> [SKIP][37] +15 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-pnv-d510/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - fi-blb-e6850: NOTRUN -> [SKIP][38] +15 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/fi-blb-e6850/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing: - bat-arlh-2: NOTRUN -> [SKIP][39] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/bat-arlh-2/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11589]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11589 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7922 -> IGTPW_11397 CI-20190529: 20190529 CI_DRM_15060: 36e90f69c967f4cbcdd02c40c9ef25694ffb1a13 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11397: 11397 IGT_7922: 325d4f4efbf869f93d3b4479046713d0ce7220e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11397/index.html [-- Attachment #2: Type: text/html, Size: 15603 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeFULL: failure for Runtime alteration of debuglog level (rev3) 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala ` (4 preceding siblings ...) 2024-07-11 5:13 ` ✗ Fi.CI.BAT: " Patchwork @ 2024-07-11 5:47 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-07-11 5:47 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 38726 bytes --] == Series Details == Series: Runtime alteration of debuglog level (rev3) URL : https://patchwork.freedesktop.org/series/135823/ State : failure == Summary == CI Bug Log - changes from XEIGT_7922_full -> XEIGTPW_11397_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11397_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11397_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11397_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_oa@oa-regs-whitelisted}: - shard-lnl: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html * {igt@xe_oa@oa-regs-whitelisted@rcs-0}: - shard-lnl: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * {igt@xe_oa@unprivileged-single-ctx-counters}: - shard-lnl: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@xe_oa@unprivileged-single-ctx-counters.html Known issues ------------ Here are the changes found in XEIGTPW_11397_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1125]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@intel_hwmon@hwmon-write.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#873]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#873]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#316]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +10 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#367]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1512]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1399]) +12 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#787]) +34 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +9 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#1252]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#306]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) +11 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][24] ([Intel XE#1178]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#307]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-436/igt@kms_cursor_crc@cursor-random-max-size.html - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-5/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#309]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#323]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#323]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#307]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-463/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#599]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#702]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1138]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1421]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1504]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1397]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1401]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#651]) +12 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1469]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656]) +27 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1470]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html * igt@kms_panel_fitting@legacy@pipe-b-edp-1: - shard-lnl: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#324]) +1 other test dmesg-warn [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-5/igt@kms_panel_fitting@legacy@pipe-b-edp-1.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_panel_fitting@legacy@pipe-b-edp-1.html * igt@kms_plane@plane-position-hole: - shard-lnl: [PASS][49] -> [DMESG-FAIL][50] ([Intel XE#324]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-8/igt@kms_plane@plane-position-hole.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_plane@plane-position-hole.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-c-edp-1: - shard-lnl: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#1705]) +1 other test dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-6/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-c-edp-1.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-c-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][53] -> [FAIL][54] ([Intel XE#361]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#498]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#305]) +23 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_pm_backlight@fade-with-suspend: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#870]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1439]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#1489]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-434/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1122] / [Intel XE#1201]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1406]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-5/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#929]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@kms_psr@psr-primary-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1127]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1437]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1435]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#330]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][72] -> [FAIL][73] ([Intel XE#771] / [Intel XE#899]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#899]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][76] -> [DMESG-WARN][77] ([Intel XE#2226]) +1 other test dmesg-warn [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1447]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1126] / [Intel XE#1201]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1062]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@xe_create@create-big-vram.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#1600]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][82] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#402]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#688]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@xe_evict@evict-beng-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][84] -> [TIMEOUT][85] ([Intel XE#1473]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-small.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1392]) +13 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@many-execqueues-basic-imm: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#288]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: NOTRUN -> [TIMEOUT][88] ([Intel XE#2105]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_gt_freq@freq_range_idle: - shard-lnl: [PASS][89] -> [SKIP][90] ([Intel XE#1462]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-7/igt@xe_gt_freq@freq_range_idle.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@xe_gt_freq@freq_range_idle.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1192]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_mmap@small-bar: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#512]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@xe_mmap@small-bar.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#1195] / [Intel XE#1694]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-unbind-all.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#584]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-1/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [PASS][96] -> [DMESG-WARN][97] ([Intel XE#569]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#1162] / [Intel XE#1941]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][100] ([Intel XE#1551] / [Intel XE#569]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [PASS][101] -> [ABORT][102] ([Intel XE#1358] / [Intel XE#1794]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-6/igt@xe_pm@s4-basic-exec.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][103] -> [ABORT][104] ([Intel XE#1358] / [Intel XE#1607]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-6/igt@xe_pm@s4-d3hot-basic-exec.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm_residency@gt-c6-freeze: - shard-lnl: NOTRUN -> [FAIL][105] ([Intel XE#1442]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#944]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-2/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_wedged@basic-wedged: - shard-lnl: NOTRUN -> [DMESG-WARN][107] ([Intel XE#1760]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_atomic@crtc-invalid-params@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][108] ([Intel XE#1195]) -> [PASS][109] +1 other test pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-463/igt@kms_atomic@crtc-invalid-params@pipe-a-hdmi-a-6.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-463/igt@kms_atomic@crtc-invalid-params@pipe-a-hdmi-a-6.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [FAIL][110] ([Intel XE#1659]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][112] ([Intel XE#1551]) -> [PASS][113] +3 other tests pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [DMESG-WARN][114] ([Intel XE#1162]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4: - shard-dg2-set2: [DMESG-WARN][116] -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-lnl: [DMESG-FAIL][118] ([Intel XE#1620]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-2/igt@kms_pm_rpm@system-suspend-modeset.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@xe_exec_basic@many-null-defer-bind: - shard-lnl: [INCOMPLETE][120] -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-5/igt@xe_exec_basic@many-null-defer-bind.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-4/igt@xe_exec_basic@many-null-defer-bind.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [FAIL][122] -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-464/igt@xe_module_load@many-reload.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-463/igt@xe_module_load@many-reload.html * igt@xe_pm@s3-multiple-execs: - shard-dg2-set2: [DMESG-WARN][124] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-mocs: - shard-lnl: [ABORT][126] ([Intel XE#1794]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-2/igt@xe_pm@s4-mocs.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@xe_pm@s4-mocs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][128] ([Intel XE#1442]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [INCOMPLETE][130] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][131] ([Intel XE#1473] / [Intel XE#392]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-dg2-463/igt@xe_evict@evict-beng-mixed-threads-large.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-dg2-433/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_wedged@wedged-at-any-timeout: - shard-lnl: [DMESG-FAIL][132] ([Intel XE#1760]) -> [DMESG-WARN][133] ([Intel XE#1330] / [Intel XE#1760]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7922/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/shard-lnl-5/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1462 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207 [Intel XE#2226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2226 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_7922 -> IGTPW_11397 * Linux: xe-1589-28c3b18581a110660a7c42bb988a12a3b1f6d402 -> xe-1591-36e90f69c967f4cbcdd02c40c9ef25694ffb1a13 IGTPW_11397: 11397 IGT_7922: 325d4f4efbf869f93d3b4479046713d0ce7220e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1589-28c3b18581a110660a7c42bb988a12a3b1f6d402: 28c3b18581a110660a7c42bb988a12a3b1f6d402 xe-1591-36e90f69c967f4cbcdd02c40c9ef25694ffb1a13: 36e90f69c967f4cbcdd02c40c9ef25694ffb1a13 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11397/index.html [-- Attachment #2: Type: text/html, Size: 45564 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-07-11 5:48 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-11 4:13 [PATCH i-g-t v3 0/3] Runtime alteration of debuglog level Pranay Samala 2024-07-11 4:13 ` [PATCH i-g-t v3 1/3] lib/igt_sysfs: Implement dynamic adjustment of debug log level Pranay Samala 2024-07-11 5:47 ` Modem, Bhanuprakash 2024-07-11 4:13 ` [PATCH i-g-t v3 2/3] tests/kms_atomic_transition: Reducing debug loglevel dynamically Pranay Samala 2024-07-11 5:47 ` Modem, Bhanuprakash 2024-07-11 4:13 ` [PATCH i-g-t v3 3/3] tests/intel-ci/fast-feedback.testlist: To get the required results Pranay Samala 2024-07-11 5:47 ` Modem, Bhanuprakash 2024-07-11 4:50 ` ✗ CI.xeBAT: failure for Runtime alteration of debuglog level (rev3) Patchwork 2024-07-11 5:13 ` ✗ Fi.CI.BAT: " Patchwork 2024-07-11 5:47 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox