* [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof()
@ 2024-02-22 19:33 Lucas De Marchi
2024-02-22 19:33 ` [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings Lucas De Marchi
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Lucas De Marchi @ 2024-02-22 19:33 UTC (permalink / raw)
To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi
Let's guarantee we always pass the same pointer to vsnprintf: if we are
using the array size, pass that instead of buf that could point to
something else in an eventual refactor.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_sysfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 51b610114..2b0225138 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -513,7 +513,7 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap)
return -errno;
va_copy(tmp, ap);
- ret = vsnprintf(buf, sizeof(stack), fmt, tmp);
+ ret = vsnprintf(stack, sizeof(stack), fmt, tmp);
va_end(tmp);
if (igt_debug_on(ret < 0))
return -EINVAL;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings 2024-02-22 19:33 [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() Lucas De Marchi @ 2024-02-22 19:33 ` Lucas De Marchi 2024-02-26 21:11 ` Janusz Krzysztofik 2024-02-22 20:15 ` ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Lucas De Marchi @ 2024-02-22 19:33 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi echo -n "" > /sys/module/<modulename>/parameters/<param> doesn't really work as it will just create a open() + close() expecting the file to be truncated. The same issue happens with igt as it will stop writing when there are 0 chars to write. Special case the empty string so it always write a '\0' and make sure igt_sysfs_set() accounts for the extra null char. Shell example: # echo -n "/foo" > /sys/module/firmware_class/parameters/path # cat /sys/module/firmware_class/parameters/path /foo # echo -n "" > /sys/module/firmware_class/parameters/path /foo # # make sure to actually write a \0: echo -ne "\0" > /sys/module/firmware_class/parameters/path # cat /sys/module/firmware_class/parameters/path Same thing happens when testing igt_sysfs_set(): int dirfd = open("/sys/module/firmware_class/parameters", O_RDONLY); igt_sysfs_set(dirfd, "path", ""); Previously it was not really setting the param. v2: - Fix return code from igt_sysfs_vprintf() to differentiate between writing 1 or 0 chars (Janusz) - Document the behavior of igt_sysfs_set() as being a higher-level than igt_sysfs_write(). Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_sysfs.c | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 2b0225138..d5d5b249f 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -349,6 +349,9 @@ int igt_sysfs_get_num_gt(int device) * @len: the length to write * * This writes @len bytes from @data to the sysfs file. + * Contrary to igt_sysfs_set(), this does not automatically add a + * null char to terminate the data. It's caller responsibility to pass + * the right len according to the data being written. * * Returns: * The number of bytes written, or -errno on error. @@ -406,7 +409,12 @@ int igt_sysfs_read(int dir, const char *attr, void *data, int len) */ bool igt_sysfs_set(int dir, const char *attr, const char *value) { - int len = strlen(value); + /* + * Always write the null char at the end, to guarantee the write goes + * through, even for an empty string. + */ + int len = strlen(value) + 1; + return igt_sysfs_write(dir, attr, value, len) == len; } @@ -506,7 +514,7 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) { char stack[128], *buf = stack; va_list tmp; - int ret, fd; + int ret, fd, len; fd = openat(dir, attr, O_WRONLY); if (igt_debug_on(fd < 0)) @@ -515,11 +523,12 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) va_copy(tmp, ap); ret = vsnprintf(stack, sizeof(stack), fmt, tmp); va_end(tmp); + if (igt_debug_on(ret < 0)) return -EINVAL; if (ret > sizeof(stack)) { - unsigned int len = ret + 1; + len = ret + 1; buf = malloc(len); if (igt_debug_on(!buf)) @@ -532,13 +541,22 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) } } - ret = igt_writen(fd, buf, ret); + /* + * Make sure to always issue a write() syscall, even if writing an + * empty string, otherwise values in sysfs like module parameters don't + * really get overwritten. vsnprintf() guarantees to return a \0 + * terminated string, so just add that char. The return code is still + * the same as before, to abstract that from caller. + */ + len = ret + 1; + + ret = igt_writen(fd, buf, len); close(fd); if (buf != stack) free(buf); - return ret; + return ret == len ? len - 1 : ret; } /** -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings 2024-02-22 19:33 ` [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings Lucas De Marchi @ 2024-02-26 21:11 ` Janusz Krzysztofik 2024-02-27 5:26 ` Lucas De Marchi 0 siblings, 1 reply; 8+ messages in thread From: Janusz Krzysztofik @ 2024-02-26 21:11 UTC (permalink / raw) To: igt-dev, Lucas De Marchi; +Cc: Lucas De Marchi Hi Lucas, On Thursday, 22 February 2024 20:33:26 CET Lucas De Marchi wrote: > echo -n "" > /sys/module/<modulename>/parameters/<param> > > doesn't really work as it will just create a open() + close() expecting > the file to be truncated. The same issue happens with igt as it will > stop writing when there are 0 chars to write. Special case the empty > string so it always write a '\0' and make sure igt_sysfs_set() accounts > for the extra null char. > > Shell example: > # echo -n "/foo" > /sys/module/firmware_class/parameters/path > # cat /sys/module/firmware_class/parameters/path > /foo > # echo -n "" > /sys/module/firmware_class/parameters/path > /foo > # # make sure to actually write a \0: > echo -ne "\0" > /sys/module/firmware_class/parameters/path > # cat /sys/module/firmware_class/parameters/path > > Same thing happens when testing igt_sysfs_set(): > int dirfd = open("/sys/module/firmware_class/parameters", O_RDONLY); > igt_sysfs_set(dirfd, "path", ""); > > Previously it was not really setting the param. > > v2: > - Fix return code from igt_sysfs_vprintf() to differentiate between > writing 1 or 0 chars (Janusz) > - Document the behavior of igt_sysfs_set() as being a higher-level > than igt_sysfs_write(). > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > --- > lib/igt_sysfs.c | 28 +++++++++++++++++++++++----- > 1 file changed, 23 insertions(+), 5 deletions(-) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index 2b0225138..d5d5b249f 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -349,6 +349,9 @@ int igt_sysfs_get_num_gt(int device) > * @len: the length to write > * > * This writes @len bytes from @data to the sysfs file. > + * Contrary to igt_sysfs_set(), this does not automatically add a > + * null char to terminate the data. It's caller responsibility to pass > + * the right len according to the data being written. > * > * Returns: > * The number of bytes written, or -errno on error. > @@ -406,7 +409,12 @@ int igt_sysfs_read(int dir, const char *attr, void *data, int len) > */ > bool igt_sysfs_set(int dir, const char *attr, const char *value) > { > - int len = strlen(value); > + /* > + * Always write the null char at the end, to guarantee the write goes > + * through, even for an empty string. > + */ > + int len = strlen(value) + 1; Since pre-merge results indicate some sysfs entries don't like that extra null char, I'm assuming you are going to submit a fixed version. > + > return igt_sysfs_write(dir, attr, value, len) == len; > } > > @@ -506,7 +514,7 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) > { > char stack[128], *buf = stack; > va_list tmp; > - int ret, fd; > + int ret, fd, len; > > fd = openat(dir, attr, O_WRONLY); > if (igt_debug_on(fd < 0)) > @@ -515,11 +523,12 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) > va_copy(tmp, ap); > ret = vsnprintf(stack, sizeof(stack), fmt, tmp); > va_end(tmp); > + NIT: Not related. > if (igt_debug_on(ret < 0)) > return -EINVAL; > > if (ret > sizeof(stack)) { > - unsigned int len = ret + 1; > + len = ret + 1; > > buf = malloc(len); > if (igt_debug_on(!buf)) > @@ -532,13 +541,22 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) > } > } > > - ret = igt_writen(fd, buf, ret); > + /* > + * Make sure to always issue a write() syscall, even if writing an > + * empty string, otherwise values in sysfs like module parameters don't > + * really get overwritten. vsnprintf() guarantees to return a \0 > + * terminated string, so just add that char. The return code is still > + * the same as before, to abstract that from caller. > + */ > + len = ret + 1; Potentially the same issue with some sysfs entries, I believe. Thanks, Janusz > + > + ret = igt_writen(fd, buf, len); > > close(fd); > if (buf != stack) > free(buf); > > - return ret; > + return ret == len ? len - 1 : ret; > } > > /** > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings 2024-02-26 21:11 ` Janusz Krzysztofik @ 2024-02-27 5:26 ` Lucas De Marchi 0 siblings, 0 replies; 8+ messages in thread From: Lucas De Marchi @ 2024-02-27 5:26 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev On Mon, Feb 26, 2024 at 10:11:05PM +0100, Janusz Krzysztofik wrote: >Hi Lucas, > >On Thursday, 22 February 2024 20:33:26 CET Lucas De Marchi wrote: >> echo -n "" > /sys/module/<modulename>/parameters/<param> >> >> doesn't really work as it will just create a open() + close() expecting >> the file to be truncated. The same issue happens with igt as it will >> stop writing when there are 0 chars to write. Special case the empty >> string so it always write a '\0' and make sure igt_sysfs_set() accounts >> for the extra null char. >> >> Shell example: >> # echo -n "/foo" > /sys/module/firmware_class/parameters/path >> # cat /sys/module/firmware_class/parameters/path >> /foo >> # echo -n "" > /sys/module/firmware_class/parameters/path >> /foo >> # # make sure to actually write a \0: >> echo -ne "\0" > /sys/module/firmware_class/parameters/path >> # cat /sys/module/firmware_class/parameters/path >> >> Same thing happens when testing igt_sysfs_set(): >> int dirfd = open("/sys/module/firmware_class/parameters", O_RDONLY); >> igt_sysfs_set(dirfd, "path", ""); >> >> Previously it was not really setting the param. >> >> v2: >> - Fix return code from igt_sysfs_vprintf() to differentiate between >> writing 1 or 0 chars (Janusz) >> - Document the behavior of igt_sysfs_set() as being a higher-level >> than igt_sysfs_write(). >> >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> --- >> lib/igt_sysfs.c | 28 +++++++++++++++++++++++----- >> 1 file changed, 23 insertions(+), 5 deletions(-) >> >> diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c >> index 2b0225138..d5d5b249f 100644 >> --- a/lib/igt_sysfs.c >> +++ b/lib/igt_sysfs.c >> @@ -349,6 +349,9 @@ int igt_sysfs_get_num_gt(int device) >> * @len: the length to write >> * >> * This writes @len bytes from @data to the sysfs file. >> + * Contrary to igt_sysfs_set(), this does not automatically add a >> + * null char to terminate the data. It's caller responsibility to pass >> + * the right len according to the data being written. >> * >> * Returns: >> * The number of bytes written, or -errno on error. >> @@ -406,7 +409,12 @@ int igt_sysfs_read(int dir, const char *attr, void *data, int len) >> */ >> bool igt_sysfs_set(int dir, const char *attr, const char *value) >> { >> - int len = strlen(value); >> + /* >> + * Always write the null char at the end, to guarantee the write goes >> + * through, even for an empty string. >> + */ >> + int len = strlen(value) + 1; > >Since pre-merge results indicate some sysfs entries don't like that extra null >char, I'm assuming you are going to submit a fixed version. yes, basically I have to return back to my previous version, changing the behavior only when it's an empty string. But this time I tweaked the return code so we don't return 1 when writting an empty string. That's because some places in the kernel try to play nice with a possible \n in the end of the string and do a strchr(s, '\n'). If it doesn't find, then it considers the passed size to be the len and then compare with possible values. However now the lengths don't match and it fails. Example: pm_test. See kernel/power/main.c:pm_test_store on the kernel side. I thought about a quick fix on the kernel side that would basically be: - len = p ? p - buf : n; + len = p ? p - buf : strnlen(buf, n); but it would be hard to know how many other places use a similar pattern and would start failing. Lucas De Marchi > >> + >> return igt_sysfs_write(dir, attr, value, len) == len; >> } >> >> @@ -506,7 +514,7 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) >> { >> char stack[128], *buf = stack; >> va_list tmp; >> - int ret, fd; >> + int ret, fd, len; >> >> fd = openat(dir, attr, O_WRONLY); >> if (igt_debug_on(fd < 0)) >> @@ -515,11 +523,12 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) >> va_copy(tmp, ap); >> ret = vsnprintf(stack, sizeof(stack), fmt, tmp); >> va_end(tmp); >> + > >NIT: Not related. > >> if (igt_debug_on(ret < 0)) >> return -EINVAL; >> >> if (ret > sizeof(stack)) { >> - unsigned int len = ret + 1; >> + len = ret + 1; >> >> buf = malloc(len); >> if (igt_debug_on(!buf)) >> @@ -532,13 +541,22 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) >> } >> } >> >> - ret = igt_writen(fd, buf, ret); >> + /* >> + * Make sure to always issue a write() syscall, even if writing an >> + * empty string, otherwise values in sysfs like module parameters don't >> + * really get overwritten. vsnprintf() guarantees to return a \0 >> + * terminated string, so just add that char. The return code is still >> + * the same as before, to abstract that from caller. >> + */ >> + len = ret + 1; > >Potentially the same issue with some sysfs entries, I believe. > >Thanks, >Janusz > > >> + >> + ret = igt_writen(fd, buf, len); >> >> close(fd); >> if (buf != stack) >> free(buf); >> >> - return ret; >> + return ret == len ? len - 1 : ret; >> } >> >> /** >> > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() 2024-02-22 19:33 [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() Lucas De Marchi 2024-02-22 19:33 ` [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings Lucas De Marchi @ 2024-02-22 20:15 ` Patchwork 2024-02-22 20:23 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-22 20:15 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1096 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() URL : https://patchwork.freedesktop.org/series/130283/ State : success == Summary == CI Bug Log - changes from XEIGT_7724_BAT -> XEIGTPW_10725_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7724 -> IGTPW_10725 * Linux: xe-827-ae1e283133b83b0de46f00b0ac0bca913e159216 -> xe-829-5dfa3c2da4803652582408bfb3c529970735f594 IGTPW_10725: 10725 IGT_7724: a7c03f7521f88f74fdf17c744fd847a775f9951f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-827-ae1e283133b83b0de46f00b0ac0bca913e159216: ae1e283133b83b0de46f00b0ac0bca913e159216 xe-829-5dfa3c2da4803652582408bfb3c529970735f594: 5dfa3c2da4803652582408bfb3c529970735f594 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10725/index.html [-- Attachment #2: Type: text/html, Size: 1655 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() 2024-02-22 19:33 [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() Lucas De Marchi 2024-02-22 19:33 ` [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings Lucas De Marchi 2024-02-22 20:15 ` ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() Patchwork @ 2024-02-22 20:23 ` Patchwork 2024-02-22 21:29 ` [PATCH i-g-t v2 1/2] " Rodrigo Vivi 2024-02-23 7:01 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-22 20:23 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4624 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() URL : https://patchwork.freedesktop.org/series/130283/ State : success == Summary == CI Bug Log - changes from CI_DRM_14319 -> IGTPW_10725 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10725: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_pm_rpm@module-reload: - {bat-arls-1}: [DMESG-WARN][1] ([i915#10194] / [i915#10215]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/bat-arls-1/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/bat-arls-1/igt@i915_pm_rpm@module-reload.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - {bat-dg2-13}: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/bat-dg2-13/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/bat-dg2-13/igt@kms_chamelium_hpd@common-hpd-after-suspend.html Known issues ------------ Here are the changes found in IGTPW_10725 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][5] -> [ABORT][6] ([i915#7911]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/fi-bsw-nick/igt@i915_selftest@live@execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/fi-bsw-nick/igt@i915_selftest@live@execlists.html #### Possible fixes #### * igt@gem_exec_create@basic@smem: - {bat-arls-1}: [DMESG-WARN][7] ([i915#10194]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/bat-arls-1/igt@gem_exec_create@basic@smem.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/bat-arls-1/igt@gem_exec_create@basic@smem.html * igt@i915_selftest@live@gt_mocs: - bat-jsl-3: [INCOMPLETE][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/bat-jsl-3/igt@i915_selftest@live@gt_mocs.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/bat-jsl-3/igt@i915_selftest@live@gt_mocs.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194 [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10215]: https://gitlab.freedesktop.org/drm/intel/issues/10215 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7724 -> IGTPW_10725 CI-20190529: 20190529 CI_DRM_14319: 5dfa3c2da4803652582408bfb3c529970735f594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10725: 10725 IGT_7724: a7c03f7521f88f74fdf17c744fd847a775f9951f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/index.html [-- Attachment #2: Type: text/html, Size: 4241 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() 2024-02-22 19:33 [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() Lucas De Marchi ` (2 preceding siblings ...) 2024-02-22 20:23 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-22 21:29 ` Rodrigo Vivi 2024-02-23 7:01 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Rodrigo Vivi @ 2024-02-22 21:29 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev, Janusz Krzysztofik On Thu, Feb 22, 2024 at 11:33:25AM -0800, Lucas De Marchi wrote: > Let's guarantee we always pass the same pointer to vsnprintf: if we are > using the array size, pass that instead of buf that could point to > something else in an eventual refactor. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > --- > lib/igt_sysfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index 51b610114..2b0225138 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -513,7 +513,7 @@ int igt_sysfs_vprintf(int dir, const char *attr, const char *fmt, va_list ap) > return -errno; > > va_copy(tmp, ap); > - ret = vsnprintf(buf, sizeof(stack), fmt, tmp); > + ret = vsnprintf(stack, sizeof(stack), fmt, tmp); indeed safer (thinking about the possible refactors) perhaps we can even move *buf = stack from the begin of the function to an else of the if(ret > sizeof(stack))? anyway, this is already much better Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > va_end(tmp); > if (igt_debug_on(ret < 0)) > return -EINVAL; > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() 2024-02-22 19:33 [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() Lucas De Marchi ` (3 preceding siblings ...) 2024-02-22 21:29 ` [PATCH i-g-t v2 1/2] " Rodrigo Vivi @ 2024-02-23 7:01 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-23 7:01 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86616 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() URL : https://patchwork.freedesktop.org/series/130283/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14319_full -> IGTPW_10725_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10725_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10725_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_10725/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10725_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: [PASS][1] -> [FAIL][2] +41 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][3] -> [FAIL][4] +35 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-1/igt@gem_eio@in-flight-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-1/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-tglu: NOTRUN -> [FAIL][5] +2 other tests fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_exec_suspend@basic-s3@lmem0: - shard-dg2: [PASS][6] -> [FAIL][7] +23 other tests fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-1/igt@gem_exec_suspend@basic-s3@lmem0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@gem_exec_suspend@basic-s3@lmem0.html * igt@gem_softpin@noreloc-s3: - shard-glk: [PASS][8] -> [FAIL][9] +44 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-glk4/igt@gem_softpin@noreloc-s3.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk3/igt@gem_softpin@noreloc-s3.html * igt@gem_wait@write-busy@bcs0: - shard-snb: [PASS][10] -> [ABORT][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb5/igt@gem_wait@write-busy@bcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb6/igt@gem_wait@write-busy@bcs0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-mtlp: NOTRUN -> [FAIL][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@sysfs-reader: - shard-dg1: [PASS][13] -> [FAIL][14] +36 other tests fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-18/igt@i915_suspend@sysfs-reader.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@i915_suspend@sysfs-reader.html * {igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2} (NEW): - shard-dg2: NOTRUN -> [SKIP][15] +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][16] +15 other tests fail [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-mtlp: [PASS][17] -> [FAIL][18] +47 other tests fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_pm_backlight@fade-with-suspend: - shard-mtlp: NOTRUN -> [INCOMPLETE][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-4/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-tglu: [PASS][20] -> [FAIL][21] +45 other tests fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-5/igt@kms_pm_rpm@system-suspend-modeset.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][22] +7 other tests fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][23] +17 other tests fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][24] +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][25] +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb1/igt@kms_vblank@ts-continuation-suspend@pipe-a-vga-1.html #### Warnings #### * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][26] ([i915#7297]) -> [FAIL][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@hibernate: - shard-dg2: [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213]) -> [FAIL][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-1/igt@gem_eio@hibernate.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][30] ([i915#7975] / [i915#8213]) -> [FAIL][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: [ABORT][32] ([i915#7975] / [i915#8213]) -> [FAIL][33] +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: [INCOMPLETE][34] ([i915#7443]) -> [FAIL][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1}: - shard-dg2: NOTRUN -> [SKIP][36] +61 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * {igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1}: - shard-mtlp: NOTRUN -> [SKIP][37] +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-1/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * {igt@kms_psr@psr2-suspend@edp-1}: - shard-mtlp: [PASS][38] -> [FAIL][39] +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-mtlp-5/igt@kms_psr@psr2-suspend@edp-1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-3/igt@kms_psr@psr2-suspend@edp-1.html New tests --------- New tests have been introduced between CI_DRM_14319_full and IGTPW_10725_full: ### New IGT tests (2) ### * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10725_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8411]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-dg1: [PASS][41] -> [DMESG-WARN][42] ([i915#4423]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-18/igt@debugfs_test@basic-hwmon.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-15/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#8414]) +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#8414]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-7/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][45] -> [FAIL][46] ([i915#7742]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#3555] / [i915#9323]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#7697]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#8562]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][50] ([fdo#109314]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#8555]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8555]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#1099]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#5882]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][55] -> [FAIL][56] ([i915#5784]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-10/igt@gem_eio@reset-stress.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4812]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4771]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4771]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#8555]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4525]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#6344]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@many-4k-zero: - shard-glk: NOTRUN -> [FAIL][63] ([i915#9606]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk4/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271]) +12 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb7/igt@gem_exec_fair@basic-none.html - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-18/igt@gem_exec_fair@basic-none.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4473] / [i915#4771]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3539] / [i915#4852]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][68] ([i915#2842]) +4 other tests fail [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][69] ([i915#2842]) +4 other tests fail [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-7/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][70] ([i915#2842]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][71] -> [FAIL][72] ([i915#2842]) +2 other tests fail [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4812]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#5107]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3281]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3281]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3281]) +18 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4537] / [i915#4812]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4537] / [i915#4812]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4812]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: NOTRUN -> [INCOMPLETE][82] ([i915#6755] / [i915#7392] / [i915#9857]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-9/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4860]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][86] -> [TIMEOUT][87] ([i915#5493]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4083]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-3/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@flink-race: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4077]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-8/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4077]) +9 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4083]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3282]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3282]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4270]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-6/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4270]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#4270]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#5190]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8428]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#3323]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4958]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gen3_render_tiledx_blits: - shard-rkl: NOTRUN -> [SKIP][106] ([fdo#109289]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#109289]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-single: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4881]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [INCOMPLETE][113] ([i915#10137] / [i915#9820] / [i915#9849]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][114] ([i915#2681]) +3 other tests warn [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][116] -> [INCOMPLETE][117] ([i915#10137] / [i915#7790]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb2/igt@i915_pm_rps@reset.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb6/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][118] ([fdo#109302]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@i915_query@query-topology-unsupported.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#8709]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/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-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#8709]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#8709]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111615] / [i915#5286]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][127] -> [FAIL][128] ([i915#3743]) +1 other test fail [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +15 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-tglu: NOTRUN -> [SKIP][132] ([fdo#111615]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111615]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@2x-modeset: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#2705]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-3/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#2705]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][136] ([fdo#109271]) +153 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk2/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#7213]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111827]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-4/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#111827]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#7828]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3116] / [i915#3299]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8063] / [i915#9433]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3359]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: NOTRUN -> [FAIL][153] ([i915#72]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [i915#5354]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#4103]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][157] ([fdo#111767]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274] / [fdo#111767] / [i915#5354]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][159] ([fdo#111767] / [fdo#111825]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][160] ([fdo#111767] / [fdo#111825]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-snb: NOTRUN -> [SKIP][161] ([fdo#109271] / [fdo#111767]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-tglu: NOTRUN -> [SKIP][162] ([fdo#109274] / [fdo#111767]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: [PASS][163] -> [SKIP][164] ([fdo#109271] / [fdo#111767]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][165] ([i915#2346]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#110189] / [i915#9227]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][167] ([fdo#110189] / [i915#9723]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-18/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1: - shard-snb: NOTRUN -> [SKIP][168] ([fdo#109271] / [fdo#110189]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9833]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#1257]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3840] / [i915#9688]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3840]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3840] / [i915#9053]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-8/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#658]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109274] / [i915#3637]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3637]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-dg1: NOTRUN -> [SKIP][182] ([fdo#111825] / [i915#9934]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-16/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274] / [fdo#111767]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][184] ([fdo#109274]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111825]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][186] ([i915#2122]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk1/igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-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][188] ([i915#2587] / [i915#2672]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-7/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-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [PASS][192] -> [FAIL][193] ([i915#6880]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [PASS][194] -> [SKIP][195] ([fdo#109271]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#1825]) +8 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][197] ([fdo#111825]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3023]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#5354]) +27 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8708]) +15 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][201] ([fdo#109280]) +13 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +23 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#3458]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][204] ([fdo#110189]) +15 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109280] / [fdo#111767]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][206] ([fdo#111825] / [i915#1825]) +10 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#6953] / [i915#9423]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][211] ([i915#8292]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#9423]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#5176] / [i915#9423]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#5176] / [i915#9423]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#5176] / [i915#9423]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#9423]) +11 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#5235]) +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#5235]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#5235]) +11 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235] / [i915#9423]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5354]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-5/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#9685]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#8430]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8430]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][226] -> [SKIP][227] ([i915#9519]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9519]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#9519]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#6524] / [i915#6805]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-10/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][231] ([fdo#109271] / [fdo#110189]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk8/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][232] ([fdo#110189]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#110189]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9685]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4235]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#4235]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-19/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][239] ([IGT#2]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-rkl: [PASS][240] -> [FAIL][241] ([i915#9196]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][242] -> [FAIL][243] ([i915#9196]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2437] / [i915#9412]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][245] ([fdo#109271] / [i915#2437]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][246] ([i915#7484]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][247] ([fdo#109289] / [i915#2433]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs0: - shard-mtlp: [PASS][248] -> [FAIL][249] ([i915#4349]) +2 other tests fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-mtlp-5/igt@perf_pmu@busy-double-start@vecs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-5/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][250] ([i915#4349]) +3 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][251] ([i915#6806]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][252] ([i915#5793]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@perf_pmu@module-unload.html * igt@prime_udl: - shard-tglu: NOTRUN -> [SKIP][253] ([fdo#109291]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-8/igt@prime_udl.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3708] / [i915#4077]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3708] / [i915#4077]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3708]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#9917]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@v3d/v3d_submit_cl@bad-pad: - shard-rkl: NOTRUN -> [SKIP][258] ([fdo#109315]) +4 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2575]) +14 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#2575]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-6/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@v3d/v3d_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][261] ([fdo#109315] / [i915#2575]) +7 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-6/igt@v3d/v3d_wait_bo@used-bo-0ns.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#2575]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-15/igt@v3d/v3d_wait_bo@used-bo-0ns.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#7711]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-12/igt@vc4/vc4_mmap@mmap-bad-handle.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#2575]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-6/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#7711]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#7711]) +9 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#7711]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@vc4/vc4_tiling@set-bad-flags.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][268] ([i915#7742]) -> [PASS][269] +1 other test pass [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][270] ([i915#5784]) -> [PASS][271] +1 other test pass [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-15/igt@gem_eio@unwedge-stress.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-15/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][272] ([i915#2846]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@i915_hangman@gt-engine-error@rcs0: - shard-tglu: [TIMEOUT][274] -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-7/igt@i915_hangman@gt-engine-error@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-6/igt@i915_hangman@gt-engine-error@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][276] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][278] ([i915#9820]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [INCOMPLETE][280] ([i915#10137] / [i915#9200]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@gem-idle: - shard-tglu: [SKIP][282] -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-7/igt@i915_pm_rpm@gem-idle.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-2/igt@i915_pm_rpm@gem-idle.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][284] ([i915#5138]) -> [PASS][285] +1 other test pass [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][286] ([i915#3743]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [SKIP][288] ([fdo#109271]) -> [PASS][289] +8 other tests pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [SKIP][290] ([fdo#109271] / [fdo#111767]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][292] ([i915#9295]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][294] ([i915#9519]) -> [PASS][295] +2 other tests pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-rkl: [INCOMPLETE][296] ([i915#8875] / [i915#9569]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][298] ([i915#9196]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html - shard-tglu: [FAIL][300] ([i915#9196]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][302] ([i915#10137] / [i915#9408] / [i915#9618]) -> [ABORT][303] ([i915#9618]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg1: [SKIP][304] ([i915#8414]) -> [SKIP][305] ([i915#4423] / [i915#8414]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-17/igt@drm_fdinfo@virtual-busy-all.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: [SKIP][306] ([i915#4565]) -> [SKIP][307] ([i915#4423] / [i915#4565]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-19/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][308] ([i915#10131] / [i915#9697]) -> [ABORT][309] ([i915#10131] / [i915#9820]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][310] ([i915#9820]) -> [INCOMPLETE][311] ([i915#10137] / [i915#9820] / [i915#9849]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: [TIMEOUT][312] -> [SKIP][313] ([fdo#111614]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-tglu-7/igt@kms_big_fb@linear-16bpp-rotate-90.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-tglu-9/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_content_protection@srm: - shard-snb: [INCOMPLETE][314] ([i915#8816]) -> [SKIP][315] ([fdo#109271]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb7/igt@kms_content_protection@srm.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-snb: [SKIP][316] ([fdo#109271]) -> [INCOMPLETE][317] ([i915#8816]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb2/igt@kms_content_protection@type1.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb5/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][318] ([i915#3955]) -> [SKIP][319] ([fdo#110189] / [i915#3955]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [SKIP][320] ([fdo#109271] / [fdo#111767]) -> [SKIP][321] ([fdo#109271]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-snb: [SKIP][322] ([fdo#109271]) -> [SKIP][323] ([fdo#109271] / [fdo#111767]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg1: [SKIP][324] ([i915#3458]) -> [SKIP][325] ([i915#3458] / [i915#4423]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14319/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7724 -> IGTPW_10725 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14319: 5dfa3c2da4803652582408bfb3c529970735f594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10725: 10725 IGT_7724: a7c03f7521f88f74fdf17c744fd847a775f9951f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10725/index.html [-- Attachment #2: Type: text/html, Size: 105563 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-02-27 5:26 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-22 19:33 [PATCH i-g-t v2 1/2] lib/igt_sysfs: Use same var for sizeof() Lucas De Marchi 2024-02-22 19:33 ` [PATCH i-g-t v2 2/2] lib/igt_sysfs: make sure to write empty strings Lucas De Marchi 2024-02-26 21:11 ` Janusz Krzysztofik 2024-02-27 5:26 ` Lucas De Marchi 2024-02-22 20:15 ` ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/2] lib/igt_sysfs: Use same var for sizeof() Patchwork 2024-02-22 20:23 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-22 21:29 ` [PATCH i-g-t v2 1/2] " Rodrigo Vivi 2024-02-23 7:01 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox