* [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-25 16:19 [PATCH i-g-t 0/1] CCS hibernate test Juha-Pekka Heikkila
@ 2024-11-25 16:19 ` Juha-Pekka Heikkila
2024-11-25 18:20 ` Rodrigo Vivi
0 siblings, 1 reply; 18+ messages in thread
From: Juha-Pekka Heikkila @ 2024-11-25 16:19 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Add hibernate test which bring entire system down for short
hibernate. This mode is added to suspend tests to be run
manually with '-r' flag because this is not ci friendly test,
on hibernate ci would lose connection to the hibernated box.
For this test to work kernel resume point need to be set using swapfile, from
kernel command line is checked if there is found something along the lines of
"resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
will be successfull.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 159 insertions(+), 3 deletions(-)
diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
index 3e9a57863..fd2fe9d3d 100644
--- a/tests/intel/kms_ccs.c
+++ b/tests/intel/kms_ccs.c
@@ -190,6 +190,7 @@ typedef struct {
bool user_seed;
enum igt_commit_style commit;
int fb_list_length;
+ bool do_hibernate;
struct {
struct igt_fb fb;
int width, height;
@@ -271,6 +272,154 @@ static const struct {
*/
#define MAX_SPRITE_PLANE_WIDTH 2000
+/* constants for hibenate test */
+#define RTC_WAKE_CMD "rtcwake -m no -s %d"
+#define PROC_CMDLINE "/proc/cmdline"
+#define SYS_POWER_STATE "/sys/power/state"
+#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
+
+static void check_hibernation_support(void)
+{
+ int fd;
+ char buffer[2048];
+ ssize_t bytes_read;
+ FILE *cmdline;
+
+ /* Check if hibernation is supported in /sys/power/state */
+ fd = open(SYS_POWER_STATE, O_RDONLY);
+ igt_require_f(fd > 0, "Failed to open /sys/power/state");
+ bytes_read = read(fd, buffer, sizeof(buffer) - 1);
+ close(fd);
+
+ igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
+
+ buffer[bytes_read] = '\0';
+ igt_require_f(strstr(buffer, "disk") != NULL,
+ "Hibernation (suspend to disk) is not supported on this system.\n");
+
+ /* Check if resume is configured in kernel command line */
+ cmdline = fopen(PROC_CMDLINE, "r");
+ igt_require_f(cmdline, "Failed to open /proc/cmdline");
+ fread(buffer, 1, sizeof(buffer) - 1, cmdline);
+ fclose(cmdline);
+
+ igt_require_f(strstr(buffer, "resume="),
+ "Kernel does not have 'resume' parameter configured for hibernation.\n");
+}
+
+static void set_rtc_wake_timer(int seconds)
+{
+ char command[256];
+
+ snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
+
+ igt_require_f(system(command) == 0,
+ "Failed to set RTC wake timer.\n");
+}
+
+static void hibernate_system(void)
+{
+ int fd;
+
+ fd = open(SYS_POWER_STATE, O_WRONLY);
+ igt_require_f(fd > 0, "Failed to open /sys/power/state");
+
+ if (write(fd, "disk", 4) != 4) {
+ close(fd);
+ igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
+ }
+ close(fd);
+}
+
+static void ensure_grub_boots_same_kernel(void)
+{
+ char cmdline[1024];
+ char current_kernel[256];
+ char last_menuentry[512] = "";
+ char grub_entry[512];
+ char command[1024];
+ FILE *cmdline_file, *grub_cfg;
+ char line[1024];
+ bool kernel_found = false;
+ char *kernel_arg;
+ char *kernel_end;
+
+ /* Read /proc/cmdline to get the current kernel image */
+ cmdline_file = fopen(PROC_CMDLINE, "r");
+ igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
+
+ if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
+ fclose(cmdline_file);
+ igt_require_f(0, "Failed to read /proc/cmdline");
+ }
+ fclose(cmdline_file);
+
+ /* Parse the kernel image from cmdline */
+ kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
+ igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
+
+ kernel_arg += strlen("BOOT_IMAGE=");
+ kernel_end = strchr(kernel_arg, ' ');
+
+ if (!kernel_end)
+ kernel_end = kernel_arg + strlen(kernel_arg);
+
+ snprintf(current_kernel, sizeof(current_kernel), "%.*s",
+ (int)(kernel_end - kernel_arg), kernel_arg);
+ igt_debug("Current kernel image: %s\n", current_kernel);
+
+ /* Open GRUB config file to find matching entry */
+ grub_cfg = fopen(GRUB_CFG_PATH, "r");
+ igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
+
+
+ while (fgets(line, sizeof(line), grub_cfg)) {
+ /* Check if the line contains a menuentry */
+ if (strstr(line, "menuentry")) {
+ /* Store the menuentry line */
+ char *start = strchr(line, '\'');
+ char *end = start ? strchr(start + 1, '\'') : NULL;
+
+ if (start && end) {
+ snprintf(last_menuentry,
+ sizeof(last_menuentry),
+ "%.*s", (int)(end - start - 1),
+ start + 1);
+ }
+ }
+
+ /* Check if the current line contains the kernel */
+ if (strstr(line, current_kernel)) {
+ /* Use the last seen menuentry as the match */
+ snprintf(grub_entry, sizeof(grub_entry), "%s",
+ last_menuentry);
+ kernel_found = true;
+ break;
+ }
+ }
+
+ fclose(grub_cfg);
+
+ igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
+ current_kernel);
+
+ /* Set the GRUB boot target using grub-reboot */
+ snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
+ igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
+ grub_entry);
+
+ igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
+ current_kernel, grub_entry);
+}
+
+static void hibernate_autoresume(int resume_delay)
+{
+ check_hibernation_support();
+ set_rtc_wake_timer(resume_delay);
+ ensure_grub_boots_same_kernel();
+ hibernate_system();
+}
+
static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
{
int i;
@@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
- igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
- SUSPEND_TEST_NONE);
+ if (data->do_hibernate)
+ hibernate_autoresume(30);
+ else
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+ SUSPEND_TEST_NONE);
/* on resume check flat ccs is still compressed */
if (is_xe_device(data->drm_fd) &&
@@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
data->user_seed = true;
data->seed = strtoul(optarg, NULL, 0);
break;
+ case 'r':
+ data->do_hibernate = true;
+ break;
default:
return IGT_OPT_HANDLER_ERROR;
}
@@ -1056,9 +1211,10 @@ static data_t data;
static const char *help_str =
" -c\t\tCheck the presence of compression meta-data\n"
" -s <seed>\tSeed for random number generator\n"
+" -r\t\tOn suspend test do full hibernate with reboot\n"
;
-igt_main_args("cs:", NULL, help_str, opt_handler, &data)
+igt_main_args("csr:", NULL, help_str, opt_handler, &data)
{
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-25 16:19 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
@ 2024-11-25 18:20 ` Rodrigo Vivi
[not found] ` <CAJ=qYWRYeg7mbbQGAGHbkHu8sAC0+Rq5J2CfZinFVniX7jsjMg@mail.gmail.com>
0 siblings, 1 reply; 18+ messages in thread
From: Rodrigo Vivi @ 2024-11-25 18:20 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> Add hibernate test which bring entire system down for short
> hibernate. This mode is added to suspend tests to be run
> manually with '-r' flag because this is not ci friendly test,
> on hibernate ci would lose connection to the hibernated box.
I know that nowadays it is a beast to get hibernate to work in the distros,
but afaik our CI is prepared for that, otherwise we wouldn't be able to
get these:
https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
>
> For this test to work kernel resume point need to be set using swapfile, from
> kernel command line is checked if there is found something along the lines of
> "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> will be successfull.
Indeed painful nowadays... I can't even believe this gap came from user
report... is anyone really still using hibernation nowadays?! :)
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
> tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 159 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> index 3e9a57863..fd2fe9d3d 100644
> --- a/tests/intel/kms_ccs.c
> +++ b/tests/intel/kms_ccs.c
> @@ -190,6 +190,7 @@ typedef struct {
> bool user_seed;
> enum igt_commit_style commit;
> int fb_list_length;
> + bool do_hibernate;
> struct {
> struct igt_fb fb;
> int width, height;
> @@ -271,6 +272,154 @@ static const struct {
> */
> #define MAX_SPRITE_PLANE_WIDTH 2000
>
> +/* constants for hibenate test */
> +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
Why are you calling rtcwake directly instead of using
igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> +#define PROC_CMDLINE "/proc/cmdline"
> +#define SYS_POWER_STATE "/sys/power/state"
> +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> +
> +static void check_hibernation_support(void)
> +{
> + int fd;
> + char buffer[2048];
> + ssize_t bytes_read;
> + FILE *cmdline;
> +
> + /* Check if hibernation is supported in /sys/power/state */
> + fd = open(SYS_POWER_STATE, O_RDONLY);
> + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> + close(fd);
> +
> + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> +
> + buffer[bytes_read] = '\0';
> + igt_require_f(strstr(buffer, "disk") != NULL,
> + "Hibernation (suspend to disk) is not supported on this system.\n");
> +
> + /* Check if resume is configured in kernel command line */
> + cmdline = fopen(PROC_CMDLINE, "r");
> + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> + fclose(cmdline);
> +
> + igt_require_f(strstr(buffer, "resume="),
> + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> +}
we should probably have this in the igt_pm lib to be used in other places
like xe_pm. I remember we had discussions when s4 started failing in CI,
but apparently the solution was to make CI to work with it instead of
protecting our s4 tests...
> +
> +static void set_rtc_wake_timer(int seconds)
> +{
> + char command[256];
> +
> + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> +
> + igt_require_f(system(command) == 0,
> + "Failed to set RTC wake timer.\n");
> +}
> +
> +static void hibernate_system(void)
> +{
> + int fd;
> +
> + fd = open(SYS_POWER_STATE, O_WRONLY);
> + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> +
> + if (write(fd, "disk", 4) != 4) {
> + close(fd);
> + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> + }
> + close(fd);
> +}
> +
> +static void ensure_grub_boots_same_kernel(void)
I don't believe that this should be to the test case to ensure.
This should be ensured by the infra to support these s4 testcases.
> +{
> + char cmdline[1024];
> + char current_kernel[256];
> + char last_menuentry[512] = "";
> + char grub_entry[512];
> + char command[1024];
> + FILE *cmdline_file, *grub_cfg;
> + char line[1024];
> + bool kernel_found = false;
> + char *kernel_arg;
> + char *kernel_end;
> +
> + /* Read /proc/cmdline to get the current kernel image */
> + cmdline_file = fopen(PROC_CMDLINE, "r");
> + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> +
> + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> + fclose(cmdline_file);
> + igt_require_f(0, "Failed to read /proc/cmdline");
> + }
> + fclose(cmdline_file);
> +
> + /* Parse the kernel image from cmdline */
> + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> +
> + kernel_arg += strlen("BOOT_IMAGE=");
> + kernel_end = strchr(kernel_arg, ' ');
> +
> + if (!kernel_end)
> + kernel_end = kernel_arg + strlen(kernel_arg);
> +
> + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> + (int)(kernel_end - kernel_arg), kernel_arg);
> + igt_debug("Current kernel image: %s\n", current_kernel);
> +
> + /* Open GRUB config file to find matching entry */
> + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> +
> +
> + while (fgets(line, sizeof(line), grub_cfg)) {
> + /* Check if the line contains a menuentry */
> + if (strstr(line, "menuentry")) {
> + /* Store the menuentry line */
> + char *start = strchr(line, '\'');
> + char *end = start ? strchr(start + 1, '\'') : NULL;
> +
> + if (start && end) {
> + snprintf(last_menuentry,
> + sizeof(last_menuentry),
> + "%.*s", (int)(end - start - 1),
> + start + 1);
> + }
> + }
> +
> + /* Check if the current line contains the kernel */
> + if (strstr(line, current_kernel)) {
> + /* Use the last seen menuentry as the match */
> + snprintf(grub_entry, sizeof(grub_entry), "%s",
> + last_menuentry);
> + kernel_found = true;
> + break;
> + }
> + }
> +
> + fclose(grub_cfg);
> +
> + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> + current_kernel);
> +
> + /* Set the GRUB boot target using grub-reboot */
> + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> + grub_entry);
> +
> + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> + current_kernel, grub_entry);
> +}
> +
> +static void hibernate_autoresume(int resume_delay)
> +{
> + check_hibernation_support();
> + set_rtc_wake_timer(resume_delay);
> + ensure_grub_boots_same_kernel();
> + hibernate_system();
> +}
> +
> static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> {
> int i;
> @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
>
> if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> - SUSPEND_TEST_NONE);
> + if (data->do_hibernate)
> + hibernate_autoresume(30);
> + else
> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> + SUSPEND_TEST_NONE);
>
> /* on resume check flat ccs is still compressed */
> if (is_xe_device(data->drm_fd) &&
> @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> data->user_seed = true;
> data->seed = strtoul(optarg, NULL, 0);
> break;
> + case 'r':
> + data->do_hibernate = true;
> + break;
> default:
> return IGT_OPT_HANDLER_ERROR;
> }
> @@ -1056,9 +1211,10 @@ static data_t data;
> static const char *help_str =
> " -c\t\tCheck the presence of compression meta-data\n"
> " -s <seed>\tSeed for random number generator\n"
> +" -r\t\tOn suspend test do full hibernate with reboot\n"
> ;
>
> -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> {
> igt_fixture {
> data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
[not found] ` <CAJ=qYWRYeg7mbbQGAGHbkHu8sAC0+Rq5J2CfZinFVniX7jsjMg@mail.gmail.com>
@ 2024-11-26 8:07 ` Juha-Pekka Heikkilä
2024-11-26 12:59 ` Rodrigo Vivi
0 siblings, 1 reply; 18+ messages in thread
From: Juha-Pekka Heikkilä @ 2024-11-26 8:07 UTC (permalink / raw)
To: Development mailing list for IGT GPU Tools
Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
<juhapekka.heikkila@gmail.com> wrote:
>
> On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> >
> > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> > > Add hibernate test which bring entire system down for short
> > > hibernate. This mode is added to suspend tests to be run
> > > manually with '-r' flag because this is not ci friendly test,
> > > on hibernate ci would lose connection to the hibernated box.
> >
> > I know that nowadays it is a beast to get hibernate to work in the distros,
> > but afaik our CI is prepared for that, otherwise we wouldn't be able to
> > get these:
> >
> > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
>
> If you go see those test machine bootlogs you see there is no resume
> configured. I think all these current s4 tests work with pm_test hence
> also original problem where tests didn't reproduce that broken ccs
> after resume. If you try running on your own box any of these s4 tests
> you'll see they don't go fully down. I wanted to have a test that does
> the same as real hibernate.
>
> >
> > >
> > > For this test to work kernel resume point need to be set using swapfile, from
> > > kernel command line is checked if there is found something along the lines of
> > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> > > will be successfull.
> >
> > Indeed painful nowadays... I can't even believe this gap came from user
> > report... is anyone really still using hibernation nowadays?! :)
> >
> > >
> > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > ---
> > > tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > index 3e9a57863..fd2fe9d3d 100644
> > > --- a/tests/intel/kms_ccs.c
> > > +++ b/tests/intel/kms_ccs.c
> > > @@ -190,6 +190,7 @@ typedef struct {
> > > bool user_seed;
> > > enum igt_commit_style commit;
> > > int fb_list_length;
> > > + bool do_hibernate;
> > > struct {
> > > struct igt_fb fb;
> > > int width, height;
> > > @@ -271,6 +272,154 @@ static const struct {
> > > */
> > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > >
> > > +/* constants for hibenate test */
> > > +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
> >
> > Why are you calling rtcwake directly instead of using
> > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> >
> > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
>
> I wanted rtc only to wake up the machine. On
> igt_system_suspend_autoresume(..) I'd get pm_test handling which I
> want to avoid here.
>
> >
> > > +#define PROC_CMDLINE "/proc/cmdline"
> > > +#define SYS_POWER_STATE "/sys/power/state"
> > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > +
> > > +static void check_hibernation_support(void)
> > > +{
> > > + int fd;
> > > + char buffer[2048];
> > > + ssize_t bytes_read;
> > > + FILE *cmdline;
> > > +
> > > + /* Check if hibernation is supported in /sys/power/state */
> > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > + close(fd);
> > > +
> > > + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> > > +
> > > + buffer[bytes_read] = '\0';
> > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > + "Hibernation (suspend to disk) is not supported on this system.\n");
> > > +
> > > + /* Check if resume is configured in kernel command line */
> > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > + fclose(cmdline);
> > > +
> > > + igt_require_f(strstr(buffer, "resume="),
> > > + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> > > +}
> >
> > we should probably have this in the igt_pm lib to be used in other places
> > like xe_pm. I remember we had discussions when s4 started failing in CI,
> > but apparently the solution was to make CI to work with it instead of
> > protecting our s4 tests...
>
> I was last week talking with Jari Tahvanainen about this. Our ci is
> not configured for the machines really hibernating, he suggested we
> first start with one test, start to run it in special box, and we go
> on from there .. so, here we are :)
> I agree final destination for this function should be in lib/ like in
> igt_pm or so.
>
> >
> > > +
> > > +static void set_rtc_wake_timer(int seconds)
> > > +{
> > > + char command[256];
> > > +
> > > + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> > > +
> > > + igt_require_f(system(command) == 0,
> > > + "Failed to set RTC wake timer.\n");
> > > +}
> > > +
> > > +static void hibernate_system(void)
> > > +{
> > > + int fd;
> > > +
> > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > +
> > > + if (write(fd, "disk", 4) != 4) {
> > > + close(fd);
> > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > + }
> > > + close(fd);
> > > +}
> > > +
> > > +static void ensure_grub_boots_same_kernel(void)
> >
> > I don't believe that this should be to the test case to ensure.
> > This should be ensured by the infra to support these s4 testcases.
>
> This is bit so-so. If guys would run this test on their own boxes to
> do some debugging, forgetting to always set the correct kernel for the
> next in-test reboot would cause incorrect results.
>
> >
> > > +{
> > > + char cmdline[1024];
> > > + char current_kernel[256];
> > > + char last_menuentry[512] = "";
> > > + char grub_entry[512];
> > > + char command[1024];
> > > + FILE *cmdline_file, *grub_cfg;
> > > + char line[1024];
> > > + bool kernel_found = false;
> > > + char *kernel_arg;
> > > + char *kernel_end;
> > > +
> > > + /* Read /proc/cmdline to get the current kernel image */
> > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> > > +
> > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > + fclose(cmdline_file);
> > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > + }
> > > + fclose(cmdline_file);
> > > +
> > > + /* Parse the kernel image from cmdline */
> > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> > > +
> > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > + kernel_end = strchr(kernel_arg, ' ');
> > > +
> > > + if (!kernel_end)
> > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > +
> > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > + igt_debug("Current kernel image: %s\n", current_kernel);
> > > +
> > > + /* Open GRUB config file to find matching entry */
> > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> > > +
> > > +
> > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > + /* Check if the line contains a menuentry */
> > > + if (strstr(line, "menuentry")) {
> > > + /* Store the menuentry line */
> > > + char *start = strchr(line, '\'');
> > > + char *end = start ? strchr(start + 1, '\'') : NULL;
> > > +
> > > + if (start && end) {
> > > + snprintf(last_menuentry,
> > > + sizeof(last_menuentry),
> > > + "%.*s", (int)(end - start - 1),
> > > + start + 1);
> > > + }
> > > + }
> > > +
> > > + /* Check if the current line contains the kernel */
> > > + if (strstr(line, current_kernel)) {
> > > + /* Use the last seen menuentry as the match */
> > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > + last_menuentry);
> > > + kernel_found = true;
> > > + break;
> > > + }
> > > + }
> > > +
> > > + fclose(grub_cfg);
> > > +
> > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> > > + current_kernel);
> > > +
> > > + /* Set the GRUB boot target using grub-reboot */
> > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> > > + grub_entry);
> > > +
> > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > + current_kernel, grub_entry);
> > > +}
> > > +
> > > +static void hibernate_autoresume(int resume_delay)
> > > +{
> > > + check_hibernation_support();
> > > + set_rtc_wake_timer(resume_delay);
> > > + ensure_grub_boots_same_kernel();
> > > + hibernate_system();
> > > +}
> > > +
> > > static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> > > {
> > > int i;
> > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
> > >
> > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> > > - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > - SUSPEND_TEST_NONE);
> > > + if (data->do_hibernate)
> > > + hibernate_autoresume(30);
> > > + else
> > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > + SUSPEND_TEST_NONE);
> > >
> > > /* on resume check flat ccs is still compressed */
> > > if (is_xe_device(data->drm_fd) &&
> > > @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> > > data->user_seed = true;
> > > data->seed = strtoul(optarg, NULL, 0);
> > > break;
> > > + case 'r':
> > > + data->do_hibernate = true;
> > > + break;
> > > default:
> > > return IGT_OPT_HANDLER_ERROR;
> > > }
> > > @@ -1056,9 +1211,10 @@ static data_t data;
> > > static const char *help_str =
> > > " -c\t\tCheck the presence of compression meta-data\n"
> > > " -s <seed>\tSeed for random number generator\n"
> > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > ;
> > >
> > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > {
> > > igt_fixture {
> > > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > --
> > > 2.45.2
> > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-26 8:07 ` Juha-Pekka Heikkilä
@ 2024-11-26 12:59 ` Rodrigo Vivi
2024-11-26 17:12 ` Juha-Pekka Heikkilä
0 siblings, 1 reply; 18+ messages in thread
From: Rodrigo Vivi @ 2024-11-26 12:59 UTC (permalink / raw)
To: Juha-Pekka Heikkilä; +Cc: Development mailing list for IGT GPU Tools
On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
>
> On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> <juhapekka.heikkila@gmail.com> wrote:
> >
> > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > >
> > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> > > > Add hibernate test which bring entire system down for short
> > > > hibernate. This mode is added to suspend tests to be run
> > > > manually with '-r' flag because this is not ci friendly test,
> > > > on hibernate ci would lose connection to the hibernated box.
> > >
> > > I know that nowadays it is a beast to get hibernate to work in the distros,
> > > but afaik our CI is prepared for that, otherwise we wouldn't be able to
> > > get these:
> > >
> > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
> >
> > If you go see those test machine bootlogs you see there is no resume
> > configured. I think all these current s4 tests work with pm_test hence
> > also original problem where tests didn't reproduce that broken ccs
> > after resume. If you try running on your own box any of these s4 tests
> > you'll see they don't go fully down. I wanted to have a test that does
> > the same as real hibernate.
hmmm... something indeed changed because of CI.
I originally implemented them without SUSPEND_TEST_DEVICES, in a way that
the machine was going fully down in my ADL+DG2 machine.
But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices only")
modified that to make it work for CI.
So, perhaps we can do both, have the manual setup with -r and no TEST
and have the one with TEST but not fully down.
Have you reproduced the CSS reported bug? Then have you tried the solution
with the TEST?
> >
> > >
> > > >
> > > > For this test to work kernel resume point need to be set using swapfile, from
> > > > kernel command line is checked if there is found something along the lines of
> > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> > > > will be successfull.
> > >
> > > Indeed painful nowadays... I can't even believe this gap came from user
> > > report... is anyone really still using hibernation nowadays?! :)
> > >
> > > >
> > > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > > ---
> > > > tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > >
> > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > index 3e9a57863..fd2fe9d3d 100644
> > > > --- a/tests/intel/kms_ccs.c
> > > > +++ b/tests/intel/kms_ccs.c
> > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > bool user_seed;
> > > > enum igt_commit_style commit;
> > > > int fb_list_length;
> > > > + bool do_hibernate;
> > > > struct {
> > > > struct igt_fb fb;
> > > > int width, height;
> > > > @@ -271,6 +272,154 @@ static const struct {
> > > > */
> > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > >
> > > > +/* constants for hibenate test */
> > > > +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
> > >
> > > Why are you calling rtcwake directly instead of using
> > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > >
> > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> >
> > I wanted rtc only to wake up the machine. On
> > igt_system_suspend_autoresume(..) I'd get pm_test handling which I
> > want to avoid here.
you can do that.... just pass SUSPEND_TEST_NONE instead of
SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
here can be simplified.
And as I told perhaps we can have 3 cases:
hibernate-manual:
igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
SUSPEND_TEST_NONE);
hibernate-auto:
igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
SUSPEND_TEST_DEVICES);
suspend:
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_NONE);
> >
> > >
> > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > +
> > > > +static void check_hibernation_support(void)
> > > > +{
> > > > + int fd;
> > > > + char buffer[2048];
> > > > + ssize_t bytes_read;
> > > > + FILE *cmdline;
> > > > +
> > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > + close(fd);
> > > > +
> > > > + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> > > > +
> > > > + buffer[bytes_read] = '\0';
> > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > + "Hibernation (suspend to disk) is not supported on this system.\n");
> > > > +
> > > > + /* Check if resume is configured in kernel command line */
> > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > + fclose(cmdline);
> > > > +
> > > > + igt_require_f(strstr(buffer, "resume="),
> > > > + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> > > > +}
> > >
> > > we should probably have this in the igt_pm lib to be used in other places
> > > like xe_pm. I remember we had discussions when s4 started failing in CI,
> > > but apparently the solution was to make CI to work with it instead of
> > > protecting our s4 tests...
> >
> > I was last week talking with Jari Tahvanainen about this. Our ci is
> > not configured for the machines really hibernating, he suggested we
> > first start with one test, start to run it in special box, and we go
> > on from there .. so, here we are :)
> > I agree final destination for this function should be in lib/ like in
> > igt_pm or so.
> >
> > >
> > > > +
> > > > +static void set_rtc_wake_timer(int seconds)
> > > > +{
> > > > + char command[256];
> > > > +
> > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> > > > +
> > > > + igt_require_f(system(command) == 0,
> > > > + "Failed to set RTC wake timer.\n");
> > > > +}
> > > > +
> > > > +static void hibernate_system(void)
> > > > +{
> > > > + int fd;
> > > > +
> > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > +
> > > > + if (write(fd, "disk", 4) != 4) {
> > > > + close(fd);
> > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > + }
> > > > + close(fd);
> > > > +}
> > > > +
> > > > +static void ensure_grub_boots_same_kernel(void)
> > >
> > > I don't believe that this should be to the test case to ensure.
> > > This should be ensured by the infra to support these s4 testcases.
> >
> > This is bit so-so. If guys would run this test on their own boxes to
> > do some debugging, forgetting to always set the correct kernel for the
> > next in-test reboot would cause incorrect results.
> >
> > >
> > > > +{
> > > > + char cmdline[1024];
> > > > + char current_kernel[256];
> > > > + char last_menuentry[512] = "";
> > > > + char grub_entry[512];
> > > > + char command[1024];
> > > > + FILE *cmdline_file, *grub_cfg;
> > > > + char line[1024];
> > > > + bool kernel_found = false;
> > > > + char *kernel_arg;
> > > > + char *kernel_end;
> > > > +
> > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> > > > +
> > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > + fclose(cmdline_file);
> > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > + }
> > > > + fclose(cmdline_file);
> > > > +
> > > > + /* Parse the kernel image from cmdline */
> > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> > > > +
> > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > +
> > > > + if (!kernel_end)
> > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > +
> > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > + igt_debug("Current kernel image: %s\n", current_kernel);
> > > > +
> > > > + /* Open GRUB config file to find matching entry */
> > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> > > > +
> > > > +
> > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > + /* Check if the line contains a menuentry */
> > > > + if (strstr(line, "menuentry")) {
> > > > + /* Store the menuentry line */
> > > > + char *start = strchr(line, '\'');
> > > > + char *end = start ? strchr(start + 1, '\'') : NULL;
> > > > +
> > > > + if (start && end) {
> > > > + snprintf(last_menuentry,
> > > > + sizeof(last_menuentry),
> > > > + "%.*s", (int)(end - start - 1),
> > > > + start + 1);
> > > > + }
> > > > + }
> > > > +
> > > > + /* Check if the current line contains the kernel */
> > > > + if (strstr(line, current_kernel)) {
> > > > + /* Use the last seen menuentry as the match */
> > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > + last_menuentry);
> > > > + kernel_found = true;
> > > > + break;
> > > > + }
> > > > + }
> > > > +
> > > > + fclose(grub_cfg);
> > > > +
> > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> > > > + current_kernel);
> > > > +
> > > > + /* Set the GRUB boot target using grub-reboot */
> > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> > > > + grub_entry);
> > > > +
> > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > + current_kernel, grub_entry);
> > > > +}
> > > > +
> > > > +static void hibernate_autoresume(int resume_delay)
> > > > +{
> > > > + check_hibernation_support();
> > > > + set_rtc_wake_timer(resume_delay);
> > > > + ensure_grub_boots_same_kernel();
> > > > + hibernate_system();
> > > > +}
> > > > +
> > > > static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> > > > {
> > > > int i;
> > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
> > > >
> > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> > > > - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > - SUSPEND_TEST_NONE);
> > > > + if (data->do_hibernate)
> > > > + hibernate_autoresume(30);
> > > > + else
> > > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > + SUSPEND_TEST_NONE);
> > > >
> > > > /* on resume check flat ccs is still compressed */
> > > > if (is_xe_device(data->drm_fd) &&
> > > > @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> > > > data->user_seed = true;
> > > > data->seed = strtoul(optarg, NULL, 0);
> > > > break;
> > > > + case 'r':
> > > > + data->do_hibernate = true;
> > > > + break;
> > > > default:
> > > > return IGT_OPT_HANDLER_ERROR;
> > > > }
> > > > @@ -1056,9 +1211,10 @@ static data_t data;
> > > > static const char *help_str =
> > > > " -c\t\tCheck the presence of compression meta-data\n"
> > > > " -s <seed>\tSeed for random number generator\n"
> > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > ;
> > > >
> > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > {
> > > > igt_fixture {
> > > > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > --
> > > > 2.45.2
> > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-26 12:59 ` Rodrigo Vivi
@ 2024-11-26 17:12 ` Juha-Pekka Heikkilä
2024-11-27 13:21 ` Juha-Pekka Heikkilä
0 siblings, 1 reply; 18+ messages in thread
From: Juha-Pekka Heikkilä @ 2024-11-26 17:12 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: Development mailing list for IGT GPU Tools
On Tue, Nov 26, 2024 at 3:00 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
>
> On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> > Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
> >
> > On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> > <juhapekka.heikkila@gmail.com> wrote:
> > >
> > > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > > >
> > > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> > > > > Add hibernate test which bring entire system down for short
> > > > > hibernate. This mode is added to suspend tests to be run
> > > > > manually with '-r' flag because this is not ci friendly test,
> > > > > on hibernate ci would lose connection to the hibernated box.
> > > >
> > > > I know that nowadays it is a beast to get hibernate to work in the distros,
> > > > but afaik our CI is prepared for that, otherwise we wouldn't be able to
> > > > get these:
> > > >
> > > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
> > >
> > > If you go see those test machine bootlogs you see there is no resume
> > > configured. I think all these current s4 tests work with pm_test hence
> > > also original problem where tests didn't reproduce that broken ccs
> > > after resume. If you try running on your own box any of these s4 tests
> > > you'll see they don't go fully down. I wanted to have a test that does
> > > the same as real hibernate.
>
> hmmm... something indeed changed because of CI.
>
> I originally implemented them without SUSPEND_TEST_DEVICES, in a way that
> the machine was going fully down in my ADL+DG2 machine.
>
> But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices only")
> modified that to make it work for CI.
>
> So, perhaps we can do both, have the manual setup with -r and no TEST
> and have the one with TEST but not fully down.
>
> Have you reproduced the CSS reported bug? Then have you tried the solution
> with the TEST?
I suspect I earlier got lot of frozen test machines, with these test
it always affect testing of new test. This test I now have here does
reproduce that ccs bug with kernel where it's not fixed.
>
> > >
> > > >
> > > > >
> > > > > For this test to work kernel resume point need to be set using swapfile, from
> > > > > kernel command line is checked if there is found something along the lines of
> > > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> > > > > will be successfull.
> > > >
> > > > Indeed painful nowadays... I can't even believe this gap came from user
> > > > report... is anyone really still using hibernation nowadays?! :)
> > > >
> > > > >
> > > > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > > > ---
> > > > > tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> > > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > > >
> > > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > > index 3e9a57863..fd2fe9d3d 100644
> > > > > --- a/tests/intel/kms_ccs.c
> > > > > +++ b/tests/intel/kms_ccs.c
> > > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > > bool user_seed;
> > > > > enum igt_commit_style commit;
> > > > > int fb_list_length;
> > > > > + bool do_hibernate;
> > > > > struct {
> > > > > struct igt_fb fb;
> > > > > int width, height;
> > > > > @@ -271,6 +272,154 @@ static const struct {
> > > > > */
> > > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > > >
> > > > > +/* constants for hibenate test */
> > > > > +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
> > > >
> > > > Why are you calling rtcwake directly instead of using
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > > >
> > > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> > >
> > > I wanted rtc only to wake up the machine. On
> > > igt_system_suspend_autoresume(..) I'd get pm_test handling which I
> > > want to avoid here.
>
> you can do that.... just pass SUSPEND_TEST_NONE instead of
> SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
> here can be simplified.
>
> And as I told perhaps we can have 3 cases:
>
> hibernate-manual:
> igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> SUSPEND_TEST_NONE);
> hibernate-auto:
> igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> SUSPEND_TEST_DEVICES);
> suspend:
> igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> SUSPEND_TEST_NONE);
I'll try that, if that reproduce the bug then I can cut out those
hibernate_system(..) and set_rtc_wake_timer(..) and move
check_hibernation_support(..) to libigt. For reproducing I'll anyway
need to go to lab to see the machine, when I try these on ril system
it seems to want to restore my machine when it first time stay down
instead of resuming.
>
>
> > >
> > > >
> > > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > > +
> > > > > +static void check_hibernation_support(void)
> > > > > +{
> > > > > + int fd;
> > > > > + char buffer[2048];
> > > > > + ssize_t bytes_read;
> > > > > + FILE *cmdline;
> > > > > +
> > > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > > + close(fd);
> > > > > +
> > > > > + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> > > > > +
> > > > > + buffer[bytes_read] = '\0';
> > > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > > + "Hibernation (suspend to disk) is not supported on this system.\n");
> > > > > +
> > > > > + /* Check if resume is configured in kernel command line */
> > > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > > + fclose(cmdline);
> > > > > +
> > > > > + igt_require_f(strstr(buffer, "resume="),
> > > > > + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> > > > > +}
> > > >
> > > > we should probably have this in the igt_pm lib to be used in other places
> > > > like xe_pm. I remember we had discussions when s4 started failing in CI,
> > > > but apparently the solution was to make CI to work with it instead of
> > > > protecting our s4 tests...
> > >
> > > I was last week talking with Jari Tahvanainen about this. Our ci is
> > > not configured for the machines really hibernating, he suggested we
> > > first start with one test, start to run it in special box, and we go
> > > on from there .. so, here we are :)
> > > I agree final destination for this function should be in lib/ like in
> > > igt_pm or so.
> > >
> > > >
> > > > > +
> > > > > +static void set_rtc_wake_timer(int seconds)
> > > > > +{
> > > > > + char command[256];
> > > > > +
> > > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> > > > > +
> > > > > + igt_require_f(system(command) == 0,
> > > > > + "Failed to set RTC wake timer.\n");
> > > > > +}
> > > > > +
> > > > > +static void hibernate_system(void)
> > > > > +{
> > > > > + int fd;
> > > > > +
> > > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > +
> > > > > + if (write(fd, "disk", 4) != 4) {
> > > > > + close(fd);
> > > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > > + }
> > > > > + close(fd);
> > > > > +}
> > > > > +
> > > > > +static void ensure_grub_boots_same_kernel(void)
> > > >
> > > > I don't believe that this should be to the test case to ensure.
> > > > This should be ensured by the infra to support these s4 testcases.
> > >
> > > This is bit so-so. If guys would run this test on their own boxes to
> > > do some debugging, forgetting to always set the correct kernel for the
> > > next in-test reboot would cause incorrect results.
> > >
> > > >
> > > > > +{
> > > > > + char cmdline[1024];
> > > > > + char current_kernel[256];
> > > > > + char last_menuentry[512] = "";
> > > > > + char grub_entry[512];
> > > > > + char command[1024];
> > > > > + FILE *cmdline_file, *grub_cfg;
> > > > > + char line[1024];
> > > > > + bool kernel_found = false;
> > > > > + char *kernel_arg;
> > > > > + char *kernel_end;
> > > > > +
> > > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > > + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> > > > > +
> > > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > > + fclose(cmdline_file);
> > > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > > + }
> > > > > + fclose(cmdline_file);
> > > > > +
> > > > > + /* Parse the kernel image from cmdline */
> > > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> > > > > +
> > > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > > +
> > > > > + if (!kernel_end)
> > > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > > +
> > > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > > + igt_debug("Current kernel image: %s\n", current_kernel);
> > > > > +
> > > > > + /* Open GRUB config file to find matching entry */
> > > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > > + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> > > > > +
> > > > > +
> > > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > > + /* Check if the line contains a menuentry */
> > > > > + if (strstr(line, "menuentry")) {
> > > > > + /* Store the menuentry line */
> > > > > + char *start = strchr(line, '\'');
> > > > > + char *end = start ? strchr(start + 1, '\'') : NULL;
> > > > > +
> > > > > + if (start && end) {
> > > > > + snprintf(last_menuentry,
> > > > > + sizeof(last_menuentry),
> > > > > + "%.*s", (int)(end - start - 1),
> > > > > + start + 1);
> > > > > + }
> > > > > + }
> > > > > +
> > > > > + /* Check if the current line contains the kernel */
> > > > > + if (strstr(line, current_kernel)) {
> > > > > + /* Use the last seen menuentry as the match */
> > > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > > + last_menuentry);
> > > > > + kernel_found = true;
> > > > > + break;
> > > > > + }
> > > > > + }
> > > > > +
> > > > > + fclose(grub_cfg);
> > > > > +
> > > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> > > > > + current_kernel);
> > > > > +
> > > > > + /* Set the GRUB boot target using grub-reboot */
> > > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> > > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> > > > > + grub_entry);
> > > > > +
> > > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > > + current_kernel, grub_entry);
> > > > > +}
> > > > > +
> > > > > +static void hibernate_autoresume(int resume_delay)
> > > > > +{
> > > > > + check_hibernation_support();
> > > > > + set_rtc_wake_timer(resume_delay);
> > > > > + ensure_grub_boots_same_kernel();
> > > > > + hibernate_system();
> > > > > +}
> > > > > +
> > > > > static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> > > > > {
> > > > > int i;
> > > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
> > > > >
> > > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > > if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> > > > > - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > - SUSPEND_TEST_NONE);
> > > > > + if (data->do_hibernate)
> > > > > + hibernate_autoresume(30);
> > > > > + else
> > > > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > + SUSPEND_TEST_NONE);
> > > > >
> > > > > /* on resume check flat ccs is still compressed */
> > > > > if (is_xe_device(data->drm_fd) &&
> > > > > @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> > > > > data->user_seed = true;
> > > > > data->seed = strtoul(optarg, NULL, 0);
> > > > > break;
> > > > > + case 'r':
> > > > > + data->do_hibernate = true;
> > > > > + break;
> > > > > default:
> > > > > return IGT_OPT_HANDLER_ERROR;
> > > > > }
> > > > > @@ -1056,9 +1211,10 @@ static data_t data;
> > > > > static const char *help_str =
> > > > > " -c\t\tCheck the presence of compression meta-data\n"
> > > > > " -s <seed>\tSeed for random number generator\n"
> > > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > > ;
> > > > >
> > > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > > {
> > > > > igt_fixture {
> > > > > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > > --
> > > > > 2.45.2
> > > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-26 17:12 ` Juha-Pekka Heikkilä
@ 2024-11-27 13:21 ` Juha-Pekka Heikkilä
2024-11-28 6:19 ` Gupta, Anshuman
2024-11-28 12:44 ` Rodrigo Vivi
0 siblings, 2 replies; 18+ messages in thread
From: Juha-Pekka Heikkilä @ 2024-11-27 13:21 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: Development mailing list for IGT GPU Tools
On Tue, Nov 26, 2024 at 7:12 PM Juha-Pekka Heikkilä
<juhapekka.heikkila@gmail.com> wrote:
>
> On Tue, Nov 26, 2024 at 3:00 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> >
> > On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> > > Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
> > >
> > > On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> > > <juhapekka.heikkila@gmail.com> wrote:
> > > >
> > > > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > > > >
> > > > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> > > > > > Add hibernate test which bring entire system down for short
> > > > > > hibernate. This mode is added to suspend tests to be run
> > > > > > manually with '-r' flag because this is not ci friendly test,
> > > > > > on hibernate ci would lose connection to the hibernated box.
> > > > >
> > > > > I know that nowadays it is a beast to get hibernate to work in the distros,
> > > > > but afaik our CI is prepared for that, otherwise we wouldn't be able to
> > > > > get these:
> > > > >
> > > > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
> > > >
> > > > If you go see those test machine bootlogs you see there is no resume
> > > > configured. I think all these current s4 tests work with pm_test hence
> > > > also original problem where tests didn't reproduce that broken ccs
> > > > after resume. If you try running on your own box any of these s4 tests
> > > > you'll see they don't go fully down. I wanted to have a test that does
> > > > the same as real hibernate.
> >
> > hmmm... something indeed changed because of CI.
> >
> > I originally implemented them without SUSPEND_TEST_DEVICES, in a way that
> > the machine was going fully down in my ADL+DG2 machine.
> >
> > But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices only")
> > modified that to make it work for CI.
> >
> > So, perhaps we can do both, have the manual setup with -r and no TEST
> > and have the one with TEST but not fully down.
> >
> > Have you reproduced the CSS reported bug? Then have you tried the solution
> > with the TEST?
>
> I suspect I earlier got lot of frozen test machines, with these test
> it always affect testing of new test. This test I now have here does
> reproduce that ccs bug with kernel where it's not fixed.
>
> >
> > > >
> > > > >
> > > > > >
> > > > > > For this test to work kernel resume point need to be set using swapfile, from
> > > > > > kernel command line is checked if there is found something along the lines of
> > > > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> > > > > > will be successfull.
> > > > >
> > > > > Indeed painful nowadays... I can't even believe this gap came from user
> > > > > report... is anyone really still using hibernation nowadays?! :)
> > > > >
> > > > > >
> > > > > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > > > > ---
> > > > > > tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> > > > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > > > >
> > > > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > > > index 3e9a57863..fd2fe9d3d 100644
> > > > > > --- a/tests/intel/kms_ccs.c
> > > > > > +++ b/tests/intel/kms_ccs.c
> > > > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > > > bool user_seed;
> > > > > > enum igt_commit_style commit;
> > > > > > int fb_list_length;
> > > > > > + bool do_hibernate;
> > > > > > struct {
> > > > > > struct igt_fb fb;
> > > > > > int width, height;
> > > > > > @@ -271,6 +272,154 @@ static const struct {
> > > > > > */
> > > > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > > > >
> > > > > > +/* constants for hibenate test */
> > > > > > +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
> > > > >
> > > > > Why are you calling rtcwake directly instead of using
> > > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > > > >
> > > > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> > > >
> > > > I wanted rtc only to wake up the machine. On
> > > > igt_system_suspend_autoresume(..) I'd get pm_test handling which I
> > > > want to avoid here.
> >
> > you can do that.... just pass SUSPEND_TEST_NONE instead of
> > SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
> > here can be simplified.
> >
> > And as I told perhaps we can have 3 cases:
> >
> > hibernate-manual:
> > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > SUSPEND_TEST_NONE);
> > hibernate-auto:
> > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > SUSPEND_TEST_DEVICES);
> > suspend:
> > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > SUSPEND_TEST_NONE);
>
> I'll try that, if that reproduce the bug then I can cut out those
> hibernate_system(..) and set_rtc_wake_timer(..) and move
> check_hibernation_support(..) to libigt. For reproducing I'll anyway
> need to go to lab to see the machine, when I try these on ril system
> it seems to want to restore my machine when it first time stay down
> instead of resuming.
There is something fishy going on with
igt_system_suspend_autoresume(..). When I try to use
SUSPEND_STATE_DISK and SUSPEND_TEST_NONE, lnl boxes I've tried never
successfully hibernated. These boxes start to go down but don't power
off and I see same code always stuck on board led display. I'm not
able to pinpoint the issue since I'm not so familiar with pm code. On
same boxes, the hibernate code I have on this patch did work 5/5. As
above mentioned difference is I use rtc to wake the system but I on my
own go write /sys/power/state. While it should do the same thing,
something is different..no idea could it be just some firmware issue
vs timing but result is anyway different. I had quick try with mtl and
i915 igt_system_suspend_autoresume(..) where things did work as
expected.
>
> >
> >
> > > >
> > > > >
> > > > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > > > +
> > > > > > +static void check_hibernation_support(void)
> > > > > > +{
> > > > > > + int fd;
> > > > > > + char buffer[2048];
> > > > > > + ssize_t bytes_read;
> > > > > > + FILE *cmdline;
> > > > > > +
> > > > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > > > + close(fd);
> > > > > > +
> > > > > > + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> > > > > > +
> > > > > > + buffer[bytes_read] = '\0';
> > > > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > > > + "Hibernation (suspend to disk) is not supported on this system.\n");
> > > > > > +
> > > > > > + /* Check if resume is configured in kernel command line */
> > > > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > > > + fclose(cmdline);
> > > > > > +
> > > > > > + igt_require_f(strstr(buffer, "resume="),
> > > > > > + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> > > > > > +}
> > > > >
> > > > > we should probably have this in the igt_pm lib to be used in other places
> > > > > like xe_pm. I remember we had discussions when s4 started failing in CI,
> > > > > but apparently the solution was to make CI to work with it instead of
> > > > > protecting our s4 tests...
> > > >
> > > > I was last week talking with Jari Tahvanainen about this. Our ci is
> > > > not configured for the machines really hibernating, he suggested we
> > > > first start with one test, start to run it in special box, and we go
> > > > on from there .. so, here we are :)
> > > > I agree final destination for this function should be in lib/ like in
> > > > igt_pm or so.
> > > >
> > > > >
> > > > > > +
> > > > > > +static void set_rtc_wake_timer(int seconds)
> > > > > > +{
> > > > > > + char command[256];
> > > > > > +
> > > > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> > > > > > +
> > > > > > + igt_require_f(system(command) == 0,
> > > > > > + "Failed to set RTC wake timer.\n");
> > > > > > +}
> > > > > > +
> > > > > > +static void hibernate_system(void)
> > > > > > +{
> > > > > > + int fd;
> > > > > > +
> > > > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > +
> > > > > > + if (write(fd, "disk", 4) != 4) {
> > > > > > + close(fd);
> > > > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > > > + }
> > > > > > + close(fd);
> > > > > > +}
> > > > > > +
> > > > > > +static void ensure_grub_boots_same_kernel(void)
> > > > >
> > > > > I don't believe that this should be to the test case to ensure.
> > > > > This should be ensured by the infra to support these s4 testcases.
> > > >
> > > > This is bit so-so. If guys would run this test on their own boxes to
> > > > do some debugging, forgetting to always set the correct kernel for the
> > > > next in-test reboot would cause incorrect results.
> > > >
> > > > >
> > > > > > +{
> > > > > > + char cmdline[1024];
> > > > > > + char current_kernel[256];
> > > > > > + char last_menuentry[512] = "";
> > > > > > + char grub_entry[512];
> > > > > > + char command[1024];
> > > > > > + FILE *cmdline_file, *grub_cfg;
> > > > > > + char line[1024];
> > > > > > + bool kernel_found = false;
> > > > > > + char *kernel_arg;
> > > > > > + char *kernel_end;
> > > > > > +
> > > > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > > > + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> > > > > > +
> > > > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > > > + fclose(cmdline_file);
> > > > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > > > + }
> > > > > > + fclose(cmdline_file);
> > > > > > +
> > > > > > + /* Parse the kernel image from cmdline */
> > > > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> > > > > > +
> > > > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > > > +
> > > > > > + if (!kernel_end)
> > > > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > > > +
> > > > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > > > + igt_debug("Current kernel image: %s\n", current_kernel);
> > > > > > +
> > > > > > + /* Open GRUB config file to find matching entry */
> > > > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > > > + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> > > > > > +
> > > > > > +
> > > > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > > > + /* Check if the line contains a menuentry */
> > > > > > + if (strstr(line, "menuentry")) {
> > > > > > + /* Store the menuentry line */
> > > > > > + char *start = strchr(line, '\'');
> > > > > > + char *end = start ? strchr(start + 1, '\'') : NULL;
> > > > > > +
> > > > > > + if (start && end) {
> > > > > > + snprintf(last_menuentry,
> > > > > > + sizeof(last_menuentry),
> > > > > > + "%.*s", (int)(end - start - 1),
> > > > > > + start + 1);
> > > > > > + }
> > > > > > + }
> > > > > > +
> > > > > > + /* Check if the current line contains the kernel */
> > > > > > + if (strstr(line, current_kernel)) {
> > > > > > + /* Use the last seen menuentry as the match */
> > > > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > > > + last_menuentry);
> > > > > > + kernel_found = true;
> > > > > > + break;
> > > > > > + }
> > > > > > + }
> > > > > > +
> > > > > > + fclose(grub_cfg);
> > > > > > +
> > > > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> > > > > > + current_kernel);
> > > > > > +
> > > > > > + /* Set the GRUB boot target using grub-reboot */
> > > > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> > > > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> > > > > > + grub_entry);
> > > > > > +
> > > > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > > > + current_kernel, grub_entry);
> > > > > > +}
> > > > > > +
> > > > > > +static void hibernate_autoresume(int resume_delay)
> > > > > > +{
> > > > > > + check_hibernation_support();
> > > > > > + set_rtc_wake_timer(resume_delay);
> > > > > > + ensure_grub_boots_same_kernel();
> > > > > > + hibernate_system();
> > > > > > +}
> > > > > > +
> > > > > > static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> > > > > > {
> > > > > > int i;
> > > > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
> > > > > >
> > > > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > > > if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> > > > > > - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > - SUSPEND_TEST_NONE);
> > > > > > + if (data->do_hibernate)
> > > > > > + hibernate_autoresume(30);
> > > > > > + else
> > > > > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > + SUSPEND_TEST_NONE);
> > > > > >
> > > > > > /* on resume check flat ccs is still compressed */
> > > > > > if (is_xe_device(data->drm_fd) &&
> > > > > > @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> > > > > > data->user_seed = true;
> > > > > > data->seed = strtoul(optarg, NULL, 0);
> > > > > > break;
> > > > > > + case 'r':
> > > > > > + data->do_hibernate = true;
> > > > > > + break;
> > > > > > default:
> > > > > > return IGT_OPT_HANDLER_ERROR;
> > > > > > }
> > > > > > @@ -1056,9 +1211,10 @@ static data_t data;
> > > > > > static const char *help_str =
> > > > > > " -c\t\tCheck the presence of compression meta-data\n"
> > > > > > " -s <seed>\tSeed for random number generator\n"
> > > > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > > > ;
> > > > > >
> > > > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > > > {
> > > > > > igt_fixture {
> > > > > > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > > > --
> > > > > > 2.45.2
> > > > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* RE: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-27 13:21 ` Juha-Pekka Heikkilä
@ 2024-11-28 6:19 ` Gupta, Anshuman
2024-11-28 15:50 ` Juha-Pekka Heikkilä
2024-11-28 12:44 ` Rodrigo Vivi
1 sibling, 1 reply; 18+ messages in thread
From: Gupta, Anshuman @ 2024-11-28 6:19 UTC (permalink / raw)
To: Juha-Pekka Heikkilä, Vivi, Rodrigo
Cc: Development mailing list for IGT GPU Tools
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-
> Pekka Heikkilä
> Sent: Wednesday, November 27, 2024 6:51 PM
> To: Vivi, Rodrigo <rodrigo.vivi@intel.com>
> Cc: Development mailing list for IGT GPU Tools <igt-dev@lists.freedesktop.org>
> Subject: Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
>
> On Tue, Nov 26, 2024 at 7:12 PM Juha-Pekka Heikkilä
> <juhapekka.heikkila@gmail.com> wrote:
> >
> > On Tue, Nov 26, 2024 at 3:00 PM Rodrigo Vivi <rodrigo.vivi@intel.com>
> wrote:
> > >
> > > On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> > > > Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
> > > >
> > > > On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> > > > <juhapekka.heikkila@gmail.com> wrote:
> > > > >
> > > > > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi
> <rodrigo.vivi@intel.com> wrote:
> > > > > >
> > > > > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila
> wrote:
> > > > > > > Add hibernate test which bring entire system down for short
> > > > > > > hibernate. This mode is added to suspend tests to be run
> > > > > > > manually with '-r' flag because this is not ci friendly
> > > > > > > test, on hibernate ci would lose connection to the hibernated box.
> > > > > >
> > > > > > I know that nowadays it is a beast to get hibernate to work in
> > > > > > the distros, but afaik our CI is prepared for that, otherwise
> > > > > > we wouldn't be able to get these:
> > > > > >
> > > > > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilte
> > > > > > r=s4
> > > > >
> > > > > If you go see those test machine bootlogs you see there is no
> > > > > resume configured. I think all these current s4 tests work with
> > > > > pm_test hence also original problem where tests didn't reproduce
> > > > > that broken ccs after resume. If you try running on your own box
> > > > > any of these s4 tests you'll see they don't go fully down. I
> > > > > wanted to have a test that does the same as real hibernate.
> > >
> > > hmmm... something indeed changed because of CI.
Network driver does not resume properly and take time during actual hibernation,
AFAIU the problem might br igt tests are forked by igt_runner and igt_runner is a child of bash ssh instance.
Ssh connection are prone to disconnect on loss of network that will kill the bash and igt runner and igt test will be zombie.
If we can run igt runner as a background process or as native on console, and should make igt_runner to wait for network resume.
Thanks,
Anshuman.
> > >
> > > I originally implemented them without SUSPEND_TEST_DEVICES, in a way
> > > that the machine was going fully down in my ADL+DG2 machine.
> > >
> > > But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices
> > > only") modified that to make it work for CI.
> > >
> > > So, perhaps we can do both, have the manual setup with -r and no
> > > TEST and have the one with TEST but not fully down.
> > >
> > > Have you reproduced the CSS reported bug? Then have you tried the
> > > solution with the TEST?
> >
> > I suspect I earlier got lot of frozen test machines, with these test
> > it always affect testing of new test. This test I now have here does
> > reproduce that ccs bug with kernel where it's not fixed.
> >
> > >
> > > > >
> > > > > >
> > > > > > >
> > > > > > > For this test to work kernel resume point need to be set
> > > > > > > using swapfile, from kernel command line is checked if there
> > > > > > > is found something along the lines of
> > > > > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to
> > > > > > > verify hibernate will be successfull.
> > > > > >
> > > > > > Indeed painful nowadays... I can't even believe this gap came
> > > > > > from user report... is anyone really still using hibernation
> > > > > > nowadays?! :)
> > > > > >
> > > > > > >
> > > > > > > Signed-off-by: Juha-Pekka Heikkila
> > > > > > > <juhapekka.heikkila@gmail.com>
> > > > > > > ---
> > > > > > > tests/intel/kms_ccs.c | 162
> > > > > > > +++++++++++++++++++++++++++++++++++++++++-
> > > > > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > > > > >
> > > > > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > > > > index 3e9a57863..fd2fe9d3d 100644
> > > > > > > --- a/tests/intel/kms_ccs.c
> > > > > > > +++ b/tests/intel/kms_ccs.c
> > > > > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > > > > bool user_seed;
> > > > > > > enum igt_commit_style commit;
> > > > > > > int fb_list_length;
> > > > > > > + bool do_hibernate;
> > > > > > > struct {
> > > > > > > struct igt_fb fb;
> > > > > > > int width, height; @@ -271,6 +272,154 @@
> > > > > > > static const struct {
> > > > > > > */
> > > > > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > > > > >
> > > > > > > +/* constants for hibenate test */ #define RTC_WAKE_CMD
> > > > > > > +"rtcwake -m no -s %d"
> > > > > >
> > > > > > Why are you calling rtcwake directly instead of using
> > > > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > > > > >
> > > > > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> > > > >
> > > > > I wanted rtc only to wake up the machine. On
> > > > > igt_system_suspend_autoresume(..) I'd get pm_test handling which
> > > > > I want to avoid here.
> > >
> > > you can do that.... just pass SUSPEND_TEST_NONE instead of
> > > SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
> > > here can be simplified.
> > >
> > > And as I told perhaps we can have 3 cases:
> > >
> > > hibernate-manual:
> > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > SUSPEND_TEST_NONE);
> > > hibernate-auto:
> > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > SUSPEND_TEST_DEVICES);
> > > suspend:
> > > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > SUSPEND_TEST_NONE);
> >
> > I'll try that, if that reproduce the bug then I can cut out those
> > hibernate_system(..) and set_rtc_wake_timer(..) and move
> > check_hibernation_support(..) to libigt. For reproducing I'll anyway
> > need to go to lab to see the machine, when I try these on ril system
> > it seems to want to restore my machine when it first time stay down
> > instead of resuming.
>
> There is something fishy going on with
> igt_system_suspend_autoresume(..). When I try to use SUSPEND_STATE_DISK
> and SUSPEND_TEST_NONE, lnl boxes I've tried never successfully hibernated.
> These boxes start to go down but don't power off and I see same code always
> stuck on board led display. I'm not able to pinpoint the issue since I'm not so
> familiar with pm code. On same boxes, the hibernate code I have on this patch
> did work 5/5. As above mentioned difference is I use rtc to wake the system
> but I on my own go write /sys/power/state. While it should do the same
> thing, something is different..no idea could it be just some firmware issue vs
> timing but result is anyway different. I had quick try with mtl and
> i915 igt_system_suspend_autoresume(..) where things did work as expected.
>
> >
> > >
> > >
> > > > >
> > > > > >
> > > > > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > > > > +
> > > > > > > +static void check_hibernation_support(void) {
> > > > > > > + int fd;
> > > > > > > + char buffer[2048];
> > > > > > > + ssize_t bytes_read;
> > > > > > > + FILE *cmdline;
> > > > > > > +
> > > > > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > > > > + close(fd);
> > > > > > > +
> > > > > > > + igt_require_f(bytes_read > 0, "Failed to read
> > > > > > > + /sys/power/state");
> > > > > > > +
> > > > > > > + buffer[bytes_read] = '\0';
> > > > > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > > > > + "Hibernation (suspend to disk) is not
> > > > > > > + supported on this system.\n");
> > > > > > > +
> > > > > > > + /* Check if resume is configured in kernel command line */
> > > > > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > > > > + fclose(cmdline);
> > > > > > > +
> > > > > > > + igt_require_f(strstr(buffer, "resume="),
> > > > > > > + "Kernel does not have 'resume' parameter
> > > > > > > +configured for hibernation.\n"); }
> > > > > >
> > > > > > we should probably have this in the igt_pm lib to be used in
> > > > > > other places like xe_pm. I remember we had discussions when s4
> > > > > > started failing in CI, but apparently the solution was to make
> > > > > > CI to work with it instead of protecting our s4 tests...
> > > > >
> > > > > I was last week talking with Jari Tahvanainen about this. Our ci
> > > > > is not configured for the machines really hibernating, he
> > > > > suggested we first start with one test, start to run it in
> > > > > special box, and we go on from there .. so, here we are :) I
> > > > > agree final destination for this function should be in lib/ like
> > > > > in igt_pm or so.
> > > > >
> > > > > >
> > > > > > > +
> > > > > > > +static void set_rtc_wake_timer(int seconds) {
> > > > > > > + char command[256];
> > > > > > > +
> > > > > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD,
> > > > > > > + seconds);
> > > > > > > +
> > > > > > > + igt_require_f(system(command) == 0,
> > > > > > > + "Failed to set RTC wake timer.\n"); }
> > > > > > > +
> > > > > > > +static void hibernate_system(void) {
> > > > > > > + int fd;
> > > > > > > +
> > > > > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > > > > + igt_require_f(fd > 0, "Failed to open
> > > > > > > + /sys/power/state");
> > > > > > > +
> > > > > > > + if (write(fd, "disk", 4) != 4) {
> > > > > > > + close(fd);
> > > > > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > > > > + }
> > > > > > > + close(fd);
> > > > > > > +}
> > > > > > > +
> > > > > > > +static void ensure_grub_boots_same_kernel(void)
> > > > > >
> > > > > > I don't believe that this should be to the test case to ensure.
> > > > > > This should be ensured by the infra to support these s4 testcases.
> > > > >
> > > > > This is bit so-so. If guys would run this test on their own
> > > > > boxes to do some debugging, forgetting to always set the correct
> > > > > kernel for the next in-test reboot would cause incorrect results.
> > > > >
> > > > > >
> > > > > > > +{
> > > > > > > + char cmdline[1024];
> > > > > > > + char current_kernel[256];
> > > > > > > + char last_menuentry[512] = "";
> > > > > > > + char grub_entry[512];
> > > > > > > + char command[1024];
> > > > > > > + FILE *cmdline_file, *grub_cfg;
> > > > > > > + char line[1024];
> > > > > > > + bool kernel_found = false;
> > > > > > > + char *kernel_arg;
> > > > > > > + char *kernel_end;
> > > > > > > +
> > > > > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > > > > + igt_require_f(cmdline_file, "Failed to open
> > > > > > > + /proc/cmdline");
> > > > > > > +
> > > > > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > > > > + fclose(cmdline_file);
> > > > > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > > > > + }
> > > > > > > + fclose(cmdline_file);
> > > > > > > +
> > > > > > > + /* Parse the kernel image from cmdline */
> > > > > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in
> > > > > > > + /proc/cmdline\n");
> > > > > > > +
> > > > > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > > > > +
> > > > > > > + if (!kernel_end)
> > > > > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > > > > +
> > > > > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > > > > + igt_debug("Current kernel image: %s\n",
> > > > > > > + current_kernel);
> > > > > > > +
> > > > > > > + /* Open GRUB config file to find matching entry */
> > > > > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > > > > + igt_require_f(grub_cfg, "Failed to open GRUB
> > > > > > > + configuration file");
> > > > > > > +
> > > > > > > +
> > > > > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > > > > + /* Check if the line contains a menuentry */
> > > > > > > + if (strstr(line, "menuentry")) {
> > > > > > > + /* Store the menuentry line */
> > > > > > > + char *start = strchr(line, '\'');
> > > > > > > + char *end = start ? strchr(start + 1,
> > > > > > > + '\'') : NULL;
> > > > > > > +
> > > > > > > + if (start && end) {
> > > > > > > + snprintf(last_menuentry,
> > > > > > > + sizeof(last_menuentry),
> > > > > > > + "%.*s", (int)(end - start - 1),
> > > > > > > + start + 1);
> > > > > > > + }
> > > > > > > + }
> > > > > > > +
> > > > > > > + /* Check if the current line contains the kernel */
> > > > > > > + if (strstr(line, current_kernel)) {
> > > > > > > + /* Use the last seen menuentry as the match */
> > > > > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > > > > + last_menuentry);
> > > > > > > + kernel_found = true;
> > > > > > > + break;
> > > > > > > + }
> > > > > > > + }
> > > > > > > +
> > > > > > > + fclose(grub_cfg);
> > > > > > > +
> > > > > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry
> for kernel: %s\n",
> > > > > > > + current_kernel);
> > > > > > > +
> > > > > > > + /* Set the GRUB boot target using grub-reboot */
> > > > > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"",
> grub_entry);
> > > > > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot
> target to: %s\n",
> > > > > > > + grub_entry);
> > > > > > > +
> > > > > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > > > > + current_kernel, grub_entry); }
> > > > > > > +
> > > > > > > +static void hibernate_autoresume(int resume_delay) {
> > > > > > > + check_hibernation_support();
> > > > > > > + set_rtc_wake_timer(resume_delay);
> > > > > > > + ensure_grub_boots_same_kernel();
> > > > > > > + hibernate_system();
> > > > > > > +}
> > > > > > > +
> > > > > > > static void addfb_init(struct igt_fb *fb, struct
> > > > > > > drm_mode_fb_cmd2 *f) {
> > > > > > > int i;
> > > > > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data,
> > > > > > > enum test_fb_flags fb_flags,
> > > > > > >
> > > > > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > > > > if (data->flags & TEST_SUSPEND && fb_flags &
> FB_COMPRESSED) {
> > > > > > > -
> igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > - SUSPEND_TEST_NONE);
> > > > > > > + if (data->do_hibernate)
> > > > > > > + hibernate_autoresume(30);
> > > > > > > + else
> > > > > > > +
> igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > +
> > > > > > > + SUSPEND_TEST_NONE);
> > > > > > >
> > > > > > > /* on resume check flat ccs is still compressed */
> > > > > > > if (is_xe_device(data->drm_fd) && @@
> > > > > > > -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index,
> void *opt_data)
> > > > > > > data->user_seed = true;
> > > > > > > data->seed = strtoul(optarg, NULL, 0);
> > > > > > > break;
> > > > > > > + case 'r':
> > > > > > > + data->do_hibernate = true;
> > > > > > > + break;
> > > > > > > default:
> > > > > > > return IGT_OPT_HANDLER_ERROR;
> > > > > > > }
> > > > > > > @@ -1056,9 +1211,10 @@ static data_t data; static const
> > > > > > > char *help_str = " -c\t\tCheck the presence of compression
> > > > > > > meta-data\n"
> > > > > > > " -s <seed>\tSeed for random number generator\n"
> > > > > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > > > > ;
> > > > > > >
> > > > > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > > > > {
> > > > > > > igt_fixture {
> > > > > > > data.drm_fd =
> > > > > > > drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > > > > --
> > > > > > > 2.45.2
> > > > > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-27 13:21 ` Juha-Pekka Heikkilä
2024-11-28 6:19 ` Gupta, Anshuman
@ 2024-11-28 12:44 ` Rodrigo Vivi
2024-11-28 15:40 ` Juha-Pekka Heikkilä
1 sibling, 1 reply; 18+ messages in thread
From: Rodrigo Vivi @ 2024-11-28 12:44 UTC (permalink / raw)
To: Juha-Pekka Heikkilä; +Cc: Development mailing list for IGT GPU Tools
On Wed, Nov 27, 2024 at 03:21:17PM +0200, Juha-Pekka Heikkilä wrote:
> On Tue, Nov 26, 2024 at 7:12 PM Juha-Pekka Heikkilä
> <juhapekka.heikkila@gmail.com> wrote:
> >
> > On Tue, Nov 26, 2024 at 3:00 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > >
> > > On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> > > > Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
> > > >
> > > > On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> > > > <juhapekka.heikkila@gmail.com> wrote:
> > > > >
> > > > > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > > > > >
> > > > > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> > > > > > > Add hibernate test which bring entire system down for short
> > > > > > > hibernate. This mode is added to suspend tests to be run
> > > > > > > manually with '-r' flag because this is not ci friendly test,
> > > > > > > on hibernate ci would lose connection to the hibernated box.
> > > > > >
> > > > > > I know that nowadays it is a beast to get hibernate to work in the distros,
> > > > > > but afaik our CI is prepared for that, otherwise we wouldn't be able to
> > > > > > get these:
> > > > > >
> > > > > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
> > > > >
> > > > > If you go see those test machine bootlogs you see there is no resume
> > > > > configured. I think all these current s4 tests work with pm_test hence
> > > > > also original problem where tests didn't reproduce that broken ccs
> > > > > after resume. If you try running on your own box any of these s4 tests
> > > > > you'll see they don't go fully down. I wanted to have a test that does
> > > > > the same as real hibernate.
> > >
> > > hmmm... something indeed changed because of CI.
> > >
> > > I originally implemented them without SUSPEND_TEST_DEVICES, in a way that
> > > the machine was going fully down in my ADL+DG2 machine.
> > >
> > > But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices only")
> > > modified that to make it work for CI.
> > >
> > > So, perhaps we can do both, have the manual setup with -r and no TEST
> > > and have the one with TEST but not fully down.
> > >
> > > Have you reproduced the CSS reported bug? Then have you tried the solution
> > > with the TEST?
> >
> > I suspect I earlier got lot of frozen test machines, with these test
> > it always affect testing of new test. This test I now have here does
> > reproduce that ccs bug with kernel where it's not fixed.
> >
> > >
> > > > >
> > > > > >
> > > > > > >
> > > > > > > For this test to work kernel resume point need to be set using swapfile, from
> > > > > > > kernel command line is checked if there is found something along the lines of
> > > > > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> > > > > > > will be successfull.
> > > > > >
> > > > > > Indeed painful nowadays... I can't even believe this gap came from user
> > > > > > report... is anyone really still using hibernation nowadays?! :)
> > > > > >
> > > > > > >
> > > > > > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > > > > > ---
> > > > > > > tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> > > > > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > > > > >
> > > > > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > > > > index 3e9a57863..fd2fe9d3d 100644
> > > > > > > --- a/tests/intel/kms_ccs.c
> > > > > > > +++ b/tests/intel/kms_ccs.c
> > > > > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > > > > bool user_seed;
> > > > > > > enum igt_commit_style commit;
> > > > > > > int fb_list_length;
> > > > > > > + bool do_hibernate;
> > > > > > > struct {
> > > > > > > struct igt_fb fb;
> > > > > > > int width, height;
> > > > > > > @@ -271,6 +272,154 @@ static const struct {
> > > > > > > */
> > > > > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > > > > >
> > > > > > > +/* constants for hibenate test */
> > > > > > > +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
> > > > > >
> > > > > > Why are you calling rtcwake directly instead of using
> > > > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > > > > >
> > > > > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> > > > >
> > > > > I wanted rtc only to wake up the machine. On
> > > > > igt_system_suspend_autoresume(..) I'd get pm_test handling which I
> > > > > want to avoid here.
> > >
> > > you can do that.... just pass SUSPEND_TEST_NONE instead of
> > > SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
> > > here can be simplified.
> > >
> > > And as I told perhaps we can have 3 cases:
> > >
> > > hibernate-manual:
> > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > SUSPEND_TEST_NONE);
> > > hibernate-auto:
> > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > SUSPEND_TEST_DEVICES);
> > > suspend:
> > > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > SUSPEND_TEST_NONE);
> >
> > I'll try that, if that reproduce the bug then I can cut out those
> > hibernate_system(..) and set_rtc_wake_timer(..) and move
> > check_hibernation_support(..) to libigt. For reproducing I'll anyway
> > need to go to lab to see the machine, when I try these on ril system
> > it seems to want to restore my machine when it first time stay down
> > instead of resuming.
>
> There is something fishy going on with
> igt_system_suspend_autoresume(..). When I try to use
> SUSPEND_STATE_DISK and SUSPEND_TEST_NONE, lnl boxes I've tried never
> successfully hibernated. These boxes start to go down but don't power
> off and I see same code always stuck on board led display. I'm not
> able to pinpoint the issue since I'm not so familiar with pm code. On
> same boxes, the hibernate code I have on this patch did work 5/5. As
> above mentioned difference is I use rtc to wake the system but I on my
> own go write /sys/power/state. While it should do the same thing,
> something is different..no idea could it be just some firmware issue
> vs timing but result is anyway different. I had quick try with mtl and
> i915 igt_system_suspend_autoresume(..) where things did work as
> expected.
hmm that's indeed interesting... the autoresume uses rtcwake anyway no?
perhaps some different option passed to rtcwake?
well, to be honest, I have seen many cases where our autoresume gets
stuck in different platforms with differents levels of suspend :/
Maybe we could try to improve our autoresume to ensure it is taking
your safer sequence here? or at least have your safer sequence as
an alternative inside the lib/igt_pm as well?
Thanks a lot for all the experiments
>
> >
> > >
> > >
> > > > >
> > > > > >
> > > > > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > > > > +
> > > > > > > +static void check_hibernation_support(void)
> > > > > > > +{
> > > > > > > + int fd;
> > > > > > > + char buffer[2048];
> > > > > > > + ssize_t bytes_read;
> > > > > > > + FILE *cmdline;
> > > > > > > +
> > > > > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > > > > + close(fd);
> > > > > > > +
> > > > > > > + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> > > > > > > +
> > > > > > > + buffer[bytes_read] = '\0';
> > > > > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > > > > + "Hibernation (suspend to disk) is not supported on this system.\n");
> > > > > > > +
> > > > > > > + /* Check if resume is configured in kernel command line */
> > > > > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > > > > + fclose(cmdline);
> > > > > > > +
> > > > > > > + igt_require_f(strstr(buffer, "resume="),
> > > > > > > + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> > > > > > > +}
> > > > > >
> > > > > > we should probably have this in the igt_pm lib to be used in other places
> > > > > > like xe_pm. I remember we had discussions when s4 started failing in CI,
> > > > > > but apparently the solution was to make CI to work with it instead of
> > > > > > protecting our s4 tests...
> > > > >
> > > > > I was last week talking with Jari Tahvanainen about this. Our ci is
> > > > > not configured for the machines really hibernating, he suggested we
> > > > > first start with one test, start to run it in special box, and we go
> > > > > on from there .. so, here we are :)
> > > > > I agree final destination for this function should be in lib/ like in
> > > > > igt_pm or so.
> > > > >
> > > > > >
> > > > > > > +
> > > > > > > +static void set_rtc_wake_timer(int seconds)
> > > > > > > +{
> > > > > > > + char command[256];
> > > > > > > +
> > > > > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> > > > > > > +
> > > > > > > + igt_require_f(system(command) == 0,
> > > > > > > + "Failed to set RTC wake timer.\n");
> > > > > > > +}
> > > > > > > +
> > > > > > > +static void hibernate_system(void)
> > > > > > > +{
> > > > > > > + int fd;
> > > > > > > +
> > > > > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > > +
> > > > > > > + if (write(fd, "disk", 4) != 4) {
> > > > > > > + close(fd);
> > > > > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > > > > + }
> > > > > > > + close(fd);
> > > > > > > +}
> > > > > > > +
> > > > > > > +static void ensure_grub_boots_same_kernel(void)
> > > > > >
> > > > > > I don't believe that this should be to the test case to ensure.
> > > > > > This should be ensured by the infra to support these s4 testcases.
> > > > >
> > > > > This is bit so-so. If guys would run this test on their own boxes to
> > > > > do some debugging, forgetting to always set the correct kernel for the
> > > > > next in-test reboot would cause incorrect results.
> > > > >
> > > > > >
> > > > > > > +{
> > > > > > > + char cmdline[1024];
> > > > > > > + char current_kernel[256];
> > > > > > > + char last_menuentry[512] = "";
> > > > > > > + char grub_entry[512];
> > > > > > > + char command[1024];
> > > > > > > + FILE *cmdline_file, *grub_cfg;
> > > > > > > + char line[1024];
> > > > > > > + bool kernel_found = false;
> > > > > > > + char *kernel_arg;
> > > > > > > + char *kernel_end;
> > > > > > > +
> > > > > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > > > > + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> > > > > > > +
> > > > > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > > > > + fclose(cmdline_file);
> > > > > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > > > > + }
> > > > > > > + fclose(cmdline_file);
> > > > > > > +
> > > > > > > + /* Parse the kernel image from cmdline */
> > > > > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> > > > > > > +
> > > > > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > > > > +
> > > > > > > + if (!kernel_end)
> > > > > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > > > > +
> > > > > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > > > > + igt_debug("Current kernel image: %s\n", current_kernel);
> > > > > > > +
> > > > > > > + /* Open GRUB config file to find matching entry */
> > > > > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > > > > + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> > > > > > > +
> > > > > > > +
> > > > > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > > > > + /* Check if the line contains a menuentry */
> > > > > > > + if (strstr(line, "menuentry")) {
> > > > > > > + /* Store the menuentry line */
> > > > > > > + char *start = strchr(line, '\'');
> > > > > > > + char *end = start ? strchr(start + 1, '\'') : NULL;
> > > > > > > +
> > > > > > > + if (start && end) {
> > > > > > > + snprintf(last_menuentry,
> > > > > > > + sizeof(last_menuentry),
> > > > > > > + "%.*s", (int)(end - start - 1),
> > > > > > > + start + 1);
> > > > > > > + }
> > > > > > > + }
> > > > > > > +
> > > > > > > + /* Check if the current line contains the kernel */
> > > > > > > + if (strstr(line, current_kernel)) {
> > > > > > > + /* Use the last seen menuentry as the match */
> > > > > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > > > > + last_menuentry);
> > > > > > > + kernel_found = true;
> > > > > > > + break;
> > > > > > > + }
> > > > > > > + }
> > > > > > > +
> > > > > > > + fclose(grub_cfg);
> > > > > > > +
> > > > > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> > > > > > > + current_kernel);
> > > > > > > +
> > > > > > > + /* Set the GRUB boot target using grub-reboot */
> > > > > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> > > > > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> > > > > > > + grub_entry);
> > > > > > > +
> > > > > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > > > > + current_kernel, grub_entry);
> > > > > > > +}
> > > > > > > +
> > > > > > > +static void hibernate_autoresume(int resume_delay)
> > > > > > > +{
> > > > > > > + check_hibernation_support();
> > > > > > > + set_rtc_wake_timer(resume_delay);
> > > > > > > + ensure_grub_boots_same_kernel();
> > > > > > > + hibernate_system();
> > > > > > > +}
> > > > > > > +
> > > > > > > static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> > > > > > > {
> > > > > > > int i;
> > > > > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
> > > > > > >
> > > > > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > > > > if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> > > > > > > - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > - SUSPEND_TEST_NONE);
> > > > > > > + if (data->do_hibernate)
> > > > > > > + hibernate_autoresume(30);
> > > > > > > + else
> > > > > > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > + SUSPEND_TEST_NONE);
> > > > > > >
> > > > > > > /* on resume check flat ccs is still compressed */
> > > > > > > if (is_xe_device(data->drm_fd) &&
> > > > > > > @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> > > > > > > data->user_seed = true;
> > > > > > > data->seed = strtoul(optarg, NULL, 0);
> > > > > > > break;
> > > > > > > + case 'r':
> > > > > > > + data->do_hibernate = true;
> > > > > > > + break;
> > > > > > > default:
> > > > > > > return IGT_OPT_HANDLER_ERROR;
> > > > > > > }
> > > > > > > @@ -1056,9 +1211,10 @@ static data_t data;
> > > > > > > static const char *help_str =
> > > > > > > " -c\t\tCheck the presence of compression meta-data\n"
> > > > > > > " -s <seed>\tSeed for random number generator\n"
> > > > > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > > > > ;
> > > > > > >
> > > > > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > > > > {
> > > > > > > igt_fixture {
> > > > > > > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > > > > --
> > > > > > > 2.45.2
> > > > > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-28 12:44 ` Rodrigo Vivi
@ 2024-11-28 15:40 ` Juha-Pekka Heikkilä
0 siblings, 0 replies; 18+ messages in thread
From: Juha-Pekka Heikkilä @ 2024-11-28 15:40 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: Development mailing list for IGT GPU Tools
On Thu, Nov 28, 2024 at 2:45 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
>
> On Wed, Nov 27, 2024 at 03:21:17PM +0200, Juha-Pekka Heikkilä wrote:
> > On Tue, Nov 26, 2024 at 7:12 PM Juha-Pekka Heikkilä
> > <juhapekka.heikkila@gmail.com> wrote:
> > >
> > > On Tue, Nov 26, 2024 at 3:00 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > > >
> > > > On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> > > > > Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
> > > > >
> > > > > On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> > > > > <juhapekka.heikkila@gmail.com> wrote:
> > > > > >
> > > > > > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > > > > > >
> > > > > > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila wrote:
> > > > > > > > Add hibernate test which bring entire system down for short
> > > > > > > > hibernate. This mode is added to suspend tests to be run
> > > > > > > > manually with '-r' flag because this is not ci friendly test,
> > > > > > > > on hibernate ci would lose connection to the hibernated box.
> > > > > > >
> > > > > > > I know that nowadays it is a beast to get hibernate to work in the distros,
> > > > > > > but afaik our CI is prepared for that, otherwise we wouldn't be able to
> > > > > > > get these:
> > > > > > >
> > > > > > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilter=s4
> > > > > >
> > > > > > If you go see those test machine bootlogs you see there is no resume
> > > > > > configured. I think all these current s4 tests work with pm_test hence
> > > > > > also original problem where tests didn't reproduce that broken ccs
> > > > > > after resume. If you try running on your own box any of these s4 tests
> > > > > > you'll see they don't go fully down. I wanted to have a test that does
> > > > > > the same as real hibernate.
> > > >
> > > > hmmm... something indeed changed because of CI.
> > > >
> > > > I originally implemented them without SUSPEND_TEST_DEVICES, in a way that
> > > > the machine was going fully down in my ADL+DG2 machine.
> > > >
> > > > But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices only")
> > > > modified that to make it work for CI.
> > > >
> > > > So, perhaps we can do both, have the manual setup with -r and no TEST
> > > > and have the one with TEST but not fully down.
> > > >
> > > > Have you reproduced the CSS reported bug? Then have you tried the solution
> > > > with the TEST?
> > >
> > > I suspect I earlier got lot of frozen test machines, with these test
> > > it always affect testing of new test. This test I now have here does
> > > reproduce that ccs bug with kernel where it's not fixed.
> > >
> > > >
> > > > > >
> > > > > > >
> > > > > > > >
> > > > > > > > For this test to work kernel resume point need to be set using swapfile, from
> > > > > > > > kernel command line is checked if there is found something along the lines of
> > > > > > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to verify hibernate
> > > > > > > > will be successfull.
> > > > > > >
> > > > > > > Indeed painful nowadays... I can't even believe this gap came from user
> > > > > > > report... is anyone really still using hibernation nowadays?! :)
> > > > > > >
> > > > > > > >
> > > > > > > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > > > > > > ---
> > > > > > > > tests/intel/kms_ccs.c | 162 +++++++++++++++++++++++++++++++++++++++++-
> > > > > > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > > > > > >
> > > > > > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > > > > > index 3e9a57863..fd2fe9d3d 100644
> > > > > > > > --- a/tests/intel/kms_ccs.c
> > > > > > > > +++ b/tests/intel/kms_ccs.c
> > > > > > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > > > > > bool user_seed;
> > > > > > > > enum igt_commit_style commit;
> > > > > > > > int fb_list_length;
> > > > > > > > + bool do_hibernate;
> > > > > > > > struct {
> > > > > > > > struct igt_fb fb;
> > > > > > > > int width, height;
> > > > > > > > @@ -271,6 +272,154 @@ static const struct {
> > > > > > > > */
> > > > > > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > > > > > >
> > > > > > > > +/* constants for hibenate test */
> > > > > > > > +#define RTC_WAKE_CMD "rtcwake -m no -s %d"
> > > > > > >
> > > > > > > Why are you calling rtcwake directly instead of using
> > > > > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > > > > > >
> > > > > > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> > > > > >
> > > > > > I wanted rtc only to wake up the machine. On
> > > > > > igt_system_suspend_autoresume(..) I'd get pm_test handling which I
> > > > > > want to avoid here.
> > > >
> > > > you can do that.... just pass SUSPEND_TEST_NONE instead of
> > > > SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
> > > > here can be simplified.
> > > >
> > > > And as I told perhaps we can have 3 cases:
> > > >
> > > > hibernate-manual:
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > > SUSPEND_TEST_NONE);
> > > > hibernate-auto:
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > > SUSPEND_TEST_DEVICES);
> > > > suspend:
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > SUSPEND_TEST_NONE);
> > >
> > > I'll try that, if that reproduce the bug then I can cut out those
> > > hibernate_system(..) and set_rtc_wake_timer(..) and move
> > > check_hibernation_support(..) to libigt. For reproducing I'll anyway
> > > need to go to lab to see the machine, when I try these on ril system
> > > it seems to want to restore my machine when it first time stay down
> > > instead of resuming.
> >
> > There is something fishy going on with
> > igt_system_suspend_autoresume(..). When I try to use
> > SUSPEND_STATE_DISK and SUSPEND_TEST_NONE, lnl boxes I've tried never
> > successfully hibernated. These boxes start to go down but don't power
> > off and I see same code always stuck on board led display. I'm not
> > able to pinpoint the issue since I'm not so familiar with pm code. On
> > same boxes, the hibernate code I have on this patch did work 5/5. As
> > above mentioned difference is I use rtc to wake the system but I on my
> > own go write /sys/power/state. While it should do the same thing,
> > something is different..no idea could it be just some firmware issue
> > vs timing but result is anyway different. I had quick try with mtl and
> > i915 igt_system_suspend_autoresume(..) where things did work as
> > expected.
>
> hmm that's indeed interesting... the autoresume uses rtcwake anyway no?
> perhaps some different option passed to rtcwake?
>
> well, to be honest, I have seen many cases where our autoresume gets
> stuck in different platforms with differents levels of suspend :/
>
> Maybe we could try to improve our autoresume to ensure it is taking
> your safer sequence here? or at least have your safer sequence as
> an alternative inside the lib/igt_pm as well?
>
I now know what affect the hibernate. I'll need to get lnl boxes here
updated with new fw. Disconnecting all type-c cables made hibernate
through igt_system_suspend_autoresume(..) reliable. I think I would
prefer igt_system_suspend_autoresume type hibernate for test as it
probably is closer to what distros are doing.
Once have latest fw will need to see does this problem still exist. In
any case I'll move code around a bit and move that resume point check
into libigt
/Juha-Pekka
> >
> > >
> > > >
> > > >
> > > > > >
> > > > > > >
> > > > > > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > > > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > > > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > > > > > +
> > > > > > > > +static void check_hibernation_support(void)
> > > > > > > > +{
> > > > > > > > + int fd;
> > > > > > > > + char buffer[2048];
> > > > > > > > + ssize_t bytes_read;
> > > > > > > > + FILE *cmdline;
> > > > > > > > +
> > > > > > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > > > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > > > > > + close(fd);
> > > > > > > > +
> > > > > > > > + igt_require_f(bytes_read > 0, "Failed to read /sys/power/state");
> > > > > > > > +
> > > > > > > > + buffer[bytes_read] = '\0';
> > > > > > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > > > > > + "Hibernation (suspend to disk) is not supported on this system.\n");
> > > > > > > > +
> > > > > > > > + /* Check if resume is configured in kernel command line */
> > > > > > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > > > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > > > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > > > > > + fclose(cmdline);
> > > > > > > > +
> > > > > > > > + igt_require_f(strstr(buffer, "resume="),
> > > > > > > > + "Kernel does not have 'resume' parameter configured for hibernation.\n");
> > > > > > > > +}
> > > > > > >
> > > > > > > we should probably have this in the igt_pm lib to be used in other places
> > > > > > > like xe_pm. I remember we had discussions when s4 started failing in CI,
> > > > > > > but apparently the solution was to make CI to work with it instead of
> > > > > > > protecting our s4 tests...
> > > > > >
> > > > > > I was last week talking with Jari Tahvanainen about this. Our ci is
> > > > > > not configured for the machines really hibernating, he suggested we
> > > > > > first start with one test, start to run it in special box, and we go
> > > > > > on from there .. so, here we are :)
> > > > > > I agree final destination for this function should be in lib/ like in
> > > > > > igt_pm or so.
> > > > > >
> > > > > > >
> > > > > > > > +
> > > > > > > > +static void set_rtc_wake_timer(int seconds)
> > > > > > > > +{
> > > > > > > > + char command[256];
> > > > > > > > +
> > > > > > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD, seconds);
> > > > > > > > +
> > > > > > > > + igt_require_f(system(command) == 0,
> > > > > > > > + "Failed to set RTC wake timer.\n");
> > > > > > > > +}
> > > > > > > > +
> > > > > > > > +static void hibernate_system(void)
> > > > > > > > +{
> > > > > > > > + int fd;
> > > > > > > > +
> > > > > > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > > > +
> > > > > > > > + if (write(fd, "disk", 4) != 4) {
> > > > > > > > + close(fd);
> > > > > > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > > > > > + }
> > > > > > > > + close(fd);
> > > > > > > > +}
> > > > > > > > +
> > > > > > > > +static void ensure_grub_boots_same_kernel(void)
> > > > > > >
> > > > > > > I don't believe that this should be to the test case to ensure.
> > > > > > > This should be ensured by the infra to support these s4 testcases.
> > > > > >
> > > > > > This is bit so-so. If guys would run this test on their own boxes to
> > > > > > do some debugging, forgetting to always set the correct kernel for the
> > > > > > next in-test reboot would cause incorrect results.
> > > > > >
> > > > > > >
> > > > > > > > +{
> > > > > > > > + char cmdline[1024];
> > > > > > > > + char current_kernel[256];
> > > > > > > > + char last_menuentry[512] = "";
> > > > > > > > + char grub_entry[512];
> > > > > > > > + char command[1024];
> > > > > > > > + FILE *cmdline_file, *grub_cfg;
> > > > > > > > + char line[1024];
> > > > > > > > + bool kernel_found = false;
> > > > > > > > + char *kernel_arg;
> > > > > > > > + char *kernel_end;
> > > > > > > > +
> > > > > > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > > > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > > > > > + igt_require_f(cmdline_file, "Failed to open /proc/cmdline");
> > > > > > > > +
> > > > > > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > > > > > + fclose(cmdline_file);
> > > > > > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > > > > > + }
> > > > > > > > + fclose(cmdline_file);
> > > > > > > > +
> > > > > > > > + /* Parse the kernel image from cmdline */
> > > > > > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > > > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in /proc/cmdline\n");
> > > > > > > > +
> > > > > > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > > > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > > > > > +
> > > > > > > > + if (!kernel_end)
> > > > > > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > > > > > +
> > > > > > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > > > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > > > > > + igt_debug("Current kernel image: %s\n", current_kernel);
> > > > > > > > +
> > > > > > > > + /* Open GRUB config file to find matching entry */
> > > > > > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > > > > > + igt_require_f(grub_cfg, "Failed to open GRUB configuration file");
> > > > > > > > +
> > > > > > > > +
> > > > > > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > > > > > + /* Check if the line contains a menuentry */
> > > > > > > > + if (strstr(line, "menuentry")) {
> > > > > > > > + /* Store the menuentry line */
> > > > > > > > + char *start = strchr(line, '\'');
> > > > > > > > + char *end = start ? strchr(start + 1, '\'') : NULL;
> > > > > > > > +
> > > > > > > > + if (start && end) {
> > > > > > > > + snprintf(last_menuentry,
> > > > > > > > + sizeof(last_menuentry),
> > > > > > > > + "%.*s", (int)(end - start - 1),
> > > > > > > > + start + 1);
> > > > > > > > + }
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + /* Check if the current line contains the kernel */
> > > > > > > > + if (strstr(line, current_kernel)) {
> > > > > > > > + /* Use the last seen menuentry as the match */
> > > > > > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > > > > > + last_menuentry);
> > > > > > > > + kernel_found = true;
> > > > > > > > + break;
> > > > > > > > + }
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + fclose(grub_cfg);
> > > > > > > > +
> > > > > > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry for kernel: %s\n",
> > > > > > > > + current_kernel);
> > > > > > > > +
> > > > > > > > + /* Set the GRUB boot target using grub-reboot */
> > > > > > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> > > > > > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot target to: %s\n",
> > > > > > > > + grub_entry);
> > > > > > > > +
> > > > > > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > > > > > + current_kernel, grub_entry);
> > > > > > > > +}
> > > > > > > > +
> > > > > > > > +static void hibernate_autoresume(int resume_delay)
> > > > > > > > +{
> > > > > > > > + check_hibernation_support();
> > > > > > > > + set_rtc_wake_timer(resume_delay);
> > > > > > > > + ensure_grub_boots_same_kernel();
> > > > > > > > + hibernate_system();
> > > > > > > > +}
> > > > > > > > +
> > > > > > > > static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> > > > > > > > {
> > > > > > > > int i;
> > > > > > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
> > > > > > > >
> > > > > > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > > > > > if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> > > > > > > > - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > > - SUSPEND_TEST_NONE);
> > > > > > > > + if (data->do_hibernate)
> > > > > > > > + hibernate_autoresume(30);
> > > > > > > > + else
> > > > > > > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > > + SUSPEND_TEST_NONE);
> > > > > > > >
> > > > > > > > /* on resume check flat ccs is still compressed */
> > > > > > > > if (is_xe_device(data->drm_fd) &&
> > > > > > > > @@ -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> > > > > > > > data->user_seed = true;
> > > > > > > > data->seed = strtoul(optarg, NULL, 0);
> > > > > > > > break;
> > > > > > > > + case 'r':
> > > > > > > > + data->do_hibernate = true;
> > > > > > > > + break;
> > > > > > > > default:
> > > > > > > > return IGT_OPT_HANDLER_ERROR;
> > > > > > > > }
> > > > > > > > @@ -1056,9 +1211,10 @@ static data_t data;
> > > > > > > > static const char *help_str =
> > > > > > > > " -c\t\tCheck the presence of compression meta-data\n"
> > > > > > > > " -s <seed>\tSeed for random number generator\n"
> > > > > > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > > > > > ;
> > > > > > > >
> > > > > > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > > > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > > > > > {
> > > > > > > > igt_fixture {
> > > > > > > > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > > > > > --
> > > > > > > > 2.45.2
> > > > > > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2024-11-28 6:19 ` Gupta, Anshuman
@ 2024-11-28 15:50 ` Juha-Pekka Heikkilä
0 siblings, 0 replies; 18+ messages in thread
From: Juha-Pekka Heikkilä @ 2024-11-28 15:50 UTC (permalink / raw)
To: Gupta, Anshuman; +Cc: Vivi, Rodrigo, Development mailing list for IGT GPU Tools
On Thu, Nov 28, 2024 at 8:19 AM Gupta, Anshuman
<anshuman.gupta@intel.com> wrote:
> > -----Original Message-----
> > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-
> > Pekka Heikkilä
> > Sent: Wednesday, November 27, 2024 6:51 PM
> > To: Vivi, Rodrigo <rodrigo.vivi@intel.com>
> > Cc: Development mailing list for IGT GPU Tools <igt-dev@lists.freedesktop.org>
> > Subject: Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
> >
> > On Tue, Nov 26, 2024 at 7:12 PM Juha-Pekka Heikkilä
> > <juhapekka.heikkila@gmail.com> wrote:
> > >
> > > On Tue, Nov 26, 2024 at 3:00 PM Rodrigo Vivi <rodrigo.vivi@intel.com>
> > wrote:
> > > >
> > > > On Tue, Nov 26, 2024 at 10:07:37AM +0200, Juha-Pekka Heikkilä wrote:
> > > > > Seems I accidentally replied only to Rodrigo so I'll add igt-dev back here.
> > > > >
> > > > > On Mon, Nov 25, 2024 at 10:03 PM Juha-Pekka Heikkilä
> > > > > <juhapekka.heikkila@gmail.com> wrote:
> > > > > >
> > > > > > On Mon, Nov 25, 2024 at 8:20 PM Rodrigo Vivi
> > <rodrigo.vivi@intel.com> wrote:
> > > > > > >
> > > > > > > On Mon, Nov 25, 2024 at 06:19:58PM +0200, Juha-Pekka Heikkila
> > wrote:
> > > > > > > > Add hibernate test which bring entire system down for short
> > > > > > > > hibernate. This mode is added to suspend tests to be run
> > > > > > > > manually with '-r' flag because this is not ci friendly
> > > > > > > > test, on hibernate ci would lose connection to the hibernated box.
> > > > > > >
> > > > > > > I know that nowadays it is a beast to get hibernate to work in
> > > > > > > the distros, but afaik our CI is prepared for that, otherwise
> > > > > > > we wouldn't be able to get these:
> > > > > > >
> > > > > > > https://intel-gfx-ci.01.org/tree/intel-xe/index.html?testfilte
> > > > > > > r=s4
> > > > > >
> > > > > > If you go see those test machine bootlogs you see there is no
> > > > > > resume configured. I think all these current s4 tests work with
> > > > > > pm_test hence also original problem where tests didn't reproduce
> > > > > > that broken ccs after resume. If you try running on your own box
> > > > > > any of these s4 tests you'll see they don't go fully down. I
> > > > > > wanted to have a test that does the same as real hibernate.
> > > >
> > > > hmmm... something indeed changed because of CI.
> Network driver does not resume properly and take time during actual hibernation,
> AFAIU the problem might br igt tests are forked by igt_runner and igt_runner is a child of bash ssh instance.
> Ssh connection are prone to disconnect on loss of network that will kill the bash and igt runner and igt test will be zombie.
> If we can run igt runner as a background process or as native on console, and should make igt_runner to wait for network resume.
You mean ssh connection gives up too soon? For that I have in my ssh
config these
ServerAliveInterval 500
ServerAliveCountMax 7
this gives the test box almost one hour time to respond back, ssh will
wait patiently. I use one hour here because I sometimes use kgdb.
/Juha-Pekka
> > > >
> > > > I originally implemented them without SUSPEND_TEST_DEVICES, in a way
> > > > that the machine was going fully down in my ADL+DG2 machine.
> > > >
> > > > But commit 4b767566bbc ("tests/intel/xe_pm: S4 to go up to devices
> > > > only") modified that to make it work for CI.
> > > >
> > > > So, perhaps we can do both, have the manual setup with -r and no
> > > > TEST and have the one with TEST but not fully down.
> > > >
> > > > Have you reproduced the CSS reported bug? Then have you tried the
> > > > solution with the TEST?
> > >
> > > I suspect I earlier got lot of frozen test machines, with these test
> > > it always affect testing of new test. This test I now have here does
> > > reproduce that ccs bug with kernel where it's not fixed.
> > >
> > > >
> > > > > >
> > > > > > >
> > > > > > > >
> > > > > > > > For this test to work kernel resume point need to be set
> > > > > > > > using swapfile, from kernel command line is checked if there
> > > > > > > > is found something along the lines of
> > > > > > > > "resume=/dev/nvme0n1p2 resume_offset=73527296" or so to
> > > > > > > > verify hibernate will be successfull.
> > > > > > >
> > > > > > > Indeed painful nowadays... I can't even believe this gap came
> > > > > > > from user report... is anyone really still using hibernation
> > > > > > > nowadays?! :)
> > > > > > >
> > > > > > > >
> > > > > > > > Signed-off-by: Juha-Pekka Heikkila
> > > > > > > > <juhapekka.heikkila@gmail.com>
> > > > > > > > ---
> > > > > > > > tests/intel/kms_ccs.c | 162
> > > > > > > > +++++++++++++++++++++++++++++++++++++++++-
> > > > > > > > 1 file changed, 159 insertions(+), 3 deletions(-)
> > > > > > > >
> > > > > > > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> > > > > > > > index 3e9a57863..fd2fe9d3d 100644
> > > > > > > > --- a/tests/intel/kms_ccs.c
> > > > > > > > +++ b/tests/intel/kms_ccs.c
> > > > > > > > @@ -190,6 +190,7 @@ typedef struct {
> > > > > > > > bool user_seed;
> > > > > > > > enum igt_commit_style commit;
> > > > > > > > int fb_list_length;
> > > > > > > > + bool do_hibernate;
> > > > > > > > struct {
> > > > > > > > struct igt_fb fb;
> > > > > > > > int width, height; @@ -271,6 +272,154 @@
> > > > > > > > static const struct {
> > > > > > > > */
> > > > > > > > #define MAX_SPRITE_PLANE_WIDTH 2000
> > > > > > > >
> > > > > > > > +/* constants for hibenate test */ #define RTC_WAKE_CMD
> > > > > > > > +"rtcwake -m no -s %d"
> > > > > > >
> > > > > > > Why are you calling rtcwake directly instead of using
> > > > > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK...) ?!
> > > > > > >
> > > > > > > Please check lib/igt_aux lib/igt_pm and tests/xe/xe_pm
> > > > > >
> > > > > > I wanted rtc only to wake up the machine. On
> > > > > > igt_system_suspend_autoresume(..) I'd get pm_test handling which
> > > > > > I want to avoid here.
> > > >
> > > > you can do that.... just pass SUSPEND_TEST_NONE instead of
> > > > SUSPEND_TEST_DEVICES as the second argument. So, a lot of the logic
> > > > here can be simplified.
> > > >
> > > > And as I told perhaps we can have 3 cases:
> > > >
> > > > hibernate-manual:
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > > SUSPEND_TEST_NONE);
> > > > hibernate-auto:
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> > > > SUSPEND_TEST_DEVICES);
> > > > suspend:
> > > > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > SUSPEND_TEST_NONE);
> > >
> > > I'll try that, if that reproduce the bug then I can cut out those
> > > hibernate_system(..) and set_rtc_wake_timer(..) and move
> > > check_hibernation_support(..) to libigt. For reproducing I'll anyway
> > > need to go to lab to see the machine, when I try these on ril system
> > > it seems to want to restore my machine when it first time stay down
> > > instead of resuming.
> >
> > There is something fishy going on with
> > igt_system_suspend_autoresume(..). When I try to use SUSPEND_STATE_DISK
> > and SUSPEND_TEST_NONE, lnl boxes I've tried never successfully hibernated.
> > These boxes start to go down but don't power off and I see same code always
> > stuck on board led display. I'm not able to pinpoint the issue since I'm not so
> > familiar with pm code. On same boxes, the hibernate code I have on this patch
> > did work 5/5. As above mentioned difference is I use rtc to wake the system
> > but I on my own go write /sys/power/state. While it should do the same
> > thing, something is different..no idea could it be just some firmware issue vs
> > timing but result is anyway different. I had quick try with mtl and
> > i915 igt_system_suspend_autoresume(..) where things did work as expected.
> >
> > >
> > > >
> > > >
> > > > > >
> > > > > > >
> > > > > > > > +#define PROC_CMDLINE "/proc/cmdline"
> > > > > > > > +#define SYS_POWER_STATE "/sys/power/state"
> > > > > > > > +#define GRUB_CFG_PATH "/boot/grub/grub.cfg"
> > > > > > > > +
> > > > > > > > +static void check_hibernation_support(void) {
> > > > > > > > + int fd;
> > > > > > > > + char buffer[2048];
> > > > > > > > + ssize_t bytes_read;
> > > > > > > > + FILE *cmdline;
> > > > > > > > +
> > > > > > > > + /* Check if hibernation is supported in /sys/power/state */
> > > > > > > > + fd = open(SYS_POWER_STATE, O_RDONLY);
> > > > > > > > + igt_require_f(fd > 0, "Failed to open /sys/power/state");
> > > > > > > > + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> > > > > > > > + close(fd);
> > > > > > > > +
> > > > > > > > + igt_require_f(bytes_read > 0, "Failed to read
> > > > > > > > + /sys/power/state");
> > > > > > > > +
> > > > > > > > + buffer[bytes_read] = '\0';
> > > > > > > > + igt_require_f(strstr(buffer, "disk") != NULL,
> > > > > > > > + "Hibernation (suspend to disk) is not
> > > > > > > > + supported on this system.\n");
> > > > > > > > +
> > > > > > > > + /* Check if resume is configured in kernel command line */
> > > > > > > > + cmdline = fopen(PROC_CMDLINE, "r");
> > > > > > > > + igt_require_f(cmdline, "Failed to open /proc/cmdline");
> > > > > > > > + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> > > > > > > > + fclose(cmdline);
> > > > > > > > +
> > > > > > > > + igt_require_f(strstr(buffer, "resume="),
> > > > > > > > + "Kernel does not have 'resume' parameter
> > > > > > > > +configured for hibernation.\n"); }
> > > > > > >
> > > > > > > we should probably have this in the igt_pm lib to be used in
> > > > > > > other places like xe_pm. I remember we had discussions when s4
> > > > > > > started failing in CI, but apparently the solution was to make
> > > > > > > CI to work with it instead of protecting our s4 tests...
> > > > > >
> > > > > > I was last week talking with Jari Tahvanainen about this. Our ci
> > > > > > is not configured for the machines really hibernating, he
> > > > > > suggested we first start with one test, start to run it in
> > > > > > special box, and we go on from there .. so, here we are :) I
> > > > > > agree final destination for this function should be in lib/ like
> > > > > > in igt_pm or so.
> > > > > >
> > > > > > >
> > > > > > > > +
> > > > > > > > +static void set_rtc_wake_timer(int seconds) {
> > > > > > > > + char command[256];
> > > > > > > > +
> > > > > > > > + snprintf(command, sizeof(command), RTC_WAKE_CMD,
> > > > > > > > + seconds);
> > > > > > > > +
> > > > > > > > + igt_require_f(system(command) == 0,
> > > > > > > > + "Failed to set RTC wake timer.\n"); }
> > > > > > > > +
> > > > > > > > +static void hibernate_system(void) {
> > > > > > > > + int fd;
> > > > > > > > +
> > > > > > > > + fd = open(SYS_POWER_STATE, O_WRONLY);
> > > > > > > > + igt_require_f(fd > 0, "Failed to open
> > > > > > > > + /sys/power/state");
> > > > > > > > +
> > > > > > > > + if (write(fd, "disk", 4) != 4) {
> > > > > > > > + close(fd);
> > > > > > > > + igt_require_f(0, "Failed to write 'disk' to /sys/power/state");
> > > > > > > > + }
> > > > > > > > + close(fd);
> > > > > > > > +}
> > > > > > > > +
> > > > > > > > +static void ensure_grub_boots_same_kernel(void)
> > > > > > >
> > > > > > > I don't believe that this should be to the test case to ensure.
> > > > > > > This should be ensured by the infra to support these s4 testcases.
> > > > > >
> > > > > > This is bit so-so. If guys would run this test on their own
> > > > > > boxes to do some debugging, forgetting to always set the correct
> > > > > > kernel for the next in-test reboot would cause incorrect results.
> > > > > >
> > > > > > >
> > > > > > > > +{
> > > > > > > > + char cmdline[1024];
> > > > > > > > + char current_kernel[256];
> > > > > > > > + char last_menuentry[512] = "";
> > > > > > > > + char grub_entry[512];
> > > > > > > > + char command[1024];
> > > > > > > > + FILE *cmdline_file, *grub_cfg;
> > > > > > > > + char line[1024];
> > > > > > > > + bool kernel_found = false;
> > > > > > > > + char *kernel_arg;
> > > > > > > > + char *kernel_end;
> > > > > > > > +
> > > > > > > > + /* Read /proc/cmdline to get the current kernel image */
> > > > > > > > + cmdline_file = fopen(PROC_CMDLINE, "r");
> > > > > > > > + igt_require_f(cmdline_file, "Failed to open
> > > > > > > > + /proc/cmdline");
> > > > > > > > +
> > > > > > > > + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> > > > > > > > + fclose(cmdline_file);
> > > > > > > > + igt_require_f(0, "Failed to read /proc/cmdline");
> > > > > > > > + }
> > > > > > > > + fclose(cmdline_file);
> > > > > > > > +
> > > > > > > > + /* Parse the kernel image from cmdline */
> > > > > > > > + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> > > > > > > > + igt_require_f(kernel_arg, "BOOT_IMAGE= not found in
> > > > > > > > + /proc/cmdline\n");
> > > > > > > > +
> > > > > > > > + kernel_arg += strlen("BOOT_IMAGE=");
> > > > > > > > + kernel_end = strchr(kernel_arg, ' ');
> > > > > > > > +
> > > > > > > > + if (!kernel_end)
> > > > > > > > + kernel_end = kernel_arg + strlen(kernel_arg);
> > > > > > > > +
> > > > > > > > + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> > > > > > > > + (int)(kernel_end - kernel_arg), kernel_arg);
> > > > > > > > + igt_debug("Current kernel image: %s\n",
> > > > > > > > + current_kernel);
> > > > > > > > +
> > > > > > > > + /* Open GRUB config file to find matching entry */
> > > > > > > > + grub_cfg = fopen(GRUB_CFG_PATH, "r");
> > > > > > > > + igt_require_f(grub_cfg, "Failed to open GRUB
> > > > > > > > + configuration file");
> > > > > > > > +
> > > > > > > > +
> > > > > > > > + while (fgets(line, sizeof(line), grub_cfg)) {
> > > > > > > > + /* Check if the line contains a menuentry */
> > > > > > > > + if (strstr(line, "menuentry")) {
> > > > > > > > + /* Store the menuentry line */
> > > > > > > > + char *start = strchr(line, '\'');
> > > > > > > > + char *end = start ? strchr(start + 1,
> > > > > > > > + '\'') : NULL;
> > > > > > > > +
> > > > > > > > + if (start && end) {
> > > > > > > > + snprintf(last_menuentry,
> > > > > > > > + sizeof(last_menuentry),
> > > > > > > > + "%.*s", (int)(end - start - 1),
> > > > > > > > + start + 1);
> > > > > > > > + }
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + /* Check if the current line contains the kernel */
> > > > > > > > + if (strstr(line, current_kernel)) {
> > > > > > > > + /* Use the last seen menuentry as the match */
> > > > > > > > + snprintf(grub_entry, sizeof(grub_entry), "%s",
> > > > > > > > + last_menuentry);
> > > > > > > > + kernel_found = true;
> > > > > > > > + break;
> > > > > > > > + }
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + fclose(grub_cfg);
> > > > > > > > +
> > > > > > > > + igt_require_f(kernel_found, "Failed to find matching GRUB entry
> > for kernel: %s\n",
> > > > > > > > + current_kernel);
> > > > > > > > +
> > > > > > > > + /* Set the GRUB boot target using grub-reboot */
> > > > > > > > + snprintf(command, sizeof(command), "grub-reboot \"%s\"",
> > grub_entry);
> > > > > > > > + igt_require_f(system(command) == 0, "Failed to set GRUB boot
> > target to: %s\n",
> > > > > > > > + grub_entry);
> > > > > > > > +
> > > > > > > > + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> > > > > > > > + current_kernel, grub_entry); }
> > > > > > > > +
> > > > > > > > +static void hibernate_autoresume(int resume_delay) {
> > > > > > > > + check_hibernation_support();
> > > > > > > > + set_rtc_wake_timer(resume_delay);
> > > > > > > > + ensure_grub_boots_same_kernel();
> > > > > > > > + hibernate_system();
> > > > > > > > +}
> > > > > > > > +
> > > > > > > > static void addfb_init(struct igt_fb *fb, struct
> > > > > > > > drm_mode_fb_cmd2 *f) {
> > > > > > > > int i;
> > > > > > > > @@ -839,8 +988,11 @@ static bool try_config(data_t *data,
> > > > > > > > enum test_fb_flags fb_flags,
> > > > > > > >
> > > > > > > > if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> > > > > > > > if (data->flags & TEST_SUSPEND && fb_flags &
> > FB_COMPRESSED) {
> > > > > > > > -
> > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > > - SUSPEND_TEST_NONE);
> > > > > > > > + if (data->do_hibernate)
> > > > > > > > + hibernate_autoresume(30);
> > > > > > > > + else
> > > > > > > > +
> > igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> > > > > > > > +
> > > > > > > > + SUSPEND_TEST_NONE);
> > > > > > > >
> > > > > > > > /* on resume check flat ccs is still compressed */
> > > > > > > > if (is_xe_device(data->drm_fd) && @@
> > > > > > > > -1044,6 +1196,9 @@ static int opt_handler(int opt, int opt_index,
> > void *opt_data)
> > > > > > > > data->user_seed = true;
> > > > > > > > data->seed = strtoul(optarg, NULL, 0);
> > > > > > > > break;
> > > > > > > > + case 'r':
> > > > > > > > + data->do_hibernate = true;
> > > > > > > > + break;
> > > > > > > > default:
> > > > > > > > return IGT_OPT_HANDLER_ERROR;
> > > > > > > > }
> > > > > > > > @@ -1056,9 +1211,10 @@ static data_t data; static const
> > > > > > > > char *help_str = " -c\t\tCheck the presence of compression
> > > > > > > > meta-data\n"
> > > > > > > > " -s <seed>\tSeed for random number generator\n"
> > > > > > > > +" -r\t\tOn suspend test do full hibernate with reboot\n"
> > > > > > > > ;
> > > > > > > >
> > > > > > > > -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> > > > > > > > +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> > > > > > > > {
> > > > > > > > igt_fixture {
> > > > > > > > data.drm_fd =
> > > > > > > > drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> > > > > > > > --
> > > > > > > > 2.45.2
> > > > > > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs
@ 2025-01-28 11:55 Juha-Pekka Heikkila
2025-01-28 11:55 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
` (5 more replies)
0 siblings, 6 replies; 18+ messages in thread
From: Juha-Pekka Heikkila @ 2025-01-28 11:55 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila, Rodrigo Vivi
Here added manually run hibernate mode to Intel specific kms_ccs suspend
tests, hibernate can be triggered with '-r' command line option, for example:
./build/tests/kms_ccs --r crc-primary-suspend-4-tiled-lnl-ccs -r
This test was written against Ubuntu and assume similar grub configuration,
matching to those images run by Intel CI, where resume point need to be
separately configured.
/Juha-Pekka
Juha-Pekka Heikkila (1):
tests/intel/kms_ccs: add hiberbate test
tests/intel/kms_ccs.c | 176 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 173 insertions(+), 3 deletions(-)
--
2.45.2
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
@ 2025-01-28 11:55 ` Juha-Pekka Heikkila
2025-01-28 22:53 ` Rodrigo Vivi
2025-01-28 13:34 ` ✗ GitLab.Pipeline: warning for Add manual hibernate test to kms_ccs Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 18+ messages in thread
From: Juha-Pekka Heikkila @ 2025-01-28 11:55 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Add hibernate test which bring entire system down for short
hibernate. This mode is added to suspend tests to be run
manually with '-r' flag because this is not ci friendly test,
on hibernate ci would lose connection to the hibernated box.
This test is written against Ubuntu distro relying grub
configuration found there.
For this test to work kernel resume point need to be set, from
kernel command line is checked if there is found something along
the lines of "resume=/dev/nvme0n1p2" or so to verify hibernate
will be successful.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/intel/kms_ccs.c | 176 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 173 insertions(+), 3 deletions(-)
diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
index 3e9a57863..8be3c063a 100644
--- a/tests/intel/kms_ccs.c
+++ b/tests/intel/kms_ccs.c
@@ -190,6 +190,7 @@ typedef struct {
bool user_seed;
enum igt_commit_style commit;
int fb_list_length;
+ bool do_hibernate;
struct {
struct igt_fb fb;
int width, height;
@@ -271,6 +272,162 @@ static const struct {
*/
#define MAX_SPRITE_PLANE_WIDTH 2000
+
+/**
+ * check_hibernation_support:
+ *
+ * Return: True if kernel is configured with resume point for hibernate.
+ */
+static bool check_hibernation_support(void)
+{
+ int fd;
+ char buffer[2048];
+ ssize_t bytes_read;
+ FILE *cmdline;
+
+ /* Check if hibernation is supported in /sys/power/state */
+ fd = open("/sys/power/state", O_RDONLY);
+
+ if (fd <= 0) {
+ igt_debug("Failed to open /sys/power/state\n");
+ return false;
+ }
+
+ bytes_read = read(fd, buffer, sizeof(buffer) - 1);
+ close(fd);
+
+ if (bytes_read <= 0) {
+ igt_debug("Failed to read /sys/power/state");
+ return false;
+ }
+
+ buffer[bytes_read] = '\0';
+ if (strstr(buffer, "disk") == NULL) {
+ igt_debug("Hibernation (suspend to disk) is not supported on this system.\n");
+ return false;
+ }
+
+ /* Check if resume is configured in kernel command line */
+ cmdline = fopen("/proc/cmdline", "r");
+
+ if (!cmdline) {
+ igt_debug("Failed to open /proc/cmdline");
+ return false;
+ }
+
+ fread(buffer, 1, sizeof(buffer) - 1, cmdline);
+ fclose(cmdline);
+
+ if (strstr(buffer, "resume=") == NULL) {
+ igt_debug("Kernel does not have 'resume' parameter configured for hibernation.\n");
+ return false;
+ }
+
+ return true;
+}
+
+/**
+ * Ensure_grub_boots_same_kernel:
+ *
+ * Return: True if kernel was found and set for next reboot.
+ */
+static bool ensure_grub_boots_same_kernel(void)
+{
+ char cmdline[1024];
+ char current_kernel[256];
+ char last_menuentry[512] = "";
+ char grub_entry[512];
+ char command[1024];
+ FILE *cmdline_file, *grub_cfg;
+ char line[1024];
+ bool kernel_found = false;
+ char *kernel_arg;
+ char *kernel_end;
+
+ /* Read /proc/cmdline to get the current kernel image */
+ cmdline_file = fopen("/proc/cmdline", "r");
+ if (!cmdline_file) {
+ igt_debug("Failed to open /proc/cmdline");
+ return false;
+ }
+
+ if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
+ fclose(cmdline_file);
+ igt_debug("Failed to read /proc/cmdline");
+ return false;
+ }
+ fclose(cmdline_file);
+
+ /* Parse the kernel image from cmdline */
+ kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
+ if (!kernel_arg) {
+ igt_debug("BOOT_IMAGE= not found in /proc/cmdline\n");
+ return false;
+ }
+
+ kernel_arg += strlen("BOOT_IMAGE=");
+ kernel_end = strchr(kernel_arg, ' ');
+
+ if (!kernel_end)
+ kernel_end = kernel_arg + strlen(kernel_arg);
+
+ snprintf(current_kernel, sizeof(current_kernel), "%.*s",
+ (int)(kernel_end - kernel_arg), kernel_arg);
+ igt_debug("Current kernel image: %s\n", current_kernel);
+
+ /* Open GRUB config file to find matching entry */
+ grub_cfg = fopen("/boot/grub/grub.cfg", "r");
+ if (!grub_cfg) {
+ igt_debug("Failed to open GRUB configuration file");
+ return false;
+ }
+
+ while (fgets(line, sizeof(line), grub_cfg)) {
+ /* Check if the line contains a menuentry */
+ if (strstr(line, "menuentry")) {
+ /* Store the menuentry line */
+ char *start = strchr(line, '\'');
+ char *end = start ? strchr(start + 1, '\'') : NULL;
+
+ if (start && end) {
+ snprintf(last_menuentry,
+ sizeof(last_menuentry),
+ "%.*s", (int)(end - start - 1),
+ start + 1);
+ }
+ }
+
+ /* Check if the current line contains the kernel */
+ if (strstr(line, current_kernel)) {
+ /* Use the last seen menuentry as the match */
+ snprintf(grub_entry, sizeof(grub_entry), "%s",
+ last_menuentry);
+ kernel_found = true;
+ break;
+ }
+ }
+
+ fclose(grub_cfg);
+
+ if (!kernel_found) {
+ igt_debug("Failed to find matching GRUB entry for kernel: %s\n",
+ current_kernel);
+ return false;
+ }
+
+ /* Set the GRUB boot target using grub-reboot */
+ snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
+ if (system(command) != 0) {
+ igt_debug("Failed to set GRUB boot target to: %s\n",
+ grub_entry);
+ return false;
+ }
+
+ igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
+ current_kernel, grub_entry);
+ return true;
+}
+
static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
{
int i;
@@ -839,8 +996,17 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
- igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
- SUSPEND_TEST_NONE);
+ if (data->do_hibernate) {
+ igt_require_f(check_hibernation_support(),
+ "Kernel is not cofigured for resume\n");
+ igt_require_f(ensure_grub_boots_same_kernel(),
+ "Couldn't find correct kernel in grub.cfg\n");
+ igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
+ SUSPEND_TEST_NONE);
+ } else {
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+ SUSPEND_TEST_NONE);
+ }
/* on resume check flat ccs is still compressed */
if (is_xe_device(data->drm_fd) &&
@@ -1044,6 +1210,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
data->user_seed = true;
data->seed = strtoul(optarg, NULL, 0);
break;
+ case 'r':
+ data->do_hibernate = true;
+ break;
default:
return IGT_OPT_HANDLER_ERROR;
}
@@ -1056,9 +1225,10 @@ static data_t data;
static const char *help_str =
" -c\t\tCheck the presence of compression meta-data\n"
" -s <seed>\tSeed for random number generator\n"
+" -r\t\tOn suspend test do full hibernate with reboot\n"
;
-igt_main_args("cs:", NULL, help_str, opt_handler, &data)
+igt_main_args("csr:", NULL, help_str, opt_handler, &data)
{
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread
* ✗ GitLab.Pipeline: warning for Add manual hibernate test to kms_ccs
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
2025-01-28 11:55 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
@ 2025-01-28 13:34 ` Patchwork
2025-01-28 14:04 ` ✓ i915.CI.BAT: success " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-28 13:34 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: Add manual hibernate test to kms_ccs
URL : https://patchwork.freedesktop.org/series/144028/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1353743 for the overview.
build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/70107688):
/usr/bin/aarch64-linux-gnu-gcc -Itests/59830eb@@kms_ccs@exe -Itests -I../tests -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/aarch64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/aarch64-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-conversion -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -D_LARGEFILE64_SOURCE=1 -pthread -MD -MQ 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o' -MF 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o.d' -o 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o' -c ../tests/intel/kms_ccs.c
../tests/intel/kms_ccs.c: In function ‘check_hibernation_support’:
../tests/intel/kms_ccs.c:289:7: error: implicit declaration of function ‘open’; did you mean ‘popen’? [-Werror=implicit-function-declaration]
fd = open("/sys/power/state", O_RDONLY);
^~~~
popen
../tests/intel/kms_ccs.c:289:7: warning: nested extern declaration of ‘open’ [-Wnested-externs]
../tests/intel/kms_ccs.c:289:32: error: ‘O_RDONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’?
fd = open("/sys/power/state", O_RDONLY);
^~~~~~~~
STA_RONLY
../tests/intel/kms_ccs.c:289:32: note: each undeclared identifier is reported only once for each function it appears in
cc1: some warnings being treated as errors
ninja: build stopped: subcommand failed.
section_end:1738070796:step_script
section_start:1738070796:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1738070797:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/70107687):
/usr/bin/arm-linux-gnueabihf-gcc -Itests/59830eb@@kms_ccs@exe -Itests -I../tests -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/arm-linux-gnueabihf -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-conversion -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -D_LARGEFILE64_SOURCE=1 -pthread -MD -MQ 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o' -MF 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o.d' -o 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o' -c ../tests/intel/kms_ccs.c
../tests/intel/kms_ccs.c: In function ‘check_hibernation_support’:
../tests/intel/kms_ccs.c:289:7: error: implicit declaration of function ‘open’; did you mean ‘popen’? [-Werror=implicit-function-declaration]
fd = open("/sys/power/state", O_RDONLY);
^~~~
popen
../tests/intel/kms_ccs.c:289:7: warning: nested extern declaration of ‘open’ [-Wnested-externs]
../tests/intel/kms_ccs.c:289:32: error: ‘O_RDONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’?
fd = open("/sys/power/state", O_RDONLY);
^~~~~~~~
STA_RONLY
../tests/intel/kms_ccs.c:289:32: note: each undeclared identifier is reported only once for each function it appears in
cc1: some warnings being treated as errors
ninja: build stopped: subcommand failed.
section_end:1738070805:step_script
section_start:1738070805:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1738070805:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/70107689):
/usr/bin/mips-linux-gnu-gcc -Itests/59830eb@@kms_ccs@exe -Itests -I../tests -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/mips-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/mips-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-conversion -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -D_LARGEFILE64_SOURCE=1 -pthread -MD -MQ 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o' -MF 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o.d' -o 'tests/59830eb@@kms_ccs@exe/intel_kms_ccs.c.o' -c ../tests/intel/kms_ccs.c
../tests/intel/kms_ccs.c: In function ‘check_hibernation_support’:
../tests/intel/kms_ccs.c:289:7: error: implicit declaration of function ‘open’; did you mean ‘popen’? [-Werror=implicit-function-declaration]
fd = open("/sys/power/state", O_RDONLY);
^~~~
popen
../tests/intel/kms_ccs.c:289:7: warning: nested extern declaration of ‘open’ [-Wnested-externs]
../tests/intel/kms_ccs.c:289:32: error: ‘O_RDONLY’ undeclared (first use in this function); did you mean ‘STA_RONLY’?
fd = open("/sys/power/state", O_RDONLY);
^~~~~~~~
STA_RONLY
../tests/intel/kms_ccs.c:289:32: note: each undeclared identifier is reported only once for each function it appears in
cc1: some warnings being treated as errors
ninja: build stopped: subcommand failed.
section_end:1738070804:step_script
section_start:1738070804:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1738070805:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1353743
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ i915.CI.BAT: success for Add manual hibernate test to kms_ccs
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
2025-01-28 11:55 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
2025-01-28 13:34 ` ✗ GitLab.Pipeline: warning for Add manual hibernate test to kms_ccs Patchwork
@ 2025-01-28 14:04 ` Patchwork
2025-01-28 14:10 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-28 14:04 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3213 bytes --]
== Series Details ==
Series: Add manual hibernate test to kms_ccs
URL : https://patchwork.freedesktop.org/series/144028/
State : success
== Summary ==
CI Bug Log - changes from IGT_8212 -> IGTPW_12506
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): fi-glk-j4005
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12506 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_module_load@load:
- fi-pnv-d510: NOTRUN -> [ABORT][3] ([i915#13203])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_psr@psr-primary-page-flip:
- fi-glk-j4005: NOTRUN -> [SKIP][8] +10 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8212 -> IGTPW_12506
CI-20190529: 20190529
CI_DRM_16031: 73c0fe019ff4bf312f6ae1114f0ca63bd13ea4b7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12506: 525cd71aad41b09a663161b3819a86385ee3da51 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8212: 76102a17560c6e6fc6528db29286b0266ccc48ef @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/index.html
[-- Attachment #2: Type: text/html, Size: 4020 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ Xe.CI.BAT: success for Add manual hibernate test to kms_ccs
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
` (2 preceding siblings ...)
2025-01-28 14:04 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-01-28 14:10 ` Patchwork
2025-01-28 18:37 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-29 0:55 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-28 14:10 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5778 bytes --]
== Series Details ==
Series: Add manual hibernate test to kms_ccs
URL : https://patchwork.freedesktop.org/series/144028/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8212_BAT -> XEIGTPW_12506_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 8)
------------------------------
Additional (1): bat-bmg-1
Known issues
------------
Here are the changes found in XEIGTPW_12506_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-1: NOTRUN -> [SKIP][1] ([Intel XE#2233])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-bmg-1: NOTRUN -> [SKIP][2] ([Intel XE#2244])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@kms_dsc@dsc-basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-1: NOTRUN -> [SKIP][3] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- bat-bmg-1: NOTRUN -> [SKIP][6] ([Intel XE#2229])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#2229])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-1: NOTRUN -> [SKIP][8] ([Intel XE#1420])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-1: NOTRUN -> [SKIP][9] ([Intel XE#2245])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#2236])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-bmg-1: NOTRUN -> [SKIP][11] ([Intel XE#3342])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [SKIP][12] ([Intel XE#1192]) -> [PASS][13] +1 other test pass
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pat@pat-index-xelp@render:
- bat-adlp-vf: [DMESG-WARN][14] ([Intel XE#3970] / [Intel XE#4078]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][16] ([Intel XE#1192]) -> [SKIP][17] ([Intel XE#2229] / [Intel XE#455])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8212 -> IGTPW_12506
IGTPW_12506: 525cd71aad41b09a663161b3819a86385ee3da51 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8212: 76102a17560c6e6fc6528db29286b0266ccc48ef @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2562-73c0fe019ff4bf312f6ae1114f0ca63bd13ea4b7: 73c0fe019ff4bf312f6ae1114f0ca63bd13ea4b7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/index.html
[-- Attachment #2: Type: text/html, Size: 6964 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ i915.CI.Full: failure for Add manual hibernate test to kms_ccs
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
` (3 preceding siblings ...)
2025-01-28 14:10 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-28 18:37 ` Patchwork
2025-01-29 0:55 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-28 18:37 UTC (permalink / raw)
To: Juha-Pekka Heikkilä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100256 bytes --]
== Series Details ==
Series: Add manual hibernate test to kms_ccs
URL : https://patchwork.freedesktop.org/series/144028/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8212_full -> IGTPW_12506_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12506_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12506_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/index.html
Participating hosts (12 -> 11)
------------------------------
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12506_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-mtlp: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-7/igt@gem_ctx_persistence@engines-mixed-process.html
New tests
---------
New tests have been introduced between IGT_8212_full and IGTPW_12506_full:
### New IGT tests (1) ###
* igt@core_setmaster:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_12506_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +20 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@drm_fdinfo@isolation@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#3281]) +10 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4873])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#13008])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#7697])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#7697])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb1/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][30] -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-tglu-5/igt@gem_eio@hibernate.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][32] -> [DMESG-WARN][33] ([i915#13363])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-tglu-4/igt@gem_eio@kms.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@gem_eio@kms.html
- shard-dg2: [PASS][34] -> [FAIL][35] ([i915#5784])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg2-2/igt@gem_eio@kms.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@gem_exec_balancer@bonded-false-hang.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-1/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#8555])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4525])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-9/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#6344])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +11 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#7276])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) +2 other tests abort
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [PASS][56] -> [ABORT][57] ([i915#7975] / [i915#8213]) +1 other test abort
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg1-13/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#2190])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk9/igt@gem_lmem_swapping@random-engines.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-7/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [TIMEOUT][67] ([i915#5493]) +1 other test timeout
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#284])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-1/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-read:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +8 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@gem_mmap_gtt@basic-read.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +17 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +9 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][73] -> [ABORT][74] ([i915#10729]) +1 other test abort
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][79] ([i915#2658])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-2/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][80] ([i915#2658])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html
- shard-glk: NOTRUN -> [WARN][82] ([i915#2658])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12917] / [i915#12964]) +2 other tests timeout
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190] / [i915#8428]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#8411]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4885])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][93] -> [INCOMPLETE][94] ([i915#13306])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-glk4/igt@gem_softpin@noreloc-s3.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk1/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-glk: NOTRUN -> [ABORT][95] ([i915#13263] / [i915#13449])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk7/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4879])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3282] / [i915#3297])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3297]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@gem_userptr_blits@set-cache-level.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3297]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3297])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [PASS][105] -> [INCOMPLETE][106] ([i915#13356])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][107] +19 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [ABORT][108] ([i915#5566])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-7/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-3/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_hangman@gt-error-state-capture@rcs0:
- shard-rkl: NOTRUN -> [DMESG-WARN][115] ([i915#12964]) +26 other tests dmesg-warn
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@i915_hangman@gt-error-state-capture@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [ABORT][116] ([i915#10887] / [i915#9820])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#6412])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#7091])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#8399])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#6590]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][121] ([i915#2681]) +1 other test warn
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg1: [PASS][122] -> [DMESG-WARN][123] ([i915#4423]) +2 other tests dmesg-warn
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#12797])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk6/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#11681] / [i915#6621])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][127] ([i915#8346])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@i915_pm_rps@reset.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4387])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#6188])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#5723])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][131] ([i915#9311]) +1 other test dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb2/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][132] ([i915#9311]) +1 other test dmesg-warn
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][133] ([i915#9311]) +1 other test dmesg-warn
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7707])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4212]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#4212]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#12454] / [i915#12712])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#12454] / [i915#12712])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#12454] / [i915#12712])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#10991] / [i915#13320]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#8709]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#8709]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#8709]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#12967])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#9531])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#9531])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#1769] / [i915#3555])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#1769] / [i915#3555])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#1769] / [i915#3555])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [PASS][151] -> [FAIL][152] ([i915#11808] / [i915#5956]) +1 other test fail
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][153] -> [FAIL][154] ([i915#11808]) +1 other test fail
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-tglu-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#5286]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5286]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#5286]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#5286]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#5138]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3638]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][162] +15 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5190]) +14 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3638]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538]) +6 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#6095]) +69 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#12313])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#6095]) +163 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6095]) +24 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#12313])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#12313])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6095]) +49 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#6095]) +25 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#6095]) +92 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#12313]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#6095]) +172 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3742])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3742])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#11616] / [i915#7213]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +7 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +9 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +6 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#7116] / [i915#9424]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3116]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#9424])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][197] ([i915#7173])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#7118] / [i915#9424])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#6944] / [i915#9424])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#13049])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#13049]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#13049]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#13049])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][204] ([i915#13566]) +2 other tests fail
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-tglu: NOTRUN -> [FAIL][205] ([i915#13566]) +1 other test fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#3555]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#13049]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu-1: NOTRUN -> [FAIL][208] ([i915#13566]) +1 other test fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_cursor_crc@cursor-random-64x21.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8814])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [PASS][211] -> [FAIL][212] ([i915#13566]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-rkl: [PASS][213] -> [FAIL][214] ([i915#13566]) +1 other test fail
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#13049]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#13046] / [i915#5354]) +6 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#4103]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#4103] / [i915#4213])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9809]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#9067])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9067])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#4103])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#4103] / [i915#4213])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-rkl: [PASS][224] -> [DMESG-WARN][225] ([i915#12964]) +30 other tests dmesg-warn
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-rkl-3/igt@kms_cursor_legacy@torture-move@pipe-b.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][226] ([i915#12170])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][227] ([i915#11968])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#9723])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#8588])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#8588])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#1769] / [i915#3555] / [i915#3804])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#3804])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#1257])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#12402])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#8812])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3840])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#3840]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3955])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#4854])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#4854])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#1839])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#1839])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#1839])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#1839])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-9/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1839])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#9337])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#9337])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#658])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#4881])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#3637]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9934]) +8 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8381])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#3637]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#4839])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#9934]) +4 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9934]) +9 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12745] / [i915#4839]) +1 other test incomplete
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][260] ([i915#12745])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-tglu: [PASS][261] -> [FAIL][262] ([i915#11989]) +5 other tests fail
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672] / [i915#3555])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#8813]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#2672]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#2587] / [i915#2672]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555]) +5 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#2672]) +5 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#2587] / [i915#2672]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8708]) +6 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-snb: [PASS][276] -> [SKIP][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [PASS][278] -> [FAIL][279] ([i915#6880]) +1 other test fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#8708]) +22 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][281] +42 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#5354]) +26 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#1825]) +20 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#3023]) +24 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][285] +35 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#10433] / [i915#3458]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#5439])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#9766])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-glk: NOTRUN -> [SKIP][289] +508 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3458]) +21 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#8708]) +18 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#1825]) +36 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][293] +70 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#3458]) +13 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#10656])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#12388])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#12394] / [i915#13522])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#10656])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#12388])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#10656] / [i915#13522])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#12339])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#13522])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#13522])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#13522])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_lease@lease-revoke:
- shard-dg1: [PASS][310] -> [ABORT][311] ([i915#4423])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg1-13/igt@kms_lease@lease-revoke.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_lease@lease-revoke.html
* igt@kms_lease@lease-revoke@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [ABORT][312] ([i915#4423])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_lease@lease-revoke@pipe-a-hdmi-a-4.html
* igt@kms_lease@lease-revoke@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [DMESG-WARN][313] ([i915#4423]) +2 other tests dmesg-warn
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_lease@lease-revoke@pipe-b-hdmi-a-4.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#4816])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#6301])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#6301])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][317] +8 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#13026]) +1 other test incomplete
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][319] ([i915#12178])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][320] ([i915#7862]) +1 other test fail
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#12247]) +9 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#9423])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247]) +9 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#12247]) +5 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#6953]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12247]) +17 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#12247]) +11 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#9812])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#12343])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#5354])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#5354])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#9685]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#9292])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9685])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#3828])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: [PASS][337] -> [FAIL][338] ([i915#12913])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-4/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#5978])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#8430])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#9519])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#9519])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][343] -> [SKIP][344] ([i915#9519])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9519])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [PASS][346] -> [SKIP][347] ([i915#9519])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#9519]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#6524]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#6524])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#6524])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#6524] / [i915#6805])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#11520]) +6 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][354] ([i915#11520]) +16 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#12316]) +5 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#11520]) +7 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#9808]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#11520]) +9 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#11520]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#11520]) +6 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][361] ([i915#11520]) +13 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#9683])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#9683]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#4348]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#9683])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +28 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +18 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#9688]) +12 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-basic:
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#9732]) +18 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-2/igt@kms_psr@pr-basic.html
* igt@kms_psr@pr-suspend:
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +24 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#4077] / [i915#9688]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-5/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#9732]) +7 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#9685])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#9685])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][375] ([i915#4235])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#12755]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#5190]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#12755] / [i915#5190])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#5289])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][380] ([i915#5289]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#12755]) +2 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][382] ([i915#13179]) +1 other test abort
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb7/igt@kms_selftest@drm_framebuffer.html
- shard-tglu: NOTRUN -> [ABORT][383] ([i915#13179]) +1 other test abort
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][384] ([i915#5465]) +2 other tests fail
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb5/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#3555]) +4 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][386] ([i915#3555] / [i915#8809]) +2 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#8623])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#8623])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#11920])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#9906]) +1 other test skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-3/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][393] ([i915#3555] / [i915#9906])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-7/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-mtlp: NOTRUN -> [SKIP][394] ([i915#8808] / [i915#9906])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][395] ([i915#2437])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][396] ([i915#2437]) +2 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-glk1/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][397] ([i915#2437])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#2437])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#2437] / [i915#9412])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][400] ([i915#7387])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-2/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][401] ([i915#2433])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-13/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][402] +517 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-snb5/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][403] -> [FAIL][404] ([i915#4349]) +4 other tests fail
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][405] ([i915#8850])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-10/igt@perf_pmu@cpu-hotplug.html
- shard-rkl: NOTRUN -> [SKIP][406] ([i915#8850])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html
- shard-dg1: NOTRUN -> [SKIP][407] ([i915#8850])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@semaphore-busy@rcs0:
- shard-mtlp: [PASS][408] -> [FAIL][409] ([i915#4349]) +1 other test fail
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-mtlp-8/igt@perf_pmu@semaphore-busy@rcs0.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-6/igt@perf_pmu@semaphore-busy@rcs0.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#3708])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][411] ([i915#3708])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#3708])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#9917])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][414] ([i915#12910])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][415] ([i915#12910]) +8 other tests fail
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@gem_eio@in-flight-external:
- shard-mtlp: [ABORT][416] -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-mtlp-7/igt@gem_eio@in-flight-external.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-mtlp-3/igt@gem_eio@in-flight-external.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg2: [ABORT][418] ([i915#13465]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-dg2-10/igt@gem_lmem_swapping@verify-ccs.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-dg2-8/igt@gem_lmem_swapping@verify-ccs.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [FAIL][420] ([i915#12942]) -> [PASS][421] +1 other test pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_selftest@live:
- shard-rkl: [DMESG-FAIL][422] ([i915#13550]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-rkl-2/igt@i915_selftest@live.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-5/igt@i915_selftest@live.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [INCOMPLETE][424] ([i915#4817]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8212/shard-rkl-5/igt@i915_suspend@sysfs-reader.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/shard-rkl-3/igt@i915_suspend@sysfs-reader.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12506/index.html
[-- Attachment #2: Type: text/html, Size: 110239 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test
2025-01-28 11:55 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
@ 2025-01-28 22:53 ` Rodrigo Vivi
0 siblings, 0 replies; 18+ messages in thread
From: Rodrigo Vivi @ 2025-01-28 22:53 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
On Tue, Jan 28, 2025 at 01:55:58PM +0200, Juha-Pekka Heikkila wrote:
> Add hibernate test which bring entire system down for short
> hibernate. This mode is added to suspend tests to be run
> manually with '-r' flag because this is not ci friendly test,
hmm... why not '-f'?
-r won't get confused or accidentaly used since we have --r as an
alias for --run-subtest ?
But well, let's move ahead and add some option and you decide
the flag...
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> on hibernate ci would lose connection to the hibernated box.
>
> This test is written against Ubuntu distro relying grub
> configuration found there.
>
> For this test to work kernel resume point need to be set, from
> kernel command line is checked if there is found something along
> the lines of "resume=/dev/nvme0n1p2" or so to verify hibernate
> will be successful.
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
> tests/intel/kms_ccs.c | 176 +++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 173 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c
> index 3e9a57863..8be3c063a 100644
> --- a/tests/intel/kms_ccs.c
> +++ b/tests/intel/kms_ccs.c
> @@ -190,6 +190,7 @@ typedef struct {
> bool user_seed;
> enum igt_commit_style commit;
> int fb_list_length;
> + bool do_hibernate;
> struct {
> struct igt_fb fb;
> int width, height;
> @@ -271,6 +272,162 @@ static const struct {
> */
> #define MAX_SPRITE_PLANE_WIDTH 2000
>
> +
> +/**
> + * check_hibernation_support:
> + *
> + * Return: True if kernel is configured with resume point for hibernate.
> + */
> +static bool check_hibernation_support(void)
> +{
> + int fd;
> + char buffer[2048];
> + ssize_t bytes_read;
> + FILE *cmdline;
> +
> + /* Check if hibernation is supported in /sys/power/state */
> + fd = open("/sys/power/state", O_RDONLY);
> +
> + if (fd <= 0) {
> + igt_debug("Failed to open /sys/power/state\n");
> + return false;
> + }
> +
> + bytes_read = read(fd, buffer, sizeof(buffer) - 1);
> + close(fd);
> +
> + if (bytes_read <= 0) {
> + igt_debug("Failed to read /sys/power/state");
> + return false;
> + }
> +
> + buffer[bytes_read] = '\0';
> + if (strstr(buffer, "disk") == NULL) {
> + igt_debug("Hibernation (suspend to disk) is not supported on this system.\n");
> + return false;
> + }
> +
> + /* Check if resume is configured in kernel command line */
> + cmdline = fopen("/proc/cmdline", "r");
> +
> + if (!cmdline) {
> + igt_debug("Failed to open /proc/cmdline");
> + return false;
> + }
> +
> + fread(buffer, 1, sizeof(buffer) - 1, cmdline);
> + fclose(cmdline);
> +
> + if (strstr(buffer, "resume=") == NULL) {
> + igt_debug("Kernel does not have 'resume' parameter configured for hibernation.\n");
> + return false;
> + }
> +
> + return true;
> +}
> +
> +/**
> + * Ensure_grub_boots_same_kernel:
> + *
> + * Return: True if kernel was found and set for next reboot.
> + */
> +static bool ensure_grub_boots_same_kernel(void)
> +{
> + char cmdline[1024];
> + char current_kernel[256];
> + char last_menuentry[512] = "";
> + char grub_entry[512];
> + char command[1024];
> + FILE *cmdline_file, *grub_cfg;
> + char line[1024];
> + bool kernel_found = false;
> + char *kernel_arg;
> + char *kernel_end;
> +
> + /* Read /proc/cmdline to get the current kernel image */
> + cmdline_file = fopen("/proc/cmdline", "r");
> + if (!cmdline_file) {
> + igt_debug("Failed to open /proc/cmdline");
> + return false;
> + }
> +
> + if (!fgets(cmdline, sizeof(cmdline), cmdline_file)) {
> + fclose(cmdline_file);
> + igt_debug("Failed to read /proc/cmdline");
> + return false;
> + }
> + fclose(cmdline_file);
> +
> + /* Parse the kernel image from cmdline */
> + kernel_arg = strstr(cmdline, "BOOT_IMAGE=");
> + if (!kernel_arg) {
> + igt_debug("BOOT_IMAGE= not found in /proc/cmdline\n");
> + return false;
> + }
> +
> + kernel_arg += strlen("BOOT_IMAGE=");
> + kernel_end = strchr(kernel_arg, ' ');
> +
> + if (!kernel_end)
> + kernel_end = kernel_arg + strlen(kernel_arg);
> +
> + snprintf(current_kernel, sizeof(current_kernel), "%.*s",
> + (int)(kernel_end - kernel_arg), kernel_arg);
> + igt_debug("Current kernel image: %s\n", current_kernel);
> +
> + /* Open GRUB config file to find matching entry */
> + grub_cfg = fopen("/boot/grub/grub.cfg", "r");
> + if (!grub_cfg) {
> + igt_debug("Failed to open GRUB configuration file");
> + return false;
> + }
> +
> + while (fgets(line, sizeof(line), grub_cfg)) {
> + /* Check if the line contains a menuentry */
> + if (strstr(line, "menuentry")) {
> + /* Store the menuentry line */
> + char *start = strchr(line, '\'');
> + char *end = start ? strchr(start + 1, '\'') : NULL;
> +
> + if (start && end) {
> + snprintf(last_menuentry,
> + sizeof(last_menuentry),
> + "%.*s", (int)(end - start - 1),
> + start + 1);
> + }
> + }
> +
> + /* Check if the current line contains the kernel */
> + if (strstr(line, current_kernel)) {
> + /* Use the last seen menuentry as the match */
> + snprintf(grub_entry, sizeof(grub_entry), "%s",
> + last_menuentry);
> + kernel_found = true;
> + break;
> + }
> + }
> +
> + fclose(grub_cfg);
> +
> + if (!kernel_found) {
> + igt_debug("Failed to find matching GRUB entry for kernel: %s\n",
> + current_kernel);
> + return false;
> + }
> +
> + /* Set the GRUB boot target using grub-reboot */
> + snprintf(command, sizeof(command), "grub-reboot \"%s\"", grub_entry);
> + if (system(command) != 0) {
> + igt_debug("Failed to set GRUB boot target to: %s\n",
> + grub_entry);
> + return false;
> + }
> +
> + igt_debug("Set GRUB to boot kernel: %s (GRUB entry: %s)\n",
> + current_kernel, grub_entry);
> + return true;
> +}
> +
> static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
> {
> int i;
> @@ -839,8 +996,17 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
>
> if (ret == 0 && !(fb_flags & TEST_BAD_ROTATION_90) && crc) {
> if (data->flags & TEST_SUSPEND && fb_flags & FB_COMPRESSED) {
> - igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> - SUSPEND_TEST_NONE);
> + if (data->do_hibernate) {
> + igt_require_f(check_hibernation_support(),
> + "Kernel is not cofigured for resume\n");
> + igt_require_f(ensure_grub_boots_same_kernel(),
> + "Couldn't find correct kernel in grub.cfg\n");
> + igt_system_suspend_autoresume(SUSPEND_STATE_DISK,
> + SUSPEND_TEST_NONE);
> + } else {
> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> + SUSPEND_TEST_NONE);
> + }
>
> /* on resume check flat ccs is still compressed */
> if (is_xe_device(data->drm_fd) &&
> @@ -1044,6 +1210,9 @@ static int opt_handler(int opt, int opt_index, void *opt_data)
> data->user_seed = true;
> data->seed = strtoul(optarg, NULL, 0);
> break;
> + case 'r':
> + data->do_hibernate = true;
> + break;
> default:
> return IGT_OPT_HANDLER_ERROR;
> }
> @@ -1056,9 +1225,10 @@ static data_t data;
> static const char *help_str =
> " -c\t\tCheck the presence of compression meta-data\n"
> " -s <seed>\tSeed for random number generator\n"
> +" -r\t\tOn suspend test do full hibernate with reboot\n"
> ;
>
> -igt_main_args("cs:", NULL, help_str, opt_handler, &data)
> +igt_main_args("csr:", NULL, help_str, opt_handler, &data)
> {
> igt_fixture {
> data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Xe.CI.Full: failure for Add manual hibernate test to kms_ccs
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
` (4 preceding siblings ...)
2025-01-28 18:37 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-01-29 0:55 ` Patchwork
5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-29 0:55 UTC (permalink / raw)
To: Juha-Pekka Heikkilä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 58635 bytes --]
== Series Details ==
Series: Add manual hibernate test to kms_ccs
URL : https://patchwork.freedesktop.org/series/144028/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8212_full -> XEIGTPW_12506_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12506_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12506_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12506_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
- shard-bmg: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
New tests
---------
New tests have been introduced between XEIGT_8212_full and XEIGTPW_12506_full:
### New IGT tests (1) ###
* igt@xe_exec_basic:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in XEIGTPW_12506_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1466])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#1033]) +41 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#873])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#316]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +10 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2191])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2669]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3433]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#787]) +153 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +10 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#307])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1178])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3278])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][31] ([Intel XE#1188]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-435/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#323])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@torture-move:
- shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3226]) +1 other test incomplete
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@kms_cursor_legacy@torture-move.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_cursor_legacy@torture-move.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1421]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][39] -> [FAIL][40] ([Intel XE#3321]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2955])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4141]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2352])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#651]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#651]) +26 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2311]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1469])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#653]) +35 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#656]) +27 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#1503])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][58] ([Intel XE#1033]) +15 other tests dmesg-warn
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2934])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2927])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#4090])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#616]) +3 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#599])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#4172]) +42 other tests dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2763]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2763]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1439] / [Intel XE#3141])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2893]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1489]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1489])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1122])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1128])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-3/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-sprite-blt:
- shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#3924]) +1 other test fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-lnl-3/igt@kms_psr@psr2-sprite-blt.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-1/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1127]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#3414])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#1729])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][84] ([Intel XE#899]) +3 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [ABORT][85] ([Intel XE#2625] / [Intel XE#4057])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend@pipe-d-dp-2.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#1522]) +3 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-4/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#455]) +12 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1499])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_vrr@lobf.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1447])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-4/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1123])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1126])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1062])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-8/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2905]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2905]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-2/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2905]) +9 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_evict@evict-beng-small-cm:
- shard-bmg: [PASS][96] -> [DMESG-WARN][97] ([Intel XE#1473] / [Intel XE#4172])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-1/igt@xe_evict@evict-beng-small-cm.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-4/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict@evict-large-cm:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#688]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-4/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#1392]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2322]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1392]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#288]) +17 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2360])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_gt_freq@freq_suspend:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#584])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1192]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][107] ([Intel XE#1999]) +2 other tests fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#512])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_mmap@small-bar.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2248])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@stress-open-close@rcs-0:
- shard-bmg: NOTRUN -> [DMESG-WARN][111] ([Intel XE#4172])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@xe_oa@stress-open-close@rcs-0.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2248])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#977])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2838] / [Intel XE#979])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2284] / [Intel XE#366])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2284] / [Intel XE#366])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-2/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#4172] / [Intel XE#569]) +2 other tests dmesg-warn
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html
- shard-dg2-set2: [PASS][119] -> [DMESG-WARN][120] ([Intel XE#1033] / [Intel XE#569]) +2 other tests dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_pm@s3-d3hot-basic-exec.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-435/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][121] -> [ABORT][122] ([Intel XE#1358] / [Intel XE#1607])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#2280] / [Intel XE#4172])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html
- shard-dg2-set2: [PASS][125] -> [DMESG-WARN][126] ([Intel XE#1033] / [Intel XE#2280])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][127] -> [ABORT][128] ([Intel XE#1358] / [Intel XE#1794])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#944]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#944]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#3342])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: [ABORT][132] -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-463/igt@core_hotunplug@hotrebind-lateclose.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [DMESG-WARN][134] ([Intel XE#1033]) -> [PASS][135] +79 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- shard-bmg: [INCOMPLETE][136] ([Intel XE#2613]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-WARN][138] ([Intel XE#4172]) -> [PASS][139] +79 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][140] ([Intel XE#877]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][142] ([Intel XE#3321]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [DMESG-WARN][144] ([Intel XE#2955]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2:
- shard-bmg: [FAIL][146] ([Intel XE#2882]) -> [PASS][147] +1 other test pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: [FAIL][148] ([Intel XE#886]) -> [PASS][149] +3 other tests pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-6/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp4:
- shard-dg2-set2: [FAIL][150] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [FAIL][152] ([Intel XE#301]) -> [PASS][153] +6 other tests pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#2049]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@kms_flip_tiling@flip-change-tiling.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][156] ([Intel XE#455]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][158] ([Intel XE#616]) -> [PASS][159] +1 other test pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][160] ([Intel XE#718]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][162] ([Intel XE#2883]) -> [PASS][163] +2 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@testdisplay:
- shard-dg2-set2: [DMESG-WARN][164] ([Intel XE#2705]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@testdisplay.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@testdisplay.html
* igt@xe_evict@evict-large-multi-vm:
- shard-dg2-set2: [DMESG-WARN][166] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_evict@evict-large-multi-vm.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-dg2-set2: [SKIP][168] ([Intel XE#1392]) -> [PASS][169] +1 other test pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-rebind.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [SKIP][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195]) ([Intel XE#378]) -> ([PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-436/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-463/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-463/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-434/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-436/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-436/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-434/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-433/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-434/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-434/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-436/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-463/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-435/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-466/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-435/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_module_load@load.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-dg2-set2: [ABORT][220] ([Intel XE#1358]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_pm@s2idle-d3hot-basic-exec.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-433/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][222] ([Intel XE#1616] / [Intel XE#4172]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [DMESG-WARN][224] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-1/igt@xe_pm@s3-mocs.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@xe_pm@s3-mocs.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][226] ([Intel XE#4172] / [Intel XE#877]) -> [DMESG-WARN][227] ([Intel XE#877])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][228] ([Intel XE#301]) -> [DMESG-WARN][229] ([Intel XE#1033])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_plane_lowres@tiling-4:
- shard-bmg: [DMESG-WARN][230] ([Intel XE#4091]) -> [DMESG-WARN][231] ([Intel XE#4172])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-bmg-1/igt@kms_plane_lowres@tiling-4.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [DMESG-WARN][232] ([Intel XE#1033]) -> [ABORT][233] ([Intel XE#2625] / [Intel XE#4057])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-463/igt@kms_vblank@ts-continuation-suspend.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][234] ([Intel XE#1173]) -> [SKIP][235] ([Intel XE#1061])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-466/igt@xe_peer2peer@read.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_peer2peer@read.html
* igt@xe_pm@s3-mocs:
- shard-dg2-set2: [ABORT][236] ([Intel XE#1033] / [Intel XE#1358] / [Intel XE#1794]) -> [ABORT][237] ([Intel XE#1358] / [Intel XE#1794])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-432/igt@xe_pm@s3-mocs.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][238] ([Intel XE#1033] / [Intel XE#569]) -> [ABORT][239] ([Intel XE#1358] / [Intel XE#1794])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8212/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[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#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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[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
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8212 -> IGTPW_12506
IGTPW_12506: 525cd71aad41b09a663161b3819a86385ee3da51 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8212: 76102a17560c6e6fc6528db29286b0266ccc48ef @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2562-73c0fe019ff4bf312f6ae1114f0ca63bd13ea4b7: 73c0fe019ff4bf312f6ae1114f0ca63bd13ea4b7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12506/index.html
[-- Attachment #2: Type: text/html, Size: 67811 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2025-01-29 0:55 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-28 11:55 [PATCH i-g-t 0/1] Add manual hibernate test to kms_ccs Juha-Pekka Heikkila
2025-01-28 11:55 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
2025-01-28 22:53 ` Rodrigo Vivi
2025-01-28 13:34 ` ✗ GitLab.Pipeline: warning for Add manual hibernate test to kms_ccs Patchwork
2025-01-28 14:04 ` ✓ i915.CI.BAT: success " Patchwork
2025-01-28 14:10 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-28 18:37 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-29 0:55 ` ✗ Xe.CI.Full: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-11-25 16:19 [PATCH i-g-t 0/1] CCS hibernate test Juha-Pekka Heikkila
2024-11-25 16:19 ` [PATCH i-g-t 1/1] tests/intel/kms_ccs: add hiberbate test Juha-Pekka Heikkila
2024-11-25 18:20 ` Rodrigo Vivi
[not found] ` <CAJ=qYWRYeg7mbbQGAGHbkHu8sAC0+Rq5J2CfZinFVniX7jsjMg@mail.gmail.com>
2024-11-26 8:07 ` Juha-Pekka Heikkilä
2024-11-26 12:59 ` Rodrigo Vivi
2024-11-26 17:12 ` Juha-Pekka Heikkilä
2024-11-27 13:21 ` Juha-Pekka Heikkilä
2024-11-28 6:19 ` Gupta, Anshuman
2024-11-28 15:50 ` Juha-Pekka Heikkilä
2024-11-28 12:44 ` Rodrigo Vivi
2024-11-28 15:40 ` Juha-Pekka Heikkilä
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox