* [PATCH i-g-t 0/5] Initial dmem cgroup support
@ 2026-03-26 16:10 Thomas Hellström
2026-03-26 16:10 ` [PATCH i-g-t 1/5] lib/igt_cgroup: add cgroup v2 and dmem controller helpers Thomas Hellström
` (8 more replies)
0 siblings, 9 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-03-26 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: dev, Thomas Hellström
This series introduces library support for some trivial cgroup v2
dmem manipulation.
It also adds a test for the library support itself and then an
xe test where cgroup functionality is exercised. In particular
lowering the max allocated amount of vram beyond what's already
allocated.
That functionality is not in the kernel yet, but a series for it
is pending.
Patch 1 adds library functionality.
Patch 2 adds a test for the library functionality. It's device
agnostic.
Patch 3 adds a function to get the xe driver cgroup controller
region name for an xe device VRAM region. Also library
functionality.
Patch 4 extends the library vm_bind functionality, pending
completion of https://patchwork.freedesktop.org/patch/714000/?series=163579&rev=3
Patch 5 adds the xe cgroup test (some KMD functionality still missing).
Thomas Hellström (5):
lib/igt_cgroup: add cgroup v2 and dmem controller helpers
tests/cgroup_dmem: add dmem cgroup controller test
lib/xe: add xe_cgroup_region_name() helper
lib/xe: add __xe_vm_bind_lr_sync() failable bind helper
tests/xe_cgroups: add dmem cgroup eviction test
lib/igt.h | 1 +
lib/igt_cgroup.c | 644 +++++++++++++++++++++++++++++++++++++++
lib/igt_cgroup.h | 58 ++++
lib/meson.build | 1 +
lib/xe/xe_ioctl.c | 79 ++++-
lib/xe/xe_ioctl.h | 3 +
lib/xe/xe_query.c | 32 ++
lib/xe/xe_query.h | 2 +
tests/cgroup_dmem.c | 92 ++++++
tests/intel/xe_cgroups.c | 296 ++++++++++++++++++
tests/meson.build | 2 +
11 files changed, 1195 insertions(+), 15 deletions(-)
create mode 100644 lib/igt_cgroup.c
create mode 100644 lib/igt_cgroup.h
create mode 100644 tests/cgroup_dmem.c
create mode 100644 tests/intel/xe_cgroups.c
--
2.53.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t 1/5] lib/igt_cgroup: add cgroup v2 and dmem controller helpers 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström @ 2026-03-26 16:10 ` Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 2/5] tests/cgroup_dmem: add dmem cgroup controller test Thomas Hellström ` (7 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Thomas Hellström @ 2026-03-26 16:10 UTC (permalink / raw) To: igt-dev; +Cc: dev, Thomas Hellström Add igt_cgroup, a library module providing helpers to create and manage cgroup v2 sub-cgroups from IGT tests, with support for the dmem controller that governs device memory (e.g. GPU VRAM) limits. The API covers: - igt_cgroup_new() / igt_cgroup_free(): create and destroy a named sub-cgroup under the unified cgroupv2 hierarchy, enabling the dmem controller automatically. - igt_cgroup_move_current(): move the calling process into a cgroup. - igt_cgroup_dmem_set/get_max/min/low(): write and read dmem.max, dmem.min and dmem.low for a named device memory region. - igt_cgroup_dmem_get_current(): read current per-cgroup device memory usage. - igt_cgroup_dmem_get_system_current(): read system-wide device memory usage from the root cgroup. - igt_cgroup_dmem_get_capacity(): read total region capacity from the root cgroup's dmem.capacity file. - igt_cgroup_dmem_regions() / igt_cgroup_dmem_regions_free(): enumerate all registered device memory regions. All public API functions that can fail use igt_assert internally rather than returning error codes, following the IGT convention. Assisted-by: GitHub Copilot:claude-sonnet-4.6 Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- lib/igt.h | 1 + lib/igt_cgroup.c | 644 +++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_cgroup.h | 58 +++++ lib/meson.build | 1 + 4 files changed, 704 insertions(+) create mode 100644 lib/igt_cgroup.c create mode 100644 lib/igt_cgroup.h diff --git a/lib/igt.h b/lib/igt.h index 173ca70bf..d8e5de7dc 100644 --- a/lib/igt.h +++ b/lib/igt.h @@ -27,6 +27,7 @@ #include "drmtest.h" #include "i915_3d.h" #include "igt_aux.h" +#include "igt_cgroup.h" #include "igt_configfs.h" #include "igt_core.h" #include "igt_debugfs.h" diff --git a/lib/igt_cgroup.c b/lib/igt_cgroup.c new file mode 100644 index 000000000..86aa537b5 --- /dev/null +++ b/lib/igt_cgroup.c @@ -0,0 +1,644 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ + +/** + * SECTION:igt_cgroup + * @short_description: cgroup v2 helpers for IGT tests + * @title: cgroup + * @include: igt_cgroup.h + * + * This library provides helpers for creating and managing cgroup v2 + * sub-cgroups from IGT tests, including support for the dmem controller + * which governs device memory (e.g. GPU VRAM) limits. + */ + +#include <errno.h> +#include <fcntl.h> +#include <inttypes.h> +#include <limits.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <sys/stat.h> +#include <sys/statfs.h> +#include <sys/types.h> +#include <unistd.h> + +#include "igt_cgroup.h" +#include "igt_core.h" +#include "igt_fs.h" + +#ifndef CGROUP2_SUPER_MAGIC +#define CGROUP2_SUPER_MAGIC 0x63677270 +#endif + +/** + * struct igt_cgroup - Opaque handle to a cgroup v2 sub-cgroup. + * @dirfd: File descriptor for the cgroup directory. + * @path: Absolute path to the cgroup directory. + * @parent_path: Absolute path to the parent cgroup directory. + * + * Allocated by igt_cgroup_new() and freed by igt_cgroup_free(). + */ +struct igt_cgroup { + int dirfd; + char *path; + char *parent_path; +}; + +static const char *cgroupv2_mount(void) +{ + static const char *path; + static const char * const candidates[] = { + "/sys/fs/cgroup", + "/sys/fs/cgroup/unified", + NULL, + }; + struct statfs st; + int i; + + if (path) + return path; + + for (i = 0; candidates[i]; i++) { + if (statfs(candidates[i], &st) == 0 && + (unsigned long)st.f_type == CGROUP2_SUPER_MAGIC) { + path = candidates[i]; + return path; + } + } + + return NULL; +} + +/* + * Write "+controller" to @cgroup_path/cgroup.subtree_control to enable + * the named controller for children of that cgroup. + */ +static int enable_controller(const char *cgroup_path, const char *controller) +{ + char path[PATH_MAX]; + char cmd[64]; + ssize_t ret; + int fd; + + snprintf(path, sizeof(path), "%s/cgroup.subtree_control", cgroup_path); + snprintf(cmd, sizeof(cmd), "+%s", controller); + + fd = open(path, O_WRONLY); + if (fd < 0) + return -errno; + + ret = write(fd, cmd, strlen(cmd)); + close(fd); + + return (ret < 0) ? -errno : 0; +} + +/* + * Move every PID listed in @cgroup_path/cgroup.procs to + * @parent_path/cgroup.procs. Silently ignores individual failures + * (a PID may have exited between reading and writing). + */ +static void drain_procs_to_parent(const char *cgroup_path, + const char *parent_path) +{ + char proc_path[PATH_MAX]; + char parent_procs[PATH_MAX]; + int parent_fd; + FILE *f; + int pid; + + snprintf(proc_path, sizeof(proc_path), "%s/cgroup.procs", cgroup_path); + snprintf(parent_procs, sizeof(parent_procs), "%s/cgroup.procs", parent_path); + + parent_fd = open(parent_procs, O_WRONLY); + if (parent_fd < 0) + return; + + f = fopen(proc_path, "r"); + if (f) { + while (fscanf(f, "%d", &pid) == 1) { + char pidbuf[32]; + ssize_t len = snprintf(pidbuf, sizeof(pidbuf), "%d", pid); + + write(parent_fd, pidbuf, len); + } + fclose(f); + } + + close(parent_fd); +} + +/** + * igt_cgroup_new() - Create a new cgroup v2 sub-cgroup. + * @name: Name for the new cgroup directory. + * + * Creates a sub-cgroup named @name under the system's unified cgroupv2 + * hierarchy. The dmem controller is enabled in the parent's + * subtree_control so that igt_cgroup_dmem_set_max() and friends take effect + * immediately. + * + * Return: Pointer to an &struct igt_cgroup on success, %NULL on failure. + */ +struct igt_cgroup *igt_cgroup_new(const char *name) +{ + struct igt_cgroup *cg; + const char *mount; + int ret; + + mount = cgroupv2_mount(); + if (!mount) { + igt_debug("cgroup v2 not found\n"); + return NULL; + } + + cg = calloc(1, sizeof(*cg)); + if (!cg) + return NULL; + + cg->parent_path = strdup(mount); + if (!cg->parent_path) + goto err_free; + + if (asprintf(&cg->path, "%s/%s", mount, name) < 0) { + cg->path = NULL; + goto err_parent; + } + + /* + * Try to enable the dmem controller in the parent's subtree_control. + * Ignore EINVAL which the kernel returns when the controller is already + * listed (i.e. already enabled). + */ + ret = enable_controller(mount, "dmem"); + if (ret < 0 && ret != -EINVAL) + igt_debug("Failed to enable dmem controller in %s: %d\n", + mount, ret); + + if (mkdir(cg->path, 0755) < 0 && errno != EEXIST) { + igt_debug("Failed to create cgroup %s: %m\n", cg->path); + goto err_path; + } + + cg->dirfd = open(cg->path, O_RDONLY | O_DIRECTORY); + if (cg->dirfd < 0) { + igt_debug("Failed to open cgroup dir %s: %m\n", cg->path); + goto err_rmdir; + } + + return cg; + +err_rmdir: + rmdir(cg->path); +err_path: + free(cg->path); +err_parent: + free(cg->parent_path); +err_free: + free(cg); + return NULL; +} + +/** + * igt_cgroup_free() - Destroy a cgroup and release its resources. + * @cg: The cgroup to destroy. + * + * Moves any processes still running inside @cg back to the parent cgroup, + * removes the cgroup directory, and frees all associated memory. + * After this call @cg must not be used. + */ +void igt_cgroup_free(struct igt_cgroup *cg) +{ + if (!cg) + return; + + drain_procs_to_parent(cg->path, cg->parent_path); + + close(cg->dirfd); + + if (rmdir(cg->path) < 0) + igt_debug("Failed to remove cgroup %s: %m\n", cg->path); + + free(cg->path); + free(cg->parent_path); + free(cg); +} + +/** + * igt_cgroup_move_current() - Move the calling process into a cgroup. + * @cg: Target cgroup. + * + * Writes the calling process's PID to @cg's cgroup.procs file, transferring + * it into the cgroup. All threads of the process move together. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_move_current(struct igt_cgroup *cg) +{ + char pidbuf[32]; + ssize_t len; + int fd, ret; + + len = snprintf(pidbuf, sizeof(pidbuf), "%d", (int)getpid()); + + fd = openat(cg->dirfd, "cgroup.procs", O_WRONLY); + igt_assert_f(fd >= 0, "Failed to open cgroup.procs: %m\n"); + + ret = write(fd, pidbuf, len); + close(fd); + + igt_assert_f(ret == len, "Failed to write PID to cgroup.procs: %m\n"); +} + +/* + * Parse a single dmem interface file line of the form "region_name value\n" + * where value is either a decimal byte count or the string "max". + * Returns 0 and writes to *out on success, -EINVAL on parse error. + */ +static int dmem_parse_line(char *line, const char *region, uint64_t *out) +{ + char *space = strchr(line, ' '); + + if (!space) + return -EINVAL; + + *space = '\0'; + if (strcmp(line, region) != 0) + return -ENOENT; + + if (strcmp(space + 1, "max") == 0) { + *out = IGT_CGROUP_DMEM_MAX; + return 0; + } + + errno = 0; + *out = strtoull(space + 1, &space, 10); + if (errno || *space != '\0') + return -EINVAL; + + return 0; +} + +/* + * Read a dmem interface file opened relative to @dirfd, searching for + * @region. On success writes the region's value to @out and returns 0. + * Returns -ENOENT when @region is absent, or a negative errno otherwise. + */ +static int dmem_read_region(int dirfd, const char *file, + const char *region, uint64_t *out) +{ + char buf[4096]; + char *line, *saveptr; + ssize_t n; + int fd; + + fd = openat(dirfd, file, O_RDONLY); + if (fd < 0) + return -errno; + + n = igt_readn(fd, buf, sizeof(buf) - 1); + close(fd); + if (n < 0) + return (int)n; + buf[n] = '\0'; + + for (line = strtok_r(buf, "\n", &saveptr); line; + line = strtok_r(NULL, "\n", &saveptr)) { + int ret = dmem_parse_line(line, region, out); + + if (ret != -ENOENT) + return ret; + } + + return -ENOENT; +} + +/* + * Write "region_name value" (or "region_name max") to the dmem interface + * file @file opened relative to @dirfd. + * Returns 0 on success, negative errno on failure. + */ +static int dmem_write_region(int dirfd, const char *file, + const char *region, uint64_t bytes) +{ + char buf[PATH_MAX + 64]; + ssize_t len; + int fd, ret; + + if (bytes == IGT_CGROUP_DMEM_MAX) + len = snprintf(buf, sizeof(buf), "%s max", region); + else + len = snprintf(buf, sizeof(buf), "%s %" PRIu64, region, bytes); + + fd = openat(dirfd, file, O_WRONLY); + if (fd < 0) + return -errno; + + do { + ret = write(fd, buf, len); + if (ret < 0 && errno == EINTR) + igt_debug("dmem cgroup write interrupted by signal, retrying\n"); + } while (ret < 0 && errno == EINTR); + close(fd); + + return (ret < 0) ? -errno : 0; +} + +/** + * __igt_cgroup_dmem_set_max() - Set the hard device memory limit, returning errors. + * @cg: Target cgroup. + * @region: Device memory region name (e.g. "drm/0000:03:00.0/vram0"). + * @bytes: Hard limit in bytes. Use %IGT_CGROUP_DMEM_MAX for no limit. + * + * Like igt_cgroup_dmem_set_max() but returns an error code instead of + * asserting, allowing callers to handle expected failures such as -%EBUSY + * (current usage already exceeds the requested limit). + * + * Return: 0 on success, negative errno on failure. + */ +int __igt_cgroup_dmem_set_max(struct igt_cgroup *cg, const char *region, + uint64_t bytes) +{ + return dmem_write_region(cg->dirfd, "dmem.max", region, bytes); +} + +/** + * igt_cgroup_dmem_set_max() - Set the hard device memory limit for a region. + * @cg: Target cgroup. + * @region: Device memory region name (e.g. "drm/0000:03:00.0/vram0"). + * @bytes: Hard limit in bytes. Use %IGT_CGROUP_DMEM_MAX for no limit. + * + * Writes @bytes to dmem.max for @region inside @cg. Allocation attempts + * that would push usage past this limit fail with -EAGAIN in the kernel. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_set_max(struct igt_cgroup *cg, const char *region, + uint64_t bytes) +{ + igt_assert_f(__igt_cgroup_dmem_set_max(cg, region, bytes) == 0, + "Failed to set dmem.max for region %s\n", region); +} + +/** + * igt_cgroup_dmem_set_min() - Set the hard protection threshold for a region. + * @cg: Target cgroup. + * @region: Device memory region name. + * @bytes: Hard protection threshold in bytes. Pass 0 to disable. + * + * Writes @bytes to dmem.min for @region inside @cg. Device memory below + * this threshold is never reclaimed regardless of system pressure. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_set_min(struct igt_cgroup *cg, const char *region, + uint64_t bytes) +{ + igt_assert_f(dmem_write_region(cg->dirfd, "dmem.min", region, bytes) == 0, + "Failed to set dmem.min for region %s\n", region); +} + +/** + * igt_cgroup_dmem_set_low() - Set the soft protection threshold for a region. + * @cg: Target cgroup. + * @region: Device memory region name. + * @bytes: Soft protection threshold in bytes. Pass 0 to disable. + * + * Writes @bytes to dmem.low for @region inside @cg. Device memory below + * this threshold is only reclaimed when no unprotected memory remains. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_set_low(struct igt_cgroup *cg, const char *region, + uint64_t bytes) +{ + igt_assert_f(dmem_write_region(cg->dirfd, "dmem.low", region, bytes) == 0, + "Failed to set dmem.low for region %s\n", region); +} + +/** + * igt_cgroup_dmem_get_current() - Read current device memory usage for a region. + * @cg: Target cgroup. + * @region: Device memory region name. + * @out: Receives the current usage in bytes. + * + * Reads dmem.current from @cg and returns the usage for @region. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_get_current(struct igt_cgroup *cg, const char *region, + uint64_t *out) +{ + igt_assert_f(dmem_read_region(cg->dirfd, "dmem.current", region, out) == 0, + "Failed to read dmem.current for region %s\n", region); +} + +/** + * igt_cgroup_dmem_get_max() - Read the configured hard limit for a region. + * @cg: Target cgroup. + * @region: Device memory region name. + * @out: Receives the limit in bytes, or %IGT_CGROUP_DMEM_MAX if unset. + * + * Reads dmem.max from @cg for @region. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_get_max(struct igt_cgroup *cg, const char *region, + uint64_t *out) +{ + igt_assert_f(dmem_read_region(cg->dirfd, "dmem.max", region, out) == 0, + "Failed to read dmem.max for region %s\n", region); +} + +/** + * igt_cgroup_dmem_get_min() - Read the configured hard protection threshold for a region. + * @cg: Target cgroup. + * @region: Device memory region name. + * @out: Receives the threshold in bytes. + * + * Reads dmem.min from @cg for @region. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_get_min(struct igt_cgroup *cg, const char *region, + uint64_t *out) +{ + igt_assert_f(dmem_read_region(cg->dirfd, "dmem.min", region, out) == 0, + "Failed to read dmem.min for region %s\n", region); +} + +/** + * igt_cgroup_dmem_get_low() - Read the configured soft protection threshold for a region. + * @cg: Target cgroup. + * @region: Device memory region name. + * @out: Receives the threshold in bytes. + * + * Reads dmem.low from @cg for @region. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_get_low(struct igt_cgroup *cg, const char *region, + uint64_t *out) +{ + igt_assert_f(dmem_read_region(cg->dirfd, "dmem.low", region, out) == 0, + "Failed to read dmem.low for region %s\n", region); +} + +/** + * igt_cgroup_dmem_available() - Check if the dmem cgroup controller is available. + * + * Probes the cgroup v2 hierarchy for the presence of a dmem.capacity file at + * the root, indicating that the kernel dmem controller is compiled in and at + * least one device memory region has been registered. + * + * Return: %true if the dmem controller is available, %false otherwise. + */ +bool igt_cgroup_dmem_available(void) +{ + char **regions = igt_cgroup_dmem_regions(); + + if (!regions) + return false; + + igt_cgroup_dmem_regions_free(regions); + return true; +} + +/** + * igt_cgroup_dmem_regions() - Enumerate all registered device memory regions. + * + * Reads the root cgroup's dmem.capacity file and returns a NULL-terminated + * array of region name strings. Each name can be passed directly to + * igt_cgroup_dmem_get_capacity(), igt_cgroup_dmem_get_current(), and the + * igt_cgroup_dmem_set_*() / igt_cgroup_dmem_get_*() family. + * + * Free the returned array with igt_cgroup_dmem_regions_free(). + * + * Return: A NULL-terminated array of strings on success, %NULL if cgroupv2 + * is unavailable or no regions are registered. + */ +char **igt_cgroup_dmem_regions(void) +{ + char buf[4096]; + char *line, *saveptr, *space, *name; + char **regions = NULL, **tmp; + int count = 0; + const char *mount; + ssize_t n; + int dirfd, fd; + + mount = cgroupv2_mount(); + if (!mount) + return NULL; + + dirfd = open(mount, O_RDONLY | O_DIRECTORY); + if (dirfd < 0) + return NULL; + + fd = openat(dirfd, "dmem.capacity", O_RDONLY); + close(dirfd); + if (fd < 0) + return NULL; + + n = igt_readn(fd, buf, sizeof(buf) - 1); + close(fd); + if (n <= 0) + return NULL; + buf[n] = '\0'; + + for (line = strtok_r(buf, "\n", &saveptr); line; + line = strtok_r(NULL, "\n", &saveptr)) { + space = strchr(line, ' '); + + if (!space) + continue; + *space = '\0'; + + name = strdup(line); + if (!name) + goto err; + + tmp = realloc(regions, (count + 2) * sizeof(*regions)); + if (!tmp) { + free(name); + goto err; + } + regions = tmp; + regions[count++] = name; + regions[count] = NULL; + } + + return regions; + +err: + igt_cgroup_dmem_regions_free(regions); + return NULL; +} + +/** + * igt_cgroup_dmem_regions_free() - Free a region list returned by igt_cgroup_dmem_regions(). + * @regions: NULL-terminated array returned by igt_cgroup_dmem_regions(). + * + * Frees each string in @regions and the array itself. Safe to call with + * %NULL. + */ +void igt_cgroup_dmem_regions_free(char **regions) +{ + int i; + + if (!regions) + return; + + for (i = 0; regions[i]; i++) + free(regions[i]); + + free(regions); +} + +/** + * igt_cgroup_dmem_get_capacity() - Read total device memory capacity for a region. + * @region: Device memory region name. + * @out: Receives the total capacity in bytes. + * + * Reads dmem.capacity from the root cgroup and returns the capacity for + * @region. This reflects the maximum allocatable bytes, excluding memory + * reserved by the kernel for internal use. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_get_capacity(const char *region, uint64_t *out) +{ + const char *mount; + int dirfd, ret; + + mount = cgroupv2_mount(); + igt_assert_f(mount, "cgroup v2 not available\n"); + + dirfd = open(mount, O_RDONLY | O_DIRECTORY); + igt_assert_f(dirfd >= 0, "Failed to open cgroup root: %m\n"); + + ret = dmem_read_region(dirfd, "dmem.capacity", region, out); + close(dirfd); + + igt_assert_f(ret == 0, "Failed to read dmem.capacity for region %s\n", region); +} + +/** + * igt_cgroup_dmem_get_system_current() - Read system-wide device memory usage for a region. + * @region: Device memory region name. + * @out: Receives the total system-wide usage in bytes. + * + * Reads dmem.current from the root cgroup for @region. This reflects the + * aggregate device memory usage across all cgroups on the system. + * Fails the test via igt_assert on error. + */ +void igt_cgroup_dmem_get_system_current(const char *region, uint64_t *out) +{ + const char *mount; + int dirfd, ret; + + mount = cgroupv2_mount(); + igt_assert_f(mount, "cgroup v2 not available\n"); + + dirfd = open(mount, O_RDONLY | O_DIRECTORY); + igt_assert_f(dirfd >= 0, "Failed to open cgroup root: %m\n"); + + ret = dmem_read_region(dirfd, "dmem.current", region, out); + close(dirfd); + + igt_assert_f(ret == 0, "Failed to read root dmem.current for region %s\n", region); +} diff --git a/lib/igt_cgroup.h b/lib/igt_cgroup.h new file mode 100644 index 000000000..1e67245a2 --- /dev/null +++ b/lib/igt_cgroup.h @@ -0,0 +1,58 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2025 Intel Corporation + */ + +#ifndef __IGT_CGROUP_H__ +#define __IGT_CGROUP_H__ + +#include <stdbool.h> +#include <stdint.h> + +/** + * IGT_CGROUP_DMEM_MAX - Sentinel value meaning "no device memory limit". + * + * Pass this to igt_cgroup_dmem_set_max() to remove a previously set limit, + * equivalent to writing "max" to the dmem.max interface file. + */ +#define IGT_CGROUP_DMEM_MAX UINT64_MAX + +/** + * struct igt_cgroup - Opaque handle to a cgroup v2 sub-cgroup. + * + * Allocated by igt_cgroup_new() and freed by igt_cgroup_free(). + * All other functions in this module take a pointer to this type. + */ +struct igt_cgroup; + +struct igt_cgroup *igt_cgroup_new(const char *name); +void igt_cgroup_free(struct igt_cgroup *cg); + +void igt_cgroup_move_current(struct igt_cgroup *cg); + +int __igt_cgroup_dmem_set_max(struct igt_cgroup *cg, const char *region, + uint64_t bytes); +void igt_cgroup_dmem_set_max(struct igt_cgroup *cg, const char *region, + uint64_t bytes); +void igt_cgroup_dmem_set_min(struct igt_cgroup *cg, const char *region, + uint64_t bytes); +void igt_cgroup_dmem_set_low(struct igt_cgroup *cg, const char *region, + uint64_t bytes); + +void igt_cgroup_dmem_get_max(struct igt_cgroup *cg, const char *region, + uint64_t *out); +void igt_cgroup_dmem_get_min(struct igt_cgroup *cg, const char *region, + uint64_t *out); +void igt_cgroup_dmem_get_low(struct igt_cgroup *cg, const char *region, + uint64_t *out); + +void igt_cgroup_dmem_get_current(struct igt_cgroup *cg, const char *region, + uint64_t *out); +void igt_cgroup_dmem_get_capacity(const char *region, uint64_t *out); +void igt_cgroup_dmem_get_system_current(const char *region, uint64_t *out); + +bool igt_cgroup_dmem_available(void); +char **igt_cgroup_dmem_regions(void); +void igt_cgroup_dmem_regions_free(char **regions); + +#endif /* __IGT_CGROUP_H__ */ diff --git a/lib/meson.build b/lib/meson.build index 5c4829345..f26608b7a 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -18,6 +18,7 @@ lib_sources = [ 'i915/i915_crc.c', 'igt_collection.c', 'igt_color_encoding.c', + 'igt_cgroup.c', 'igt_configfs.c', 'igt_facts.c', 'igt_crc.c', -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/5] tests/cgroup_dmem: add dmem cgroup controller test 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 1/5] lib/igt_cgroup: add cgroup v2 and dmem controller helpers Thomas Hellström @ 2026-03-26 16:10 ` Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 3/5] lib/xe: add xe_cgroup_region_name() helper Thomas Hellström ` (6 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Thomas Hellström @ 2026-03-26 16:10 UTC (permalink / raw) To: igt-dev; +Cc: dev, Thomas Hellström Add a test that exercises the cgroup v2 dmem controller interface using the new igt_cgroup library. The test uses igt_simple_main and: - Skips if no dmem regions are registered (no cgroup v2 or no dmem-capable device). - Creates a sub-cgroup and moves the test process into it. - Enumerates all registered device memory regions and prints their capacity, system-wide current usage, per-cgroup current usage, and configured min, low and max limits. - Destroys the cgroup on completion. Assisted-by: GitHub Copilot:claude-sonnet-4.6 Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- tests/cgroup_dmem.c | 92 +++++++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 93 insertions(+) create mode 100644 tests/cgroup_dmem.c diff --git a/tests/cgroup_dmem.c b/tests/cgroup_dmem.c new file mode 100644 index 000000000..442c965f9 --- /dev/null +++ b/tests/cgroup_dmem.c @@ -0,0 +1,92 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ + +/** + * TEST: cgroup dmem + * Description: Exercises the cgroup v2 dmem controller interface. Creates a + * cgroup, moves the process into it, enumerates all dmem regions, + * prints their capacity, system-wide current usage, per-cgroup + * current usage and configured limits, then destroys the cgroup. + * Category: Core + * Mega feature: General Core features + * Sub-category: uapi + * Functionality: cgroup + * Feature: dmem + * Test category: uapi + */ + +#include <inttypes.h> + +#include "igt.h" +#include "igt_cgroup.h" + +IGT_TEST_DESCRIPTION("Exercises the cgroup v2 dmem controller interface."); + +static void fmt_bytes(uint64_t v, char *buf, size_t len) +{ + if (v == IGT_CGROUP_DMEM_MAX) + snprintf(buf, len, "max"); + else + snprintf(buf, len, "%" PRIu64, v); +} + +int igt_simple_main() +{ + struct igt_cgroup *cg; + const char *region; + char **regions; + uint64_t capacity, sys_current, cg_current, min, low, max; + char cap_s[32], sys_s[32], cg_s[32]; + char min_s[32], low_s[32], max_s[32]; + int i; + + igt_require_f(igt_cgroup_dmem_available(), + "No dmem regions found; is cgroup v2 with the " + "dmem controller available?\n"); + + cg = igt_cgroup_new("igt-cgroup-dmem-test"); + igt_assert_f(cg, "Failed to create cgroup\n"); + + igt_cgroup_move_current(cg); + + regions = igt_cgroup_dmem_regions(); + igt_assert_f(regions, "Failed to enumerate dmem regions\n"); + + igt_info("%-40s %16s %16s %16s %16s %16s %16s\n", + "region", "capacity", "system-current", + "cgroup-current", "min", "low", "max"); + igt_info("%-40s %16s %16s %16s %16s %16s %16s\n", + "------", "--------", "--------------", + "--------------", "---", "---", "---"); + + for (i = 0; regions[i]; i++) { + region = regions[i]; + + igt_cgroup_dmem_get_capacity(region, &capacity); + fmt_bytes(capacity, cap_s, sizeof(cap_s)); + + igt_cgroup_dmem_get_system_current(region, &sys_current); + fmt_bytes(sys_current, sys_s, sizeof(sys_s)); + + igt_cgroup_dmem_get_current(cg, region, &cg_current); + fmt_bytes(cg_current, cg_s, sizeof(cg_s)); + + igt_cgroup_dmem_get_min(cg, region, &min); + fmt_bytes(min, min_s, sizeof(min_s)); + + igt_cgroup_dmem_get_low(cg, region, &low); + fmt_bytes(low, low_s, sizeof(low_s)); + + igt_cgroup_dmem_get_max(cg, region, &max); + fmt_bytes(max, max_s, sizeof(max_s)); + + igt_info("%-40s %16s %16s %16s %16s %16s %16s\n", + region, cap_s, sys_s, cg_s, + min_s, low_s, max_s); + } + + igt_cgroup_dmem_regions_free(regions); + igt_cgroup_free(cg); +} diff --git a/tests/meson.build b/tests/meson.build index cecb4a8ae..f2326d293 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -1,4 +1,5 @@ test_progs = [ + 'cgroup_dmem', 'core_auth', 'core_debugfs', 'core_getclient', -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/5] lib/xe: add xe_cgroup_region_name() helper 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 1/5] lib/igt_cgroup: add cgroup v2 and dmem controller helpers Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 2/5] tests/cgroup_dmem: add dmem cgroup controller test Thomas Hellström @ 2026-03-26 16:10 ` Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 4/5] lib/xe: add __xe_vm_bind_lr_sync() failable bind helper Thomas Hellström ` (5 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Thomas Hellström @ 2026-03-26 16:10 UTC (permalink / raw) To: igt-dev; +Cc: dev, Thomas Hellström Add xe_cgroup_region_name(fd, region) which constructs the dmem cgroup region path for a given xe memory region. The returned string has the form "drm/<pci-slot>/<region>" (e.g. "drm/0000:03:00.0/vram0"), matching the name registered by the kernel via drmm_cgroup_register_region(). Only VRAM regions are tracked by the dmem controller; system and stolen memory regions return NULL. Assisted-by: GitHub Copilot:claude-sonnet-4.6 Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- lib/xe/xe_query.c | 32 ++++++++++++++++++++++++++++++++ lib/xe/xe_query.h | 2 ++ 2 files changed, 34 insertions(+) diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c index 3afca353e..b0465147c 100644 --- a/lib/xe/xe_query.c +++ b/lib/xe/xe_query.c @@ -6,6 +6,7 @@ * Matthew Brost <matthew.brost@intel.com> */ +#include <limits.h> #include <stdlib.h> #include <pthread.h> @@ -19,6 +20,7 @@ #endif #include "drmtest.h" +#include "igt_device.h" #include "ioctl_wrappers.h" #include "igt_map.h" #include "intel_pat.h" @@ -1146,6 +1148,36 @@ int xe_query_eu_thread_count(int fd, int gt) xe_hwconfig_lookup_value_u32(fd, INTEL_HWCONFIG_NUM_THREADS_PER_EU); } +/** + * xe_cgroup_region_name() - Build the dmem cgroup region name for an xe memory region. + * @fd: xe device fd. + * @region: Region mask (as used by xe_mem_region(), xe_region_name(), etc.). + * + * Constructs the full dmem cgroup region path for @region on the device + * identified by @fd. The returned string has the form + * ``drm/<pci-slot>/<region>`` (e.g. ``drm/0000:03:00.0/vram0``), matching + * the name registered by the kernel driver via drmm_cgroup_register_region(). + * + * Only VRAM regions are registered with the dmem controller; passing a + * system-memory region returns %NULL. + * + * Return: A newly allocated string that the caller must free(), or %NULL if + * @region is not tracked by the dmem cgroup controller. + */ +char *xe_cgroup_region_name(int fd, uint64_t region) +{ + char pci_slot[NAME_MAX]; + char *name; + + if (xe_region_class(fd, region) != DRM_XE_MEM_REGION_CLASS_VRAM) + return NULL; + + igt_device_get_pci_slot_name(fd, pci_slot); + + igt_assert(asprintf(&name, "drm/%s/%s", pci_slot, xe_region_name(region)) > 0); + return name; +} + igt_constructor { xe_device_cache_init(); diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index 05e2ad84f..20794ad75 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -191,4 +191,6 @@ void xe_device_put(int fd); int xe_query_eu_count(int fd, int gt); int xe_query_eu_thread_count(int fd, int gt); +char *xe_cgroup_region_name(int fd, uint64_t region); + #endif /* XE_QUERY_H */ -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 4/5] lib/xe: add __xe_vm_bind_lr_sync() failable bind helper 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström ` (2 preceding siblings ...) 2026-03-26 16:10 ` [PATCH i-g-t 3/5] lib/xe: add xe_cgroup_region_name() helper Thomas Hellström @ 2026-03-26 16:10 ` Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 5/5] tests/xe_cgroups: add dmem cgroup eviction test Thomas Hellström ` (4 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Thomas Hellström @ 2026-03-26 16:10 UTC (permalink / raw) To: igt-dev; +Cc: dev, Thomas Hellström Add __xe_vm_bind_lr_sync() which performs a synchronous LR VM bind and returns an error code instead of asserting, allowing callers to handle expected failures such as -ENOMEM or -ENOSPC from the dmem cgroup controller. Refactor xe_vm_bind_lr_sync() to delegate to the new helper and assert on the result, preserving existing behaviour for callers that do not need to inspect the error. Assisted-by: GitHub Copilot:claude-sonnet-4.6 Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- lib/xe/xe_ioctl.c | 79 ++++++++++++++++++++++++++++++++++++++--------- lib/xe/xe_ioctl.h | 3 ++ 2 files changed, 67 insertions(+), 15 deletions(-) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index ea3f2fcaa..9a0903bfb 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -822,40 +822,89 @@ void xe_vm_madvise(int fd, uint32_t vm, uint64_t addr, uint64_t range, } #define BIND_SYNC_VAL 0x686868 -void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, - uint64_t addr, uint64_t size, uint32_t flags) +/** + * __xe_vm_bind_lr_sync() - Bind a BO into an LR VM, returning errors. + * @fd: xe device file descriptor. + * @vm: VM id (must have been created with %DRM_XE_VM_CREATE_FLAG_LR_MODE). + * @bo: GEM handle to bind. + * @offset: Offset within @bo. + * @addr: GPU virtual address to map at. + * @size: Size of the mapping. + * @flags: %DRM_XE_VM_BIND_FLAG_* flags. + * + * Like xe_vm_bind_lr_sync() but returns an error code instead of asserting, + * allowing callers to handle expected failures such as -%ENOMEM or -%ENOSPC + * from the dmem cgroup controller. + * + * Return: 0 on success, negative errno on failure. + */ +int __xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, + uint64_t addr, uint64_t size, uint32_t flags) { - volatile uint64_t *sync_addr = malloc(sizeof(*sync_addr)); + uint64_t *sync_addr = malloc(sizeof(*sync_addr)); struct drm_xe_sync sync = { .flags = DRM_XE_SYNC_FLAG_SIGNAL, .type = DRM_XE_SYNC_TYPE_USER_FENCE, - .addr = to_user_pointer((uint64_t *)sync_addr), + .addr = to_user_pointer(sync_addr), .timeline_value = BIND_SYNC_VAL, }; + int err; - igt_assert(!!sync_addr); - xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, size, &sync, 1, flags); - if (*sync_addr != BIND_SYNC_VAL) - xe_wait_ufence(fd, (uint64_t *)sync_addr, BIND_SYNC_VAL, 0, NSEC_PER_SEC * 10); + if (!sync_addr) + return -ENOMEM; + + WRITE_ONCE(*sync_addr, 0); + err = __xe_vm_bind(fd, vm, 0, bo, offset, addr, size, + DRM_XE_VM_BIND_OP_MAP, flags, &sync, 1, 0, + DEFAULT_PAT_INDEX, 0); + if (err) { + free(sync_addr); + return err; + } + + if (READ_ONCE(*sync_addr) != BIND_SYNC_VAL) + xe_wait_ufence(fd, sync_addr, BIND_SYNC_VAL, 0, + NSEC_PER_SEC * 10); /* Only free if the wait succeeds */ - free((void *)sync_addr); + free(sync_addr); + return 0; +} + +/** + * xe_vm_bind_lr_sync() - Bind a BO into an LR VM, asserting on error. + * @fd: xe device file descriptor. + * @vm: VM id (must have been created with %DRM_XE_VM_CREATE_FLAG_LR_MODE). + * @bo: GEM handle to bind. + * @offset: Offset within @bo. + * @addr: GPU virtual address to map at. + * @size: Size of the mapping. + * @flags: %DRM_XE_VM_BIND_FLAG_* flags. + * + * Delegates to __xe_vm_bind_lr_sync() and asserts that the operation + * succeeds. Use __xe_vm_bind_lr_sync() directly when the caller needs to + * handle expected failures such as -%ENOMEM or -%ENOSPC. + */ +void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, + uint64_t addr, uint64_t size, uint32_t flags) +{ + igt_assert_eq(__xe_vm_bind_lr_sync(fd, vm, bo, offset, addr, size, flags), 0); } void xe_vm_unbind_lr_sync(int fd, uint32_t vm, uint64_t offset, uint64_t addr, uint64_t size) { - volatile uint64_t *sync_addr = malloc(sizeof(*sync_addr)); + uint64_t *sync_addr = malloc(sizeof(*sync_addr)); struct drm_xe_sync sync = { .flags = DRM_XE_SYNC_FLAG_SIGNAL, .type = DRM_XE_SYNC_TYPE_USER_FENCE, - .addr = to_user_pointer((uint64_t *)sync_addr), + .addr = to_user_pointer(sync_addr), .timeline_value = BIND_SYNC_VAL, }; igt_assert(!!sync_addr); - *sync_addr = 0; + WRITE_ONCE(*sync_addr, 0); xe_vm_unbind_async(fd, vm, 0, 0, addr, size, &sync, 1); - if (*sync_addr != BIND_SYNC_VAL) - xe_wait_ufence(fd, (uint64_t *)sync_addr, BIND_SYNC_VAL, 0, NSEC_PER_SEC * 10); - free((void *)sync_addr); + if (READ_ONCE(*sync_addr) != BIND_SYNC_VAL) + xe_wait_ufence(fd, sync_addr, BIND_SYNC_VAL, 0, NSEC_PER_SEC * 10); + free(sync_addr); } diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index b62d259fd..7f899ea93 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -114,6 +114,9 @@ int xe_vm_vma_attrs(int fd, struct drm_xe_vm_query_mem_range_attr *vmas_attr, struct drm_xe_mem_range_attr *xe_vm_get_mem_attr_values_in_range(int fd, uint32_t vm, uint64_t start, uint64_t range, uint32_t *num_ranges); +int __xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, + uint64_t offset, uint64_t addr, + uint64_t size, uint32_t flags); void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, uint64_t addr, uint64_t size, uint32_t flags); -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 5/5] tests/xe_cgroups: add dmem cgroup eviction test 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström ` (3 preceding siblings ...) 2026-03-26 16:10 ` [PATCH i-g-t 4/5] lib/xe: add __xe_vm_bind_lr_sync() failable bind helper Thomas Hellström @ 2026-03-26 16:10 ` Thomas Hellström 2026-03-26 23:42 ` ✓ Xe.CI.BAT: success for Initial dmem cgroup support Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Thomas Hellström @ 2026-03-26 16:10 UTC (permalink / raw) To: igt-dev; +Cc: dev, Thomas Hellström Add xe_cgroups, a test exercising the dmem cgroup controller on xe devices. The write_eviction subtest: - Skips if the dmem cgroup controller is not available. - Skips if no VRAM region is registered with the dmem controller. - Creates a sub-cgroup and moves the test process into it. - Sets a 4 GiB dmem.max limit on the first VRAM region. - Creates an LR VM and fills VRAM by repeatedly creating BOs with DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING and binding them via __xe_vm_bind_lr_sync() until -ENOMEM or -ENOSPC is returned. - Verifies that cgroup current usage is within the expected range when the limit is hit. - Lowers dmem.max in 256 MiB steps, waiting for usage to follow each reduction. -EBUSY is accepted when usage is already at or below 256 MiB. The write_eviction_interruptible subtest runs the same test with SIGCONT signals injected via igt_fork_signal_helper() and reports the number of signals received. Assisted-by: GitHub Copilot:claude-sonnet-4.6 Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- tests/intel/xe_cgroups.c | 296 +++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 297 insertions(+) create mode 100644 tests/intel/xe_cgroups.c diff --git a/tests/intel/xe_cgroups.c b/tests/intel/xe_cgroups.c new file mode 100644 index 000000000..08cf8e3bd --- /dev/null +++ b/tests/intel/xe_cgroups.c @@ -0,0 +1,296 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2026 Intel Corporation + */ + +/** + * TEST: xe_cgroups + * DESCRIPTION: Tests exercising the dmem cgroup controller on xe devices. + * Category: Core + * Mega feature: General Core features + * Sub-category: cgroup + * FUNCTIONALITY: cgroup dmem controller + * SUBSETS: xe + */ + +#include <errno.h> +#include <signal.h> +#include <stdatomic.h> +#include <stdint.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> + +#include "drmtest.h" +#include "igt.h" +#include "igt_aux.h" +#include "igt_cgroup.h" +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + +#define BO_SIZE SZ_128M +#define MAX_LIMIT ((uint64_t)4 * SZ_1G) +#define EVICT_STEP SZ_256M +#define BIND_BASE 0x100000000ULL /* 4 GiB VA base */ +#define USAGE_SLACK SZ_128M /* tolerance above the set max */ +#define USAGE_POLL_MS 10 /* polling interval for usage drop */ +#define USAGE_DROP_TIMEOUT_MS 50 /* max wait for usage to drop */ + +#define TEST_INTERRUPTIBLE (1 << 0) + +/** + * SUBTEST: write_eviction + * DESCRIPTION: + * Create a dmem cgroup, move the current process into it and set the max + * device memory limit for the first VRAM region to 4 GiB. Then fill VRAM + * by creating BOs with %DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING (so that the + * physical allocation is deferred until VM_BIND) and binding them into an + * LR VM until the cgroup limit is hit. Verify that the reported cgroup + * current usage is within the expected range when the error occurs. + * Finally lower the max limit in 256 MiB steps and verify that the cgroup + * usage follows. + * REQUIREMENTS: must run as root; xe device with at least one VRAM region + */ + +/** + * SUBTEST: write_eviction_interruptible + * DESCRIPTION: + * Same as write_eviction but with SIGCONT signals injected throughout via + * igt_fork_signal_helper() to verify that the dmem.max write path handles + * signal interruption correctly. A signal handler counts received signals + * and the count is reported as debug output at the end of the test. + * REQUIREMENTS: must run as root; xe device with at least one VRAM region + */ + +static atomic_int signal_count; +static struct sigaction sigcont_oldact; + +static void sigcont_handler(int sig) +{ + atomic_fetch_add(&signal_count, 1); + + /* Chain to the previous handler (IGT's dummy sig_handler) */ + if (sigcont_oldact.sa_handler && + sigcont_oldact.sa_handler != SIG_IGN && + sigcont_oldact.sa_handler != SIG_DFL) + sigcont_oldact.sa_handler(sig); +} + +static void install_sigcont_counter(void) +{ + struct sigaction sa; + + atomic_store(&signal_count, 0); + igt_fork_signal_helper(); + /* + * Install the counter after igt_fork_signal_helper() so our handler + * is not overwritten. Save the old handler so we can chain to it. + */ + memset(&sa, 0, sizeof(sa)); + sa.sa_handler = sigcont_handler; + sigemptyset(&sa.sa_mask); + sigaction(SIGCONT, &sa, &sigcont_oldact); +} + +static uint64_t wait_for_usage_drop(struct igt_cgroup *cg, const char *region, + uint64_t limit) +{ + uint64_t current; + unsigned int elapsed = 0; + + do { + igt_cgroup_dmem_get_current(cg, region, ¤t); + if (current <= limit) + return current; + usleep(USAGE_POLL_MS * 1000); + elapsed += USAGE_POLL_MS; + } while (elapsed < USAGE_DROP_TIMEOUT_MS); + + return current; +} + +static int fill_vram(int fd, uint32_t vm, uint64_t vram_region, + uint32_t *handles, int max_bo) +{ + uint32_t handle; + uint64_t addr = BIND_BASE; + int n_bo, err = 0; + + for (n_bo = 0; n_bo < max_bo; n_bo++) { + err = __xe_bo_create(fd, 0, BO_SIZE, vram_region, + DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING, + NULL, &handle); + if (err) + break; + + handles[n_bo] = handle; + + err = __xe_vm_bind_lr_sync(fd, vm, handle, 0, addr, BO_SIZE, 0); + if (err) + break; + + addr += BO_SIZE; + } + + igt_assert_f(err == -ENOMEM || err == -ENOSPC, + "Expected -ENOMEM or -ENOSPC, got %d (%s)\n", + err, strerror(-err)); + + return n_bo; +} + +static void unfill_vram(int fd, uint32_t vm, uint32_t *handles, int n_bo) +{ + uint64_t addr = BIND_BASE; + int i; + + for (i = 0; i < n_bo; i++) { + if (handles[i]) { + xe_vm_unbind_lr_sync(fd, vm, 0, addr, BO_SIZE); + gem_close(fd, handles[i]); + } + addr += BO_SIZE; + } + free(handles); +} + +static void test_write_eviction(int fd, unsigned int flags) +{ + struct igt_cgroup *cg; + char *cg_region; + uint32_t vm; + uint64_t vram_region = 0; + uint64_t region; + uint32_t *handles = NULL; + int n_bo = 0, max_bo; + uint64_t current, capacity, cg_max, limit, after; + int set_err; + + /* Check dmem cgroup controller is available before doing anything else */ + igt_require_f(igt_cgroup_dmem_available(), + "dmem cgroup controller not available (no cgroup v2 or no registered regions)\n"); + + /* Find first VRAM region */ + xe_for_each_mem_region(fd, all_memory_regions(fd), region) { + if (xe_region_class(fd, region) == DRM_XE_MEM_REGION_CLASS_VRAM) { + vram_region = region; + break; + } + } + igt_require_f(vram_region, "No VRAM region found on this device\n"); + + cg_region = xe_cgroup_region_name(fd, vram_region); + igt_require_f(cg_region, "Region not tracked by dmem cgroup controller\n"); + + igt_cgroup_dmem_get_capacity(cg_region, &capacity); + igt_require_f(capacity >= 4 * BO_SIZE, + "VRAM capacity (%"PRIu64" MiB) too small to test\n", + capacity / SZ_1M); + + /* + * Use up to 4 GiB, or the full capacity if the device has less. + * Leave one BO_SIZE worth of headroom so the device isn't completely + * exhausted before the cgroup limit is hit. + */ + cg_max = min(MAX_LIMIT, capacity - BO_SIZE); + cg_max = ALIGN_DOWN(cg_max, EVICT_STEP); + + if (flags & TEST_INTERRUPTIBLE) + install_sigcont_counter(); + + /* Create cgroup and move into it */ + cg = igt_cgroup_new("xe_cgroups_test"); + igt_cgroup_move_current(cg); + igt_cgroup_dmem_set_max(cg, cg_region, cg_max); + + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0); + + max_bo = (cg_max / BO_SIZE) + 8; /* headroom for overcommit */ + handles = calloc(max_bo, sizeof(*handles)); + igt_assert(handles); + + n_bo = fill_vram(fd, vm, vram_region, handles, max_bo); + + igt_cgroup_dmem_get_current(cg, cg_region, ¤t); + igt_debug("After fill: cgroup current = %"PRIu64" MiB, " + "max = %"PRIu64" MiB\n", + current / SZ_1M, cg_max / SZ_1M); + + igt_assert_f(current <= cg_max + USAGE_SLACK, + "Usage %"PRIu64" MiB exceeds max %"PRIu64" MiB + slack\n", + current / SZ_1M, cg_max / SZ_1M); + + /* Phase 2: lower max in 256 MiB steps, verify usage follows */ + limit = cg_max; + while (limit >= EVICT_STEP) { + + limit -= EVICT_STEP; + set_err = __igt_cgroup_dmem_set_max(cg, cg_region, limit); + if (set_err == -EBUSY) { + igt_cgroup_dmem_get_current(cg, cg_region, &after); + igt_assert_f(after <= (uint64_t)EVICT_STEP, + "dmem.max rejected with -EBUSY but usage " + "%"PRIu64" MiB > %"PRIu64" MiB\n", + after / SZ_1M, + (uint64_t)EVICT_STEP / SZ_1M); + igt_debug("dmem.max set to %"PRIu64" MiB returned " + "-EBUSY, usage = %"PRIu64" MiB (acceptable)\n", + limit / SZ_1M, after / SZ_1M); + break; + } + igt_assert_f(set_err == 0, + "Failed to set dmem.max to %"PRIu64" MiB: %s\n", + limit / SZ_1M, strerror(-set_err)); + + after = wait_for_usage_drop(cg, cg_region, limit); + + igt_debug("Lowered max to %"PRIu64" MiB: usage = %"PRIu64" MiB\n", + limit / SZ_1M, after / SZ_1M); + + igt_assert_f(after <= limit + USAGE_SLACK, + "Usage %"PRIu64" MiB did not follow max %"PRIu64" MiB\n", + after / SZ_1M, limit / SZ_1M); + } + + if (flags & TEST_INTERRUPTIBLE) { + igt_stop_signal_helper(); + igt_info("Signals received during test: %d\n", + atomic_load(&signal_count)); + } + + /* Cleanup */ + igt_cgroup_dmem_set_max(cg, cg_region, IGT_CGROUP_DMEM_MAX); + unfill_vram(fd, vm, handles, n_bo); + handles = NULL; + xe_vm_destroy(fd, vm); + free(cg_region); + igt_cgroup_free(cg); +} + +static const struct { + const char *name; + unsigned int flags; +} subtests[] = { + { "write_eviction", 0 }, + { "write_eviction_interruptible", TEST_INTERRUPTIBLE }, + { } +}; + +int igt_main() +{ + int fd = -1; + + igt_fixture() { + fd = drm_open_driver(DRIVER_XE); + igt_require_f(getuid() == 0, "Test requires root\n"); + } + + for (int i = 0; subtests[i].name; i++) + igt_subtest(subtests[i].name) + test_write_eviction(fd, subtests[i].flags); + + igt_fixture() { + drm_close_driver(fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index f2326d293..cee0d89e2 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -292,6 +292,7 @@ intel_xe_progs = [ 'xe_dma_buf_sync', 'xe_drm_fdinfo', 'xe_eu_stall', + 'xe_cgroups', 'xe_evict', 'xe_evict_ccs', 'xe_exec_atomic', -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Initial dmem cgroup support 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström ` (4 preceding siblings ...) 2026-03-26 16:10 ` [PATCH i-g-t 5/5] tests/xe_cgroups: add dmem cgroup eviction test Thomas Hellström @ 2026-03-26 23:42 ` Patchwork 2026-03-27 0:00 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-26 23:42 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 962 bytes --] == Series Details == Series: Initial dmem cgroup support URL : https://patchwork.freedesktop.org/series/163935/ State : success == Summary == CI Bug Log - changes from XEIGT_8834_BAT -> XEIGTPW_14868_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8834 -> IGTPW_14868 * Linux: xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf -> xe-4799-e7f370d78d32ed29cc3f100fbc3d1fe1a844978f IGTPW_14868: 14868 IGT_8834: 8834 xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf xe-4799-e7f370d78d32ed29cc3f100fbc3d1fe1a844978f: e7f370d78d32ed29cc3f100fbc3d1fe1a844978f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/index.html [-- Attachment #2: Type: text/html, Size: 1521 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Initial dmem cgroup support 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström ` (5 preceding siblings ...) 2026-03-26 23:42 ` ✓ Xe.CI.BAT: success for Initial dmem cgroup support Patchwork @ 2026-03-27 0:00 ` Patchwork 2026-03-27 17:49 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-28 0:45 ` ✗ i915.CI.Full: failure " Patchwork 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-27 0:00 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3280 bytes --] == Series Details == Series: Initial dmem cgroup support URL : https://patchwork.freedesktop.org/series/163935/ State : success == Summary == CI Bug Log - changes from IGT_8834 -> IGTPW_14868 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 bat-mtlp-9 Known issues ------------ Here are the changes found in IGTPW_14868 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - bat-arls-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#15861]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/bat-arls-6/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/bat-arls-6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - bat-atsm-1: [PASS][3] -> [DMESG-FAIL][4] ([i915#14204]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/bat-atsm-1/igt@i915_selftest@live@mman.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/bat-atsm-1/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735]) +79 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#180]) +53 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][9] ([i915#12061]) -> [DMESG-FAIL][10] ([i915#12061] / [i915#14204]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/bat-atsm-1/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/bat-atsm-1/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#15861]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15861 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8834 -> IGTPW_14868 * Linux: CI_DRM_18222 -> CI_DRM_18228 CI-20190529: 20190529 CI_DRM_18222: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18228: e7f370d78d32ed29cc3f100fbc3d1fe1a844978f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14868: 14868 IGT_8834: 8834 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/index.html [-- Attachment #2: Type: text/html, Size: 4220 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for Initial dmem cgroup support 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström ` (6 preceding siblings ...) 2026-03-27 0:00 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-27 17:49 ` Patchwork 2026-03-28 0:45 ` ✗ i915.CI.Full: failure " Patchwork 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-27 17:49 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4057 bytes --] == Series Details == Series: Initial dmem cgroup support URL : https://patchwork.freedesktop.org/series/163935/ State : success == Summary == CI Bug Log - changes from XEIGT_8834_FULL -> XEIGTPW_14868_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14868_FULL: ### IGT changes ### #### Possible regressions #### * {igt@cgroup_dmem} (NEW): - shard-lnl: NOTRUN -> [SKIP][1] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/shard-lnl-5/igt@cgroup_dmem.html New tests --------- New tests have been introduced between XEIGT_8834_FULL and XEIGTPW_14868_FULL: ### New IGT tests (3) ### * igt@cgroup_dmem: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_cgroups@write_eviction: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_cgroups@write_eviction_interruptible: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_14868_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][2] -> [FAIL][3] ([Intel XE#301]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#2142]) +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html #### Possible fixes #### * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [FAIL][6] ([Intel XE#2029] / [Intel XE#7395]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html #### Warnings #### * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-lnl: [SKIP][8] ([Intel XE#7675]) -> [SKIP][9] ([Intel XE#7675] / [Intel XE#7679]) +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395 [Intel XE#7675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7675 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 Build changes ------------- * IGT: IGT_8834 -> IGTPW_14868 * Linux: xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf -> xe-4799-e7f370d78d32ed29cc3f100fbc3d1fe1a844978f IGTPW_14868: 14868 IGT_8834: 8834 xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf xe-4799-e7f370d78d32ed29cc3f100fbc3d1fe1a844978f: e7f370d78d32ed29cc3f100fbc3d1fe1a844978f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14868/index.html [-- Attachment #2: Type: text/html, Size: 4896 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Initial dmem cgroup support 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström ` (7 preceding siblings ...) 2026-03-27 17:49 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-03-28 0:45 ` Patchwork 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-28 0:45 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 130699 bytes --] == Series Details == Series: Initial dmem cgroup support URL : https://patchwork.freedesktop.org/series/163935/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18228_full -> IGTPW_14868_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14868_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14868_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_14868/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14868_full: ### IGT changes ### #### Possible regressions #### * {igt@cgroup_dmem} (NEW): - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-1/igt@cgroup_dmem.html - shard-dg1: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@cgroup_dmem.html - shard-tglu: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@cgroup_dmem.html - shard-mtlp: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@cgroup_dmem.html * igt@gem_eio@in-flight-suspend: - shard-snb: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-snb4/igt@gem_eio@in-flight-suspend.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-snb4/igt@gem_eio@in-flight-suspend.html * igt@kms_cursor_crc@cursor-random-128x128: - shard-mtlp: [PASS][7] -> [DMESG-FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-128x128.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x128.html * igt@kms_cursor_crc@cursor-random-128x128@pipe-d-edp-1: - shard-mtlp: [PASS][9] -> [DMESG-WARN][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-128x128@pipe-d-edp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x128@pipe-d-edp-1.html New tests --------- New tests have been introduced between CI_DRM_18228_full and IGTPW_14868_full: ### New IGT tests (13) ### * igt@cgroup_dmem: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.11] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.24] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.10] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.40] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.08] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.23] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.13] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.09] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.10] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.26] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.11] s Known issues ------------ Here are the changes found in IGTPW_14868_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#6230]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#6230]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][15] ([i915#15792]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-snb7/igt@fbdev@pan.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#13356]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@gem_ccs@suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][21] ([i915#13356]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][22] ([i915#13356]) +1 other test incomplete [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-snb1/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-wc-active.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#3281]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#7276]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][34] -> [INCOMPLETE][35] ([i915#13356]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4860]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][38] ([i915#4613]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk2/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3282]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#284]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#284]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-10/igt@gem_media_vme.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#284]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@gem_media_vme.html * igt@gem_mmap_gtt@big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@gem_mmap_gtt@big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@ptrace: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-4/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#14544] / [i915#3282]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][56] ([i915#14702] / [i915#2658]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@read-write: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@gem_readwrite@read-write.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-x-tiled: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#5190] / [i915#8428]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-rkl: NOTRUN -> [SKIP][62] +15 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][63] -> [INCOMPLETE][64] ([i915#13809]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@gem_softpin@noreloc-s3.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_softpin@noreloc-s3.html - shard-glk11: NOTRUN -> [INCOMPLETE][65] ([i915#13809]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@gem_tiled_pread_pwrite.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4879]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-17/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#3323]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3281] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-17/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#13356] / [i915#14586]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk4/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][84] +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-9/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@gen9_exec_parse@unaligned-jump.html - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#14073]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#14118]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#14118]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#14545]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-6/igt@i915_module_load@resize-bar.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#6245]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk10: NOTRUN -> [INCOMPLETE][99] ([i915#4817]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk10/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-glk11: NOTRUN -> [INCOMPLETE][100] ([i915#4817]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@i915_suspend@fence-restore-untiled.html * igt@kms_3d@basic: - shard-mtlp: [PASS][101] -> [SKIP][102] ([i915#15726]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-2/igt@kms_3d@basic.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_3d@basic.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#5190]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#12454] / [i915#12712]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-3/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#12761] / [i915#14995]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3555]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][111] ([i915#9531]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#9531]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#9531]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][114] ([i915#1769]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-mtlp: [PASS][116] -> [FAIL][117] ([i915#5956]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: [PASS][118] -> [FAIL][119] ([i915#5956]) +3 other tests fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#15733] / [i915#5138]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][126] +38 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#6095]) +212 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544] / [i915#6095]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#12313]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +29 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#6095]) +24 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +107 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +69 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +21 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#6095]) +44 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][143] +99 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +66 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3742]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3742]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2: NOTRUN -> [SKIP][148] +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_chamelium_frames@dp-crc-single.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@kms_chamelium_frames@dp-crc-single.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#14544] / [i915#15865]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#15330] / [i915#3116]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3116] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#15330]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#15330]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#15330]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][161] ([i915#15330]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#15330]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#15330]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#15865]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#15865]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][166] ([i915#13566]) +4 other tests fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [PASS][167] -> [FAIL][168] ([i915#13566]) +1 other test fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1: - shard-mtlp: [PASS][170] -> [FAIL][171] ([i915#13566] / [i915#15733]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8814]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13049]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#13049]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3555]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8814]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu-1: [PASS][180] -> [FAIL][181] ([i915#13566]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9809]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#14544]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][184] ([i915#15804]) +1 other test fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#14544] / [i915#9067]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#9723]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#13749]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#13749]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-4/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2065] / [i915#4854]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#1839]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#1839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-5/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9337]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#9337]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9337]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9337]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9934]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#9934]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-tglu: NOTRUN -> [SKIP][204] ([i915#9934]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][207] -> [TIMEOUT][208] ([i915#14033]) +1 other test timeout [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9934]) +5 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#14544] / [i915#9934]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][212] ([i915#6113]) +1 other test incomplete [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12745] / [i915#4839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12745]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#15643]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#15643]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#15643] / [i915#5190]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#15643]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#15643]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +6 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#15104]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#15102]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#15104]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15102] / [i915#3458]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#14544] / [i915#15102] / [i915#3023]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3023]) +15 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +26 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-glk11: NOTRUN -> [SKIP][228] +82 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][229] +24 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][230] +93 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#15102] / [i915#3458]) +6 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#9766]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#9766]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9766]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#15104]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#15102]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8708]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#15102]) +16 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#8708]) +10 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#1825]) +17 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5354]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#1825]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#15102]) +9 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-rkl: [PASS][244] -> [SKIP][245] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_hdr@bpc-switch.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_hdr@bpc-switch.html - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#1187] / [i915#12713]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#12713]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#12713]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#12713]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][251] ([i915#12713]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15460]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-1/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][255] ([i915#15460]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#15460]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][257] ([i915#15460]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#15460]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15459]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15459]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#15458]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][262] +20 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#14712]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#14712]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#15709]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#15709]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-modifier: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#15709]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_plane@pixel-format-4-tiled-modifier.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#15608]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#15709]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#15709]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15709]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#13026]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][273] ([i915#10647] / [i915#12169]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][274] ([i915#10647]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk11: NOTRUN -> [FAIL][275] ([i915#10647] / [i915#12177]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][276] ([i915#10647]) +1 other test fail [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8821]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8821]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-1/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#13958]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#13958]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15887] / [i915#9809]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][282] ([i915#13046] / [i915#5354] / [i915#9423]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#6953]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#15329]) +4 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#15329]) +4 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#9812]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#5354]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#9685]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#3828]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][290] -> [SKIP][291] ([i915#15073]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][292] -> [SKIP][293] ([i915#15073]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][294] -> [SKIP][295] ([i915#15073]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15073]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@package-g7: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#15403]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@kms_pm_rpm@package-g7.html - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#15403]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@kms_pm_rpm@package-g7.html - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15403]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@kms_pm_rpm@package-g7.html - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15403]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_pm_rpm@package-g7.html - shard-dg1: NOTRUN -> [SKIP][301] ([i915#15403]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][302] -> [INCOMPLETE][303] ([i915#14419]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#6524]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][305] ([i915#11520]) +19 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#11520] / [i915#14544]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#9808]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-glk11: NOTRUN -> [SKIP][308] ([i915#11520]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#11520]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12316]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][311] ([i915#11520]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#11520]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][313] ([i915#11520]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-snb1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#11520]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#11520]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#11520]) +5 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9683]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#1072] / [i915#9732]) +13 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-17/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +8 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr-sprite-render: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#9688]) +15 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][321] +472 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#9732]) +18 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-4/igt@kms_psr@pr-dpms.html * igt@kms_psr@pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#14544] / [i915#9732]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +19 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9732]) +8 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk10: NOTRUN -> [INCOMPLETE][327] ([i915#15492]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#5289]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#3555]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#8623]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][331] ([i915#12276]) +1 other test incomplete [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][332] ([i915#12276]) +1 other test incomplete [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][333] ([i915#12276]) +1 other test incomplete [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk11/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][334] -> [FAIL][335] ([i915#15420]) +1 other test fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-8/igt@kms_vrr@negative-basic.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#9906]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][338] ([i915#9906]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#9906]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9906]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#8808] / [i915#9906]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf_pmu@busy-double-start@vcs0: - shard-mtlp: [PASS][342] -> [FAIL][343] ([i915#4349]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-3/igt@perf_pmu@busy-double-start@vcs0.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs0.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [FAIL][344] ([i915#4349]) +4 other tests fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][345] ([i915#15778]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][346] ([i915#8516]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#8516]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#3708] / [i915#4077]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#3708] / [i915#4077]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#3708] / [i915#4077]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-18/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-read-hang: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#3708]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: - shard-tglu-1: NOTRUN -> [FAIL][352] ([i915#12910]) +9 other tests fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][353] ([i915#12910]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-mtlp: NOTRUN -> [FAIL][354] ([i915#12910]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9917]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-rkl: NOTRUN -> [SKIP][356] ([i915#14544] / [i915#9917]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#9917]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@testdisplay: - shard-dg1: [PASS][358] -> [DMESG-WARN][359] ([i915#4423]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-15/igt@testdisplay.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@testdisplay.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-tglu: [FAIL][360] ([i915#15816]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-tglu-2/igt@gem_exec_big@single.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-7/igt@gem_exec_big@single.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [DMESG-WARN][362] ([i915#15478]) -> [PASS][363] +1 other test pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [ABORT][364] ([i915#15152]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-1/igt@gem_workarounds@suspend-resume.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@gem_workarounds@suspend-resume.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][366] ([i915#13029] / [i915#14545]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-12/igt@i915_module_load@reload-no-display.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-17/igt@i915_module_load@reload-no-display.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][368] ([i915#12761]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [FAIL][370] ([i915#13566]) -> [PASS][371] +1 other test pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][372] ([i915#13566]) -> [PASS][373] +5 other tests pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][374] ([i915#9878]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [INCOMPLETE][376] ([i915#6113]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][378] ([i915#15389] / [i915#6880]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [SKIP][380] ([i915#15725]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-3/igt@kms_hdmi_inject@inject-4k.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][382] ([i915#14412]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html - shard-glk: [INCOMPLETE][384] ([i915#13026]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][386] ([i915#15073]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][388] ([i915#15073]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_setmode@basic: - shard-dg1: [FAIL][390] ([i915#15106]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-15/igt@kms_setmode@basic.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-19/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2: - shard-rkl: [FAIL][392] ([i915#15106]) -> [PASS][393] +2 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [FAIL][394] ([i915#4349]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-mtlp-3/igt@perf_pmu@busy-double-start@vcs1.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][396] ([i915#14544] / [i915#8411]) -> [SKIP][397] ([i915#8411]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][398] ([i915#3555] / [i915#9323]) -> [SKIP][399] ([i915#14544] / [i915#3555] / [i915#9323]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_exec_reloc@basic-wc-read: - shard-rkl: [SKIP][400] ([i915#14544] / [i915#3281]) -> [SKIP][401] ([i915#3281]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: [SKIP][402] ([i915#4613]) -> [SKIP][403] ([i915#14544] / [i915#4613]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#4613]) -> [SKIP][405] ([i915#4613]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@gem_lmem_swapping@random.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@gem_lmem_swapping@random.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: [SKIP][406] ([i915#14544] / [i915#3282]) -> [SKIP][407] ([i915#3282]) +2 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][408] ([i915#13717] / [i915#14544]) -> [SKIP][409] ([i915#13717]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][410] ([i915#13717]) -> [SKIP][411] ([i915#13717] / [i915#14544]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][412] ([i915#3297]) -> [SKIP][413] ([i915#14544] / [i915#3297]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@gem_userptr_blits@access-control.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][414] ([i915#14544] / [i915#3297]) -> [SKIP][415] ([i915#3297]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][416] ([i915#3282] / [i915#3297]) -> [SKIP][417] ([i915#14544] / [i915#3282] / [i915#3297]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#2527]) -> [SKIP][419] ([i915#2527]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][420] ([i915#5286]) -> [SKIP][421] ([i915#14544] / [i915#5286]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#5286]) -> [SKIP][423] ([i915#5286]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-rkl: [SKIP][424] ([i915#3638]) -> [SKIP][425] ([i915#14544] / [i915#3638]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-270.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][426] ([i915#14544] / [i915#3638]) -> [SKIP][427] ([i915#3638]) +2 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][428] ([i915#12313]) -> [SKIP][429] ([i915#12313] / [i915#14544]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][430] ([i915#6095]) -> [SKIP][431] ([i915#14544] / [i915#6095]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][432] ([i915#14098] / [i915#6095]) -> [SKIP][433] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#6095]) -> [SKIP][435] ([i915#6095]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][436] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][437] ([i915#14098] / [i915#6095]) +4 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][438] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][439] ([i915#11151] / [i915#7828]) +4 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-rkl: [SKIP][440] ([i915#11151] / [i915#7828]) -> [SKIP][441] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#15865]) -> [SKIP][443] ([i915#15865]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_content_protection@lic-type-0-hdcp14.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][444] ([i915#9433]) -> [SKIP][445] ([i915#15865]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-12/igt@kms_content_protection@mei-interface.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: [SKIP][446] ([i915#13049] / [i915#14544]) -> [SKIP][447] ([i915#13049]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: [SKIP][448] ([i915#13049]) -> [SKIP][449] ([i915#13049] / [i915#14544]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_feature_discovery@chamelium: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#4854]) -> [SKIP][451] ([i915#4854]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_feature_discovery@chamelium.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: [SKIP][452] ([i915#9934]) -> [SKIP][453] ([i915#14544] / [i915#9934]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][454] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][455] ([i915#12745] / [i915#4839]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][456] ([i915#12314] / [i915#4839]) -> [INCOMPLETE][457] ([i915#4839]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#9934]) -> [SKIP][459] ([i915#9934]) +3 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][460] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][461] ([i915#12745] / [i915#4839] / [i915#6113]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][462] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][463] ([i915#12745]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#15643]) -> [SKIP][465] ([i915#15643]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#1825]) -> [SKIP][467] ([i915#1825]) +16 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#15102]) -> [SKIP][469] ([i915#15102]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][470] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][471] ([i915#15102] / [i915#3458]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2: [SKIP][472] ([i915#15102] / [i915#3458]) -> [SKIP][473] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][475] ([i915#15102] / [i915#3023]) +8 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg1: [SKIP][476] ([i915#15102] / [i915#3458]) -> [SKIP][477] ([i915#15102] / [i915#3458] / [i915#4423]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][478] ([i915#15102] / [i915#3023]) -> [SKIP][479] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][480] ([i915#1825]) -> [SKIP][481] ([i915#14544] / [i915#1825]) +7 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][482] ([i915#15458]) -> [SKIP][483] ([i915#14544] / [i915#15458]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: [SKIP][484] -> [SKIP][485] ([i915#14544]) +4 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#15709]) -> [SKIP][487] ([i915#15709]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-rkl: [SKIP][488] ([i915#15709]) -> [SKIP][489] ([i915#14544] / [i915#15709]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][490] ([i915#3555]) -> [SKIP][491] ([i915#14544] / [i915#3555]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#15329]) -> [SKIP][493] ([i915#15329]) +3 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#3828]) -> [SKIP][495] ([i915#3828]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][496] ([i915#15073]) -> [SKIP][497] ([i915#14544] / [i915#15073]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-rkl: [SKIP][498] ([i915#14544]) -> [SKIP][499] +4 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_pm_rpm@modeset-pc8-residency-stress.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][500] ([i915#11520] / [i915#14544]) -> [SKIP][501] ([i915#11520]) +1 other test skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][502] ([i915#11520]) -> [SKIP][503] ([i915#11520] / [i915#14544]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-dg1: [SKIP][504] ([i915#11520] / [i915#4423]) -> [SKIP][505] ([i915#11520]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-dg1-19/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-dg1-16/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#9683]) -> [SKIP][507] ([i915#9683]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: [SKIP][508] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][509] ([i915#1072] / [i915#9732]) +8 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][510] ([i915#1072] / [i915#9732]) -> [SKIP][511] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-8/igt@kms_psr@psr-cursor-plane-move.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#5289]) -> [SKIP][513] ([i915#5289]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@flip-basic: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][515] ([i915#15243] / [i915#3555]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@kms_vrr@flip-basic.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][516] ([i915#11920]) -> [SKIP][517] ([i915#11920] / [i915#14544]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-5/igt@kms_vrr@lobf.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@kms_vrr@lobf.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][518] ([i915#3708]) -> [SKIP][519] ([i915#14544] / [i915#3708]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-2/igt@prime_vgem@fence-read-hang.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#9917]) -> [SKIP][521] ([i915#9917]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18228/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8834 -> IGTPW_14868 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18228: e7f370d78d32ed29cc3f100fbc3d1fe1a844978f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14868: 14868 IGT_8834: 8834 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14868/index.html [-- Attachment #2: Type: text/html, Size: 175042 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-28 0:45 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-26 16:10 [PATCH i-g-t 0/5] Initial dmem cgroup support Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 1/5] lib/igt_cgroup: add cgroup v2 and dmem controller helpers Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 2/5] tests/cgroup_dmem: add dmem cgroup controller test Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 3/5] lib/xe: add xe_cgroup_region_name() helper Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 4/5] lib/xe: add __xe_vm_bind_lr_sync() failable bind helper Thomas Hellström 2026-03-26 16:10 ` [PATCH i-g-t 5/5] tests/xe_cgroups: add dmem cgroup eviction test Thomas Hellström 2026-03-26 23:42 ` ✓ Xe.CI.BAT: success for Initial dmem cgroup support Patchwork 2026-03-27 0:00 ` ✓ i915.CI.BAT: " Patchwork 2026-03-27 17:49 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-28 0:45 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox