* [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
@ 2025-08-28 17:41 ` Zhanjun Dong
2025-10-09 11:49 ` Michal Wajdeczko
2025-10-20 23:11 ` Julia Filipchuk
2025-08-28 17:41 ` [PATCH v7 2/6] drm/xe/guc: Add LFD related " Zhanjun Dong
` (8 subsequent siblings)
9 siblings, 2 replies; 22+ messages in thread
From: Zhanjun Dong @ 2025-08-28 17:41 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
Add GuC log init config (LIC) ABI definitions.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/abi/guc_lic_abi.h | 74 ++++++++++++++++++++++++++++
1 file changed, 74 insertions(+)
create mode 100644 drivers/gpu/drm/xe/abi/guc_lic_abi.h
diff --git a/drivers/gpu/drm/xe/abi/guc_lic_abi.h b/drivers/gpu/drm/xe/abi/guc_lic_abi.h
new file mode 100644
index 000000000000..72b29bf7171a
--- /dev/null
+++ b/drivers/gpu/drm/xe/abi/guc_lic_abi.h
@@ -0,0 +1,74 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef _ABI_GUC_LIC_ABI_H_
+#define _ABI_GUC_LIC_ABI_H_
+
+#include <linux/types.h>
+
+/** enum guc_lic_type - Log Init Config TLV IDs. */
+enum guc_lic_type {
+ /**
+ * @GUC_LIC_TYPE_GUC_SW_VERSION: GuC firmware version. Value
+ * is a 32 bit number represented by guc_sw_version.
+ */
+ GUC_LIC_TYPE_GUC_SW_VERSION = 0x1,
+ /**
+ * @GUC_LIC_TYPE_GUC_DEVICE_ID: GuC device id. Value is a 32
+ * bit.
+ */
+ GUC_LIC_TYPE_GUC_DEVICE_ID = 0x2,
+ /**
+ * @GUC_LIC_TYPE_TSC_FREQUENCY: GuC timestamp counter
+ * frequency. Value is a 32 bit number representing frequency in
+ * kHz. This timestamp is utilized in log entries, timer and
+ * for engine utilization tracking.
+ */
+ GUC_LIC_TYPE_TSC_FREQUENCY = 0x3,
+ /**
+ * @GUC_LIC_TYPE_GMD_ID: HW GMD ID. Value is a 32 bit number
+ * representing graphics, media and display HW architecture IDs.
+ */
+ GUC_LIC_TYPE_GMD_ID = 0x4,
+ /**
+ * @GUC_LIC_TYPE_BUILD_PLATFORM_ID: GuC build platform ID.
+ * Value is 32 bits.
+ */
+ GUC_LIC_TYPE_BUILD_PLATFORM_ID = 0x5,
+};
+
+/**
+ * struct guc_lic - GuC LIC (Log-Init-Config) structure.
+ * This is populated by the GUC at log init time and is located in the log
+ * buffer memory allocation.
+ */
+struct guc_lic {
+ /**
+ * @magic: A magic number set by GuC to identify that this
+ * structure contains valid information: magic = GUC_LIC_MAGIC.
+ */
+ u32 magic;
+#define GUC_LIC_MAGIC 0x8086900D
+ /**
+ * @version: The version of the this structure.
+ * Major and minor version number are represented as bit fields.
+ */
+ u32 version;
+#define GUC_LIC_VERSION_MASK_MAJOR GENMASK(31, 16)
+#define GUC_LIC_VERSION_MASK_MINOR GENMASK(15, 0)
+
+#define GUC_LIC_VERSION_MAJOR 1u
+#define GUC_LIC_VERSION_MINOR 0u
+
+ /** @data_count: Number of dwords the `data` array contains. */
+ u32 data_count;
+ /**
+ * @data: Array of dwords representing a list of LIC KLVs of
+ * type guc_klv_generic with keys represented by guc_lic_type
+ */
+ u32 data[] __counted_by(data_count);
+} __packed;
+
+#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 22+ messages in thread* Re: [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions
2025-08-28 17:41 ` [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions Zhanjun Dong
@ 2025-10-09 11:49 ` Michal Wajdeczko
2025-10-20 23:11 ` Julia Filipchuk
1 sibling, 0 replies; 22+ messages in thread
From: Michal Wajdeczko @ 2025-10-09 11:49 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe
On 8/28/2025 7:41 PM, Zhanjun Dong wrote:
> Add GuC log init config (LIC) ABI definitions.
>
> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
> ---
> drivers/gpu/drm/xe/abi/guc_lic_abi.h | 74 ++++++++++++++++++++++++++++
> 1 file changed, 74 insertions(+)
> create mode 100644 drivers/gpu/drm/xe/abi/guc_lic_abi.h
>
> diff --git a/drivers/gpu/drm/xe/abi/guc_lic_abi.h b/drivers/gpu/drm/xe/abi/guc_lic_abi.h
> new file mode 100644
> index 000000000000..72b29bf7171a
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/abi/guc_lic_abi.h
> @@ -0,0 +1,74 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef _ABI_GUC_LIC_ABI_H_
> +#define _ABI_GUC_LIC_ABI_H_
> +
> +#include <linux/types.h>
> +
> +/** enum guc_lic_type - Log Init Config TLV IDs. */
this looks like a wrong format for kernel-doc, try:
/**
* enum guc_lic_type - Log Init Config TLV IDs.
*/
refer to [1]
[1] https://docs.kernel.org/doc-guide/kernel-doc.html#structure-union-and-enumeration-documentation
also replace TLV with KLV, so this should be:
/**
* enum guc_lic_type - GuC Log Initial Config KLV types.
*/
> +enum guc_lic_type {
> + /**
> + * @GUC_LIC_TYPE_GUC_SW_VERSION: GuC firmware version. Value
> + * is a 32 bit number represented by guc_sw_version.
> + */
> + GUC_LIC_TYPE_GUC_SW_VERSION = 0x1,
> + /**
> + * @GUC_LIC_TYPE_GUC_DEVICE_ID: GuC device id. Value is a 32
> + * bit.
> + */
> + GUC_LIC_TYPE_GUC_DEVICE_ID = 0x2,
> + /**
> + * @GUC_LIC_TYPE_TSC_FREQUENCY: GuC timestamp counter
> + * frequency. Value is a 32 bit number representing frequency in
> + * kHz. This timestamp is utilized in log entries, timer and
> + * for engine utilization tracking.
> + */
> + GUC_LIC_TYPE_TSC_FREQUENCY = 0x3,
> + /**
> + * @GUC_LIC_TYPE_GMD_ID: HW GMD ID. Value is a 32 bit number
> + * representing graphics, media and display HW architecture IDs.
> + */
> + GUC_LIC_TYPE_GMD_ID = 0x4,
> + /**
> + * @GUC_LIC_TYPE_BUILD_PLATFORM_ID: GuC build platform ID.
> + * Value is 32 bits.
> + */
> + GUC_LIC_TYPE_BUILD_PLATFORM_ID = 0x5,
> +};
> +
> +/**
> + * struct guc_lic - GuC LIC (Log-Init-Config) structure.
add separation line before below longer description
> + * This is populated by the GUC at log init time and is located in the log
> + * buffer memory allocation.
> + */
> +struct guc_lic {
> + /**
> + * @magic: A magic number set by GuC to identify that this
> + * structure contains valid information: magic = GUC_LIC_MAGIC.
> + */
> + u32 magic;
> +#define GUC_LIC_MAGIC 0x8086900D
> + /**
> + * @version: The version of the this structure.
> + * Major and minor version number are represented as bit fields.
> + */
> + u32 version;
> +#define GUC_LIC_VERSION_MASK_MAJOR GENMASK(31, 16)
> +#define GUC_LIC_VERSION_MASK_MINOR GENMASK(15, 0)
> +
> +#define GUC_LIC_VERSION_MAJOR 1u
> +#define GUC_LIC_VERSION_MINOR 0u
> +
> + /** @data_count: Number of dwords the `data` array contains. */
> + u32 data_count;
> + /**
> + * @data: Array of dwords representing a list of LIC KLVs of
> + * type guc_klv_generic with keys represented by guc_lic_type
> + */
> + u32 data[] __counted_by(data_count);
> +} __packed;
> +
> +#endif
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions
2025-08-28 17:41 ` [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions Zhanjun Dong
2025-10-09 11:49 ` Michal Wajdeczko
@ 2025-10-20 23:11 ` Julia Filipchuk
1 sibling, 0 replies; 22+ messages in thread
From: Julia Filipchuk @ 2025-10-20 23:11 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe
LGTM
Reviewed-by: Julia Filipchuk <julia.filipchuk@intel.com>
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH v7 2/6] drm/xe/guc: Add LFD related abi definitions
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
2025-08-28 17:41 ` [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions Zhanjun Dong
@ 2025-08-28 17:41 ` Zhanjun Dong
2025-10-20 23:11 ` Julia Filipchuk
2025-08-28 17:41 ` [PATCH v7 3/6] drm/xe/guc: Add GuC log init config in LFD format Zhanjun Dong
` (7 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Zhanjun Dong @ 2025-08-28 17:41 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
Add GuC LFD (Log Format Descriptors) related ABI definitions.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/abi/guc_lfd_abi.h | 171 +++++++++++++++++++++++++++
1 file changed, 171 insertions(+)
create mode 100644 drivers/gpu/drm/xe/abi/guc_lfd_abi.h
diff --git a/drivers/gpu/drm/xe/abi/guc_lfd_abi.h b/drivers/gpu/drm/xe/abi/guc_lfd_abi.h
new file mode 100644
index 000000000000..b6ed20d5b508
--- /dev/null
+++ b/drivers/gpu/drm/xe/abi/guc_lfd_abi.h
@@ -0,0 +1,171 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef _ABI_GUC_LFD_ABI_H_
+#define _ABI_GUC_LFD_ABI_H_
+
+#include <linux/types.h>
+
+#include "guc_lic_abi.h"
+
+/* The current major version of GuC-Log-File format. */
+#define GUC_LFD_FORMAT_VERSION_MAJOR 0x0001
+/* The current minor version of GuC-Log-File format. */
+#define GUC_LFD_FORMAT_VERSION_MINOR 0x0000
+
+/** enum guc_lfd_type - Log format descriptor type */
+enum guc_lfd_type {
+ /**
+ * @GUC_LFD_TYPE_FW_REQUIRED_RANGE_START: Start of range for
+ * required LFDs from GuC
+ * @GUC_LFD_TYPE_FW_VERSION: GuC Firmware Version structure.
+ * @GUC_LFD_TYPE_GUC_DEVICE_ID: GuC microcontroller device ID.
+ * @GUC_LFD_TYPE_TSC_FREQUENCY: Frequency of GuC timestamps.
+ * @GUC_LFD_TYPE_GMD_ID: HW GMD ID.
+ * @GUC_LFD_TYPE_BUILD_PLATFORM_ID: GuC build platform ID.
+ * @GUC_LFD_TYPE_FW_REQUIRED_RANGE_END: End of range for
+ * required LFDs from GuC
+ */
+ GUC_LFD_TYPE_FW_REQUIRED_RANGE_START = 0x1,
+ GUC_LFD_TYPE_FW_VERSION = 0x1,
+ GUC_LFD_TYPE_GUC_DEVICE_ID = 0x2,
+ GUC_LFD_TYPE_TSC_FREQUENCY = 0x3,
+ GUC_LFD_TYPE_GMD_ID = 0x4,
+ GUC_LFD_TYPE_BUILD_PLATFORM_ID = 0x5,
+ GUC_LFD_TYPE_FW_REQUIRED_RANGE_END = 0x1FFF,
+
+ /**
+ * @GUC_LFD_TYPE_FW_OPTIONAL_RANGE_START: Start of range for
+ * optional LFDs from GuC
+ * @GUC_LFD_TYPE_LOG_EVENTS_BUFFER: Log-event-entries buffer.
+ * @GUC_LFD_TYPE_FW_CRASH_DUMP: GuC generated crash-dump blob.
+ * @GUC_LFD_TYPE_FW_OPTIONAL_RANGE_END: End of range for
+ * optional LFDs from GuC
+ */
+ GUC_LFD_TYPE_FW_OPTIONAL_RANGE_START = 0x2000,
+ GUC_LFD_TYPE_LOG_EVENTS_BUFFER = 0x2000,
+ GUC_LFD_TYPE_FW_CRASH_DUMP = 0x2001,
+ GUC_LFD_TYPE_FW_OPTIONAL_RANGE_END = 0x3FFF,
+
+ /**
+ * @GUC_LFD_TYPE_KMD_REQUIRED_RANGE_START: Start of range for
+ * required KMD LFDs
+ * @GUC_LFD_TYPE_OS_ID: An identifier for the OS.
+ * @GUC_LFD_TYPE_KMD_REQUIRED_RANGE_END: End of this range for
+ * required KMD LFDs
+ */
+ GUC_LFD_TYPE_KMD_REQUIRED_RANGE_START = 0x4000,
+ GUC_LFD_TYPE_OS_ID = 0x4000,
+ GUC_LFD_TYPE_KMD_REQUIRED_RANGE_END = 0x5FFF,
+
+ /**
+ * @GUC_LFD_TYPE_KMD_OPTIONAL_RANGE_START: Start of range for
+ * optional KMD LFDs
+ * @GUC_LFD_TYPE_BINARY_SCHEMA_FORMAT: Binary representation of
+ * GuC log-events schema.
+ * @GUC_LFD_TYPE_HOST_COMMENT: ASCII string containing comments
+ * from the host/KMD.
+ * @GUC_LFD_TYPE_TIMESTAMP_ANCHOR: A timestamp anchor, to convert
+ * between host and GuC timestamp.
+ * @GUC_LFD_TYPE_TIMESTAMP_ANCHOR_CONFIG: Timestamp anchor
+ * configuration, definition of timestamp frequency and bit width.
+ * @GUC_LFD_TYPE_KMD_OPTIONAL_RANGE_END: End of this range for
+ * optional KMD LFDs
+ */
+ GUC_LFD_TYPE_KMD_OPTIONAL_RANGE_START = 0x6000,
+ GUC_LFD_TYPE_BINARY_SCHEMA_FORMAT = 0x6000,
+ GUC_LFD_TYPE_HOST_COMMENT = 0x6001,
+ GUC_LFD_TYPE_TIMESTAMP_ANCHOR = 0x6002,
+ GUC_LFD_TYPE_TIMESTAMP_ANCHOR_CONFIG = 0x6003,
+ GUC_LFD_TYPE_KMD_OPTIONAL_RANGE_END = 0x7FFF,
+
+ /*
+ * @GUC_LFD_TYPE_RESERVED_RANGE_START: Start of reserved range
+ * @GUC_LFD_TYPE_RESERVED_RANGE_END: End of reserved range
+ */
+ GUC_LFD_TYPE_RESERVED_RANGE_START = 0x8000,
+ GUC_LFD_TYPE_RESERVED_RANGE_END = 0xFFFF,
+};
+
+/** enum guc_lfd_os_type - OS Type LFD-ID */
+enum guc_lfd_os_type {
+ /** @GUC_LFD_OS_TYPE_OSID_WIN: Windows OS */
+ GUC_LFD_OS_TYPE_OSID_WIN = 0x1,
+ /** @GUC_LFD_OS_TYPE_OSID_LIN: Linux OS */
+ GUC_LFD_OS_TYPE_OSID_LIN = 0x2,
+ /** @GUC_LFD_OS_TYPE_OSID_VMW: VMWare OS */
+ GUC_LFD_OS_TYPE_OSID_VMW = 0x3,
+ /** @GUC_LFD_OS_TYPE_OSID_OTHER: Other */
+ GUC_LFD_OS_TYPE_OSID_OTHER = 0x4,
+};
+
+/** struct guc_lfd_data - A generic header structure for all LFD blocks */
+struct guc_lfd_data {
+ /** @header: A 32 bits dword, contains multiple bit fields */
+ u32 header;
+ /* LFD type. See guc_lfd_type */
+#define GUC_LFD_DATA_HEADER_MASK_TYPE GENMASK(31, 16)
+#define GUC_LFD_DATA_HEADER_MASK_MAGIC GENMASK(15, 0)
+
+ /** @data_count: Number of dwords the `data` field contains. */
+ u32 data_count;
+ /** @data: Data defined by GUC_LFD_DATA_HEADER_MASK_TYPE */
+ u32 data[] __counted_by(data_count);
+} __packed;
+
+/**
+ * struct guc_lfd_data_log_events_buf - GuC Log Events Buffer.
+ * This is optional fw LFD data
+ */
+struct guc_lfd_data_log_events_buf {
+ /**
+ * @log_events_format_version: version of GuC log format of buffer
+ */
+ u32 log_events_format_version;
+ /**
+ * @log_event: The log event data.
+ * Size in dwords is LFD block size - 1.
+ */
+ u32 log_event[];
+} __packed;
+
+/** struct guc_lfd_data_os_info - OS Version Information. */
+struct guc_lfd_data_os_info {
+ /**
+ * @os_id: enum values to identify the OS brand.
+ * See guc_lfd_os_type for the range of types
+ */
+ u32 os_id;
+ /**
+ * @build_version: ASCII string containing OS build version
+ * information based on os_id. String is padded with null
+ * characters to ensure its DWORD aligned.
+ * Size in dwords is LFD block size - 1.
+ */
+ char build_version[];
+} __packed;
+
+/**
+ * struct guc_logfile_header - Header of GuC Log Streaming-LFD-File Format.
+ * This structure encapsulates the layout of the guc-log-file format
+ */
+struct guc_lfd_file_header {
+ /**
+ * @magic: A magic number set by producer of a GuC log file to
+ * identify that file is a valid guc-log-file containing a stream
+ * of LFDs.
+ */
+ u64 magic;
+ /** @version: Version of this file format layout */
+ u32 version;
+#define GUC_LFD_FILE_HEADER_VERSION_MASK_MAJOR GENMASK(31, 16)
+#define GUC_LFD_FILE_HEADER_VERSION_MASK_MINOR GENMASK(15, 0)
+
+ /** @stream: A stream of one or more guc_lfd_data LFD blocks
+ */
+ u32 stream[];
+} __packed;
+
+#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 22+ messages in thread* [PATCH v7 3/6] drm/xe/guc: Add GuC log init config in LFD format
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
2025-08-28 17:41 ` [PATCH v7 1/6] drm/xe/guc: Add log init config abi definitions Zhanjun Dong
2025-08-28 17:41 ` [PATCH v7 2/6] drm/xe/guc: Add LFD related " Zhanjun Dong
@ 2025-08-28 17:41 ` Zhanjun Dong
2025-10-20 23:44 ` Julia Filipchuk
2025-08-28 17:41 ` [PATCH v7 4/6] drm/xe/guc: Add GuC log event buffer output " Zhanjun Dong
` (6 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Zhanjun Dong @ 2025-08-28 17:41 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
Add support to output GuC log init config (LIC) in LFD format.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/xe_guc_log.c | 265 ++++++++++++++++++++++++++++++++
1 file changed, 265 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_log.c b/drivers/gpu/drm/xe/xe_guc_log.c
index c01ccb35dc75..0648dd50de46 100644
--- a/drivers/gpu/drm/xe/xe_guc_log.c
+++ b/drivers/gpu/drm/xe/xe_guc_log.c
@@ -7,8 +7,10 @@
#include <linux/fault-inject.h>
+#include <linux/utsname.h>
#include <drm/drm_managed.h>
+#include "abi/guc_lfd_abi.h"
#include "regs/xe_guc_regs.h"
#include "xe_bo.h"
#include "xe_devcoredump.h"
@@ -19,6 +21,75 @@
#include "xe_mmio.h"
#include "xe_module.h"
+/* Magic keys define */
+#define GUC_LFD_DRIVER_KEY_STREAMING 0x8086AAAA474C5346
+#define GUC_LFD_LOG_BUFFER_MARKER_2 0xDEADFEED
+#define GUC_LFD_CRASH_DUMP_BUFFER_MARKER_2 0x8086DEAD
+#define GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_2 0xBEEFFEED
+#define GUC_LFD_LOG_BUFFER_MARKER_1V2 0xCABBA9E6
+#define GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_1V2 0xCABBA9F7
+#define GUC_LFD_DATA_HEADER_MAGIC 0x8086
+
+/* LFD supported LIC type range */
+#define GUC_LIC_TYPE_FIRST GUC_LIC_TYPE_GUC_SW_VERSION
+#define GUC_LIC_TYPE_LAST GUC_LIC_TYPE_BUILD_PLATFORM_ID
+#define GUC_LFD_TYPE_FW_RANGE_FIRST GUC_LFD_TYPE_FW_VERSION
+#define GUC_LFD_TYPE_FW_RANGE_LAST GUC_LFD_TYPE_BUILD_PLATFORM_ID
+
+#define GUC_LOG_BUFFER_STATE_HEADER_LENGTH 4096
+#define GUC_LOG_BUFFER_INIT_CONFIG 3
+
+struct guc_log_buffer_entry_list {
+ u32 offset;
+ u32 rd_ptr;
+ u32 wr_ptr;
+ u32 wrap_offset;
+ u32 buf_size;
+};
+
+struct guc_lic_save {
+ u32 version;
+ /*
+ * Array of init config KLV values.
+ * Range from GUC_LOG_LIC_TYPE_FIRST to GUC_LOG_LIC_TYPE_LAST
+ */
+ u32 values[GUC_LIC_TYPE_LAST - GUC_LIC_TYPE_FIRST + 1];
+ struct guc_log_buffer_entry_list entry[GUC_LOG_BUFFER_INIT_CONFIG];
+};
+
+static struct guc_log_buffer_entry_markers {
+ u32 key[2];
+} const entry_markers[GUC_LOG_BUFFER_INIT_CONFIG + 1] = {
+ {{
+ GUC_LFD_LOG_BUFFER_MARKER_1V2,
+ GUC_LFD_LOG_BUFFER_MARKER_2
+ }},
+ {{
+ GUC_LFD_LOG_BUFFER_MARKER_1V2,
+ GUC_LFD_CRASH_DUMP_BUFFER_MARKER_2
+ }},
+ {{
+ GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_1V2,
+ GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_2
+ }},
+ {{
+ GUC_LIC_MAGIC,
+ (FIELD_PREP_CONST(GUC_LIC_VERSION_MASK_MAJOR, GUC_LIC_VERSION_MAJOR) |
+ FIELD_PREP_CONST(GUC_LIC_VERSION_MASK_MINOR, GUC_LIC_VERSION_MINOR))
+ }}
+};
+
+static struct guc_log_lic_lfd_map {
+ u32 lic;
+ u32 lfd;
+} const lic_lfd_type_map[] = {
+ {GUC_LIC_TYPE_GUC_SW_VERSION, GUC_LFD_TYPE_FW_VERSION},
+ {GUC_LIC_TYPE_GUC_DEVICE_ID, GUC_LFD_TYPE_GUC_DEVICE_ID},
+ {GUC_LIC_TYPE_TSC_FREQUENCY, GUC_LFD_TYPE_TSC_FREQUENCY},
+ {GUC_LIC_TYPE_GMD_ID, GUC_LFD_TYPE_GMD_ID},
+ {GUC_LIC_TYPE_BUILD_PLATFORM_ID, GUC_LFD_TYPE_BUILD_PLATFORM_ID}
+};
+
static struct xe_guc *
log_to_guc(struct xe_guc_log *log)
{
@@ -216,6 +287,200 @@ void xe_guc_log_snapshot_print(struct xe_guc_log_snapshot *snapshot, struct drm_
}
}
+static inline void lfd_output_binary(struct drm_printer *p, char *buf, int buf_size)
+{
+ seq_write(p->arg, buf, buf_size);
+}
+
+static inline int xe_guc_log_add_lfd_header(struct guc_lfd_data *lfd)
+{
+ lfd->header = FIELD_PREP_CONST(GUC_LFD_DATA_HEADER_MASK_MAGIC, GUC_LFD_DATA_HEADER_MAGIC);
+ return offsetof(struct guc_lfd_data, data);
+}
+
+static int xe_guc_log_add_typed_payload(struct drm_printer *p, u32 type,
+ u32 data_len, void *data)
+{
+ struct guc_lfd_data lfd;
+ int len;
+
+ len = xe_guc_log_add_lfd_header(&lfd);
+ lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, type);
+ /* make length DW aligned */
+ lfd.data_count = DIV_ROUND_UP(data_len, sizeof(u32));
+ lfd_output_binary(p, (char *)&lfd, len);
+
+ lfd_output_binary(p, data, data_len);
+ len += lfd.data_count * sizeof(u32);
+
+ return len;
+}
+
+static inline int lic_type_to_index(u32 lic_type)
+{
+ XE_WARN_ON(lic_type < GUC_LIC_TYPE_FIRST || lic_type > GUC_LIC_TYPE_LAST);
+
+ return lic_type - GUC_LIC_TYPE_FIRST;
+}
+
+static inline int lfd_type_to_index(u32 lfd_type)
+{
+ int i, lic_type = 0;
+
+ XE_WARN_ON(lfd_type < GUC_LFD_TYPE_FW_RANGE_FIRST || lfd_type > GUC_LFD_TYPE_FW_RANGE_LAST);
+
+ for (i = 0; i < ARRAY_SIZE(lic_lfd_type_map); i++)
+ if (lic_lfd_type_map[i].lfd == lfd_type)
+ lic_type = lic_lfd_type_map[i].lic;
+
+ /* If not found, lic_type_to_index will warning invalid type */
+ return lic_type_to_index(lic_type);
+}
+
+static int xe_guc_log_add_klv(struct drm_printer *p, u32 lfd_type,
+ struct guc_lic_save *config)
+{
+ int klv_index = lfd_type_to_index(lfd_type);
+
+ return xe_guc_log_add_typed_payload(p, lfd_type, sizeof(u32), &config->values[klv_index]);
+}
+
+static int xe_guc_log_add_os_id(struct drm_printer *p, u32 id)
+{
+ struct guc_lfd_data_os_info os_id;
+ struct guc_lfd_data lfd;
+ int len, info_len, section_len;
+ char *version;
+ u32 blank = 0;
+
+ len = xe_guc_log_add_lfd_header(&lfd);
+ lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_OS_ID);
+
+ os_id.os_id = id;
+ section_len = offsetof(struct guc_lfd_data_os_info, build_version);
+
+ version = init_utsname()->release;
+ info_len = strlen(version);
+
+ /* make length DW aligned */
+ lfd.data_count = DIV_ROUND_UP(section_len + info_len, sizeof(u32));
+ lfd_output_binary(p, (char *)&lfd, len);
+ lfd_output_binary(p, (char *)&os_id, section_len);
+ lfd_output_binary(p, version, info_len);
+
+ /* Padding with 0 */
+ section_len = lfd.data_count * sizeof(u32) - section_len - info_len;
+ if (section_len)
+ lfd_output_binary(p, (char *)&blank, section_len);
+
+ len += lfd.data_count * sizeof(u32);
+ return len;
+}
+
+static void xe_guc_log_loop_log_init(struct guc_lic *init, struct guc_lic_save *config)
+{
+ struct guc_klv_generic_dw_t *p = (void *)init->data;
+ int i;
+
+ for (i = 0; i < init->data_count;) {
+ int klv_len = FIELD_GET(GUC_KLV_0_LEN, p->kl) + 1;
+ int key = FIELD_GET(GUC_KLV_0_KEY, p->kl);
+
+ if (key < GUC_LIC_TYPE_FIRST || key > GUC_LIC_TYPE_LAST) {
+ XE_WARN_ON(key < GUC_LIC_TYPE_FIRST || key > GUC_LIC_TYPE_LAST);
+ break;
+ }
+ config->values[lic_type_to_index(key)] = p->value;
+ i += klv_len + 1; /* Whole KLV structure length in dwords */
+ p = (void *)((u32 *)p + klv_len);
+ }
+}
+
+static int find_marker(u32 mark0, u32 mark1)
+{
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(entry_markers); i++)
+ if (mark0 == entry_markers[i].key[0] && mark1 == entry_markers[i].key[1])
+ return i;
+
+ return ARRAY_SIZE(entry_markers);
+}
+
+static void xe_guc_log_load_lic(void *guc_log, struct guc_lic_save *config)
+{
+ u32 offset = GUC_LOG_BUFFER_STATE_HEADER_LENGTH;
+ struct guc_log_buffer_state *p = guc_log;
+
+ config->version = p->version;
+ while (p->marker[0]) {
+ int index;
+
+ index = find_marker(p->marker[0], p->marker[1]);
+
+ if (index < ARRAY_SIZE(entry_markers)) {
+ if (index == GUC_LOG_BUFFER_INIT_CONFIG) {
+ /* Load log init config */
+ xe_guc_log_loop_log_init((void *)p, config);
+
+ /* LIC structure is the last */
+ return;
+ }
+ config->entry[index].offset = offset;
+ config->entry[index].rd_ptr = p->read_ptr;
+ config->entry[index].wr_ptr = p->write_ptr;
+ config->entry[index].wrap_offset = p->wrap_offset;
+ config->entry[index].buf_size = p->size;
+ }
+ offset += p->size;
+ p++;
+ }
+}
+
+static int
+xe_guc_log_output_lfd_init(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
+ struct guc_lic_save *config)
+{
+ int type, len;
+ size_t size = 0;
+
+ /* FW required types */
+ for (type = GUC_LFD_TYPE_FW_RANGE_FIRST; type <= GUC_LFD_TYPE_FW_RANGE_LAST; type++)
+ size += xe_guc_log_add_klv(p, type, config);
+
+ /* KMD required type(s) */
+ len = xe_guc_log_add_os_id(p, GUC_LFD_OS_TYPE_OSID_LIN);
+ size += len;
+
+ return size;
+}
+
+void
+xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
+void
+xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p)
+{
+ struct guc_lfd_file_header header;
+ struct guc_lic_save config;
+
+ if (!snapshot || !snapshot->size)
+ return;
+
+ header.magic = GUC_LFD_DRIVER_KEY_STREAMING;
+ header.version = FIELD_PREP_CONST(GUC_LFD_FILE_HEADER_VERSION_MASK_MINOR,
+ GUC_LFD_FORMAT_VERSION_MINOR) |
+ FIELD_PREP_CONST(GUC_LFD_FILE_HEADER_VERSION_MASK_MAJOR,
+ GUC_LFD_FORMAT_VERSION_MAJOR);
+
+ /* Output LFD file header */
+ lfd_output_binary(p, (char *)&header,
+ offsetof(struct guc_lfd_file_header, stream));
+
+ /* Output LFD stream */
+ xe_guc_log_load_lic(snapshot->copy[0], &config);
+ xe_guc_log_output_lfd_init(p, snapshot, &config);
+}
+
/**
* xe_guc_log_print_dmesg - dump a copy of the GuC log to dmesg
* @log: GuC log structure
--
2.34.1
^ permalink raw reply related [flat|nested] 22+ messages in thread* Re: [PATCH v7 3/6] drm/xe/guc: Add GuC log init config in LFD format
2025-08-28 17:41 ` [PATCH v7 3/6] drm/xe/guc: Add GuC log init config in LFD format Zhanjun Dong
@ 2025-10-20 23:44 ` Julia Filipchuk
2025-11-25 18:19 ` Dong, Zhanjun
0 siblings, 1 reply; 22+ messages in thread
From: Julia Filipchuk @ 2025-10-20 23:44 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe
> +/* Magic keys define */
> +#define GUC_LFD_DRIVER_KEY_STREAMING 0x8086AAAA474C5346
> +#define GUC_LFD_LOG_BUFFER_MARKER_2 0xDEADFEED
> +#define GUC_LFD_CRASH_DUMP_BUFFER_MARKER_2 0x8086DEAD
> +#define GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_2 0xBEEFFEED
> +#define GUC_LFD_LOG_BUFFER_MARKER_1V2 0xCABBA9E6
> +#define GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_1V2 0xCABBA9F7
> +#define GUC_LFD_DATA_HEADER_MAGIC 0x8086
Possibly fix alignment
> +/* LFD supported LIC type range */
> +#define GUC_LIC_TYPE_FIRST GUC_LIC_TYPE_GUC_SW_VERSION
> +#define GUC_LIC_TYPE_LAST GUC_LIC_TYPE_BUILD_PLATFORM_ID
> +#define GUC_LFD_TYPE_FW_RANGE_FIRST GUC_LFD_TYPE_FW_VERSION
> +#define GUC_LFD_TYPE_FW_RANGE_LAST GUC_LFD_TYPE_BUILD_PLATFORM_ID
Does it make sense to define these near the relevant enums?
> +
> +void
> +xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
> +void
> +xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p)
Should this just be declared static?
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH v7 3/6] drm/xe/guc: Add GuC log init config in LFD format
2025-10-20 23:44 ` Julia Filipchuk
@ 2025-11-25 18:19 ` Dong, Zhanjun
2025-11-25 19:47 ` Julia Filipchuk
0 siblings, 1 reply; 22+ messages in thread
From: Dong, Zhanjun @ 2025-11-25 18:19 UTC (permalink / raw)
To: Julia Filipchuk, intel-xe
Thanks for review, please see my inline comments below.
Regards,
Zhanjun Dong
On 2025-10-20 7:44 p.m., Julia Filipchuk wrote:
>> +/* Magic keys define */
>> +#define GUC_LFD_DRIVER_KEY_STREAMING 0x8086AAAA474C5346
>> +#define GUC_LFD_LOG_BUFFER_MARKER_2 0xDEADFEED
>> +#define GUC_LFD_CRASH_DUMP_BUFFER_MARKER_2 0x8086DEAD
>> +#define GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_2 0xBEEFFEED
>> +#define GUC_LFD_LOG_BUFFER_MARKER_1V2 0xCABBA9E6
>> +#define GUC_LFD_STATE_CAPTURE_BUFFER_MARKER_1V2 0xCABBA9F7
>> +#define GUC_LFD_DATA_HEADER_MAGIC 0x8086
> Possibly fix alignment
Confirmed the alignment is correct in source code, misalignment here
shall be caused by '+'
>
>> +/* LFD supported LIC type range */
>> +#define GUC_LIC_TYPE_FIRST GUC_LIC_TYPE_GUC_SW_VERSION
>> +#define GUC_LIC_TYPE_LAST GUC_LIC_TYPE_BUILD_PLATFORM_ID
>> +#define GUC_LFD_TYPE_FW_RANGE_FIRST GUC_LFD_TYPE_FW_VERSION
>> +#define GUC_LFD_TYPE_FW_RANGE_LAST GUC_LFD_TYPE_BUILD_PLATFORM_ID
> Does it make sense to define these near the relevant enums?
Those enums referenced is defined in xxx_abi.h, where defines are about
GuC interface layer; here guc log.c, implementation layer, is what we
supported. It is possible that some features are defined in interface
layer, but implementation layer(xe_guc_log.c) skip/don't support it.
Keep XXX_FIRST and XXX_LAST these implementation related macros within
the implementation layer is the way we follow this layer concept.
>
>> +
>> +void
>> +xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
>> +void
>> +xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p)
> Should this just be declared static?
>
This is the way we add code without trigger the
"<function xxx> not referenced"
build error.
In the last patch in this series, it will be updated as static.
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH v7 4/6] drm/xe/guc: Add GuC log event buffer output in LFD format
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (2 preceding siblings ...)
2025-08-28 17:41 ` [PATCH v7 3/6] drm/xe/guc: Add GuC log init config in LFD format Zhanjun Dong
@ 2025-08-28 17:41 ` Zhanjun Dong
2025-10-20 23:36 ` Julia Filipchuk
2025-08-28 17:41 ` [PATCH v7 5/6] drm/xe/guc: Only add GuC crash dump if available Zhanjun Dong
` (5 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Zhanjun Dong @ 2025-08-28 17:41 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
Add GuC log event buffer output in LFD format.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/xe_guc_log.c | 76 ++++++++++++++++++++++++++++++++-
1 file changed, 75 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_log.c b/drivers/gpu/drm/xe/xe_guc_log.c
index 0648dd50de46..3d4a49b77840 100644
--- a/drivers/gpu/drm/xe/xe_guc_log.c
+++ b/drivers/gpu/drm/xe/xe_guc_log.c
@@ -455,6 +455,75 @@ xe_guc_log_output_lfd_init(struct drm_printer *p, struct xe_guc_log_snapshot *sn
return size;
}
+static void
+xe_guc_log_print_chunks(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
+ u32 from, u32 to)
+{
+ int chunk_from = from % GUC_LOG_CHUNK_SIZE;
+ int chunk_id = from / GUC_LOG_CHUNK_SIZE;
+ int to_chunk_id = to / GUC_LOG_CHUNK_SIZE;
+ int chunk_to = to % GUC_LOG_CHUNK_SIZE;
+ int pos = from;
+
+ do {
+ size_t size = (to_chunk_id > chunk_id ? GUC_LOG_CHUNK_SIZE : chunk_to) - chunk_from;
+
+ lfd_output_binary(p, snapshot->copy[chunk_id] + chunk_from, size);
+ pos += size;
+ chunk_id++;
+ chunk_from = 0;
+ } while (pos < to);
+}
+
+static inline int
+xe_guc_log_add_log_event(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
+ struct guc_lic_save *config)
+{
+ size_t size;
+ u32 data_len, section_len;
+ struct guc_lfd_data lfd;
+ struct guc_log_buffer_entry_list *entry;
+ struct guc_lfd_data_log_events_buf events_buf;
+
+ entry = &config->entry[GUC_LOG_BUFFER_DEBUG];
+
+ /* Skip empty log */
+ if (entry->rd_ptr == entry->wr_ptr)
+ return 0;
+
+ size = xe_guc_log_add_lfd_header(&lfd);
+ lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_LOG_EVENTS_BUFFER);
+ events_buf.log_events_format_version = config->version;
+
+ /* Adjust to log_format_buf */
+ section_len = offsetof(struct guc_lfd_data_log_events_buf, log_event);
+ data_len = section_len;
+
+ /* Calculate data length */
+ data_len += entry->rd_ptr < entry->wr_ptr ? (entry->wr_ptr - entry->rd_ptr) :
+ (entry->wr_ptr + entry->wrap_offset - entry->rd_ptr);
+ /* make length u32 aligned */
+ lfd.data_count = DIV_ROUND_UP(data_len, sizeof(u32));
+
+ /* Output GUC_LFD_TYPE_LOG_EVENTS_BUFFER header */
+ lfd_output_binary(p, (char *)&lfd, size);
+ lfd_output_binary(p, (char *)&events_buf, section_len);
+
+ /* Output data from guc log chunks directly */
+ if (entry->rd_ptr < entry->wr_ptr) {
+ xe_guc_log_print_chunks(p, snapshot, entry->offset + entry->rd_ptr,
+ entry->offset + entry->wr_ptr);
+ } else {
+ /* 1st, print from rd to wrap offset */
+ xe_guc_log_print_chunks(p, snapshot, entry->offset + entry->rd_ptr,
+ entry->offset + entry->wrap_offset);
+
+ /* 2nd, print from buf start to wr */
+ xe_guc_log_print_chunks(p, snapshot, entry->offset, entry->offset + entry->wr_ptr);
+ }
+ return size;
+}
+
void
xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
void
@@ -462,6 +531,7 @@ xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_p
{
struct guc_lfd_file_header header;
struct guc_lic_save config;
+ size_t size;
if (!snapshot || !snapshot->size)
return;
@@ -478,7 +548,11 @@ xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_p
/* Output LFD stream */
xe_guc_log_load_lic(snapshot->copy[0], &config);
- xe_guc_log_output_lfd_init(p, snapshot, &config);
+ size = xe_guc_log_output_lfd_init(p, snapshot, &config);
+ if (size < 0)
+ return;
+
+ xe_guc_log_add_log_event(p, snapshot, &config);
}
/**
--
2.34.1
^ permalink raw reply related [flat|nested] 22+ messages in thread* Re: [PATCH v7 4/6] drm/xe/guc: Add GuC log event buffer output in LFD format
2025-08-28 17:41 ` [PATCH v7 4/6] drm/xe/guc: Add GuC log event buffer output " Zhanjun Dong
@ 2025-10-20 23:36 ` Julia Filipchuk
2025-11-26 23:05 ` Dong, Zhanjun
0 siblings, 1 reply; 22+ messages in thread
From: Julia Filipchuk @ 2025-10-20 23:36 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe
> +static void
> +xe_guc_log_print_chunks(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
> + u32 from, u32 to)
> +{
> + int chunk_from = from % GUC_LOG_CHUNK_SIZE;
> + int chunk_id = from / GUC_LOG_CHUNK_SIZE;
> + int to_chunk_id = to / GUC_LOG_CHUNK_SIZE;
> + int chunk_to = to % GUC_LOG_CHUNK_SIZE;
> + int pos = from;
> +
> + do {
> + size_t size = (to_chunk_id > chunk_id ? GUC_LOG_CHUNK_SIZE : chunk_to) - chunk_from;
This check looks incorrect. Should be >= in comparison for last case to use the
chunk_to.
> /* Output LFD stream */
> xe_guc_log_load_lic(snapshot->copy[0], &config);
> - xe_guc_log_output_lfd_init(p, snapshot, &config);
> + size = xe_guc_log_output_lfd_init(p, snapshot, &config);
> + if (size < 0)
> + return;
This should check for only equal to zero since the size is accumulated?
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: [PATCH v7 4/6] drm/xe/guc: Add GuC log event buffer output in LFD format
2025-10-20 23:36 ` Julia Filipchuk
@ 2025-11-26 23:05 ` Dong, Zhanjun
0 siblings, 0 replies; 22+ messages in thread
From: Dong, Zhanjun @ 2025-11-26 23:05 UTC (permalink / raw)
To: Julia Filipchuk, intel-xe
On 2025-10-20 7:36 p.m., Julia Filipchuk wrote:
>
>> +static void
>> +xe_guc_log_print_chunks(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
>> + u32 from, u32 to)
>> +{
>> + int chunk_from = from % GUC_LOG_CHUNK_SIZE;
>> + int chunk_id = from / GUC_LOG_CHUNK_SIZE;
>> + int to_chunk_id = to / GUC_LOG_CHUNK_SIZE;
>> + int chunk_to = to % GUC_LOG_CHUNK_SIZE;
>> + int pos = from;
>> +
>> + do {
>> + size_t size = (to_chunk_id > chunk_id ? GUC_LOG_CHUNK_SIZE : chunk_to) - chunk_from;
> This check looks incorrect. Should be >= in comparison for last case to use the
> chunk_to.
Yes, should be >=
>
>> /* Output LFD stream */
>> xe_guc_log_load_lic(snapshot->copy[0], &config);
>> - xe_guc_log_output_lfd_init(p, snapshot, &config);
>> + size = xe_guc_log_output_lfd_init(p, snapshot, &config);
>> + if (size < 0)
>> + return;
> This should check for only equal to zero since the size is accumulated?
Yes, should check for zero as size_t never less than 0.
Will correct above 2 in next rev.
Regards,
Zhanjun Dong
>
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH v7 5/6] drm/xe/guc: Only add GuC crash dump if available
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (3 preceding siblings ...)
2025-08-28 17:41 ` [PATCH v7 4/6] drm/xe/guc: Add GuC log event buffer output " Zhanjun Dong
@ 2025-08-28 17:41 ` Zhanjun Dong
2025-10-20 23:11 ` Julia Filipchuk
2025-08-28 17:41 ` [PATCH v7 6/6] drm/xe/guc: Add new debugfs entry for lfd format output Zhanjun Dong
` (4 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Zhanjun Dong @ 2025-08-28 17:41 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
Add GuC crash dump data empty check. LFD will only include crash dump
section when data is not empty.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/xe_guc_log.c | 45 +++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_log.c b/drivers/gpu/drm/xe/xe_guc_log.c
index 3d4a49b77840..589975904153 100644
--- a/drivers/gpu/drm/xe/xe_guc_log.c
+++ b/drivers/gpu/drm/xe/xe_guc_log.c
@@ -524,6 +524,50 @@ xe_guc_log_add_log_event(struct drm_printer *p, struct xe_guc_log_snapshot *snap
return size;
}
+static int
+xe_guc_log_add_crash_dump(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
+ struct guc_lic_save *config)
+{
+ struct guc_log_buffer_entry_list *entry;
+ int chunk_from, chunk_id;
+ int from, to, i;
+ size_t size = 0;
+ u32 *buf32;
+
+ entry = &config->entry[GUC_LOG_BUFFER_CRASH_DUMP];
+
+ /* Skip zero sized crash dump */
+ if (!entry->buf_size)
+ return 0;
+
+ /* Check if crash dump section are all zero */
+ from = entry->offset;
+ to = entry->offset + entry->buf_size;
+ chunk_from = from % GUC_LOG_CHUNK_SIZE;
+ chunk_id = from / GUC_LOG_CHUNK_SIZE;
+ buf32 = snapshot->copy[chunk_id] + chunk_from;
+
+ for (i = 0; i < entry->buf_size / sizeof(u32); i++)
+ if (buf32[i])
+ break;
+
+ /* Buffer has non-zero data? */
+ if (i < entry->buf_size / sizeof(u32)) {
+ struct guc_lfd_data lfd;
+
+ size = xe_guc_log_add_lfd_header(&lfd);
+ lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_FW_CRASH_DUMP);
+ /* Calculate data length */
+ lfd.data_count = DIV_ROUND_UP(entry->buf_size, sizeof(u32));
+ /* Output GUC_LFD_TYPE_FW_CRASH_DUMP header */
+ lfd_output_binary(p, (char *)&lfd, size);
+
+ /* rd/wr ptr is not used for crash dump */
+ xe_guc_log_print_chunks(p, snapshot, from, to);
+ }
+ return size;
+}
+
void
xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
void
@@ -553,6 +597,7 @@ xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_p
return;
xe_guc_log_add_log_event(p, snapshot, &config);
+ xe_guc_log_add_crash_dump(p, snapshot, &config);
}
/**
--
2.34.1
^ permalink raw reply related [flat|nested] 22+ messages in thread* Re: [PATCH v7 5/6] drm/xe/guc: Only add GuC crash dump if available
2025-08-28 17:41 ` [PATCH v7 5/6] drm/xe/guc: Only add GuC crash dump if available Zhanjun Dong
@ 2025-10-20 23:11 ` Julia Filipchuk
2025-11-26 22:59 ` Dong, Zhanjun
0 siblings, 1 reply; 22+ messages in thread
From: Julia Filipchuk @ 2025-10-20 23:11 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe
Some questions on this patch.
> +static int
> +xe_guc_log_add_crash_dump(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
> + struct guc_lic_save *config)
Is this return value just here because of convention?
> + /* Check if crash dump section are all zero */
> + from = entry->offset;
> + to = entry->offset + entry->buf_size;
> + chunk_from = from % GUC_LOG_CHUNK_SIZE;
> + chunk_id = from / GUC_LOG_CHUNK_SIZE;
> + buf32 = snapshot->copy[chunk_id] + chunk_from;
> + for (i = 0; i < entry->buf_size / sizeof(u32); i++)
> + if (buf32[i])
> + break;
This check looks incorrect.
buf32 is looking at a max GUC_LOG_CHUNK_SIZE chunk but here is checked against
full `entry->buf_size`.
Is it a simplification to check if only the first chunk is zero?
> +
> + /* Buffer has non-zero data? */
> + if (i < entry->buf_size / sizeof(u32)) {
> + struct guc_lfd_data lfd;
> +
> + size = xe_guc_log_add_lfd_header(&lfd);
> + lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_FW_CRASH_DUMP);
> + /* Calculate data length */
> + lfd.data_count = DIV_ROUND_UP(entry->buf_size, sizeof(u32));
> + /* Output GUC_LFD_TYPE_FW_CRASH_DUMP header */
> + lfd_output_binary(p, (char *)&lfd, size);
> +
> + /* rd/wr ptr is not used for crash dump */
> + xe_guc_log_print_chunks(p, snapshot, from, to);
> + }
> + return size;
Should this size be additionally incremented by length of printed data?
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: [PATCH v7 5/6] drm/xe/guc: Only add GuC crash dump if available
2025-10-20 23:11 ` Julia Filipchuk
@ 2025-11-26 22:59 ` Dong, Zhanjun
0 siblings, 0 replies; 22+ messages in thread
From: Dong, Zhanjun @ 2025-11-26 22:59 UTC (permalink / raw)
To: Julia Filipchuk, intel-xe
On 2025-10-20 7:11 p.m., Julia Filipchuk wrote:
> Some questions on this patch.
>
>
>> +static int
>> +xe_guc_log_add_crash_dump(struct drm_printer *p, struct xe_guc_log_snapshot *snapshot,
>> + struct guc_lic_save *config)
>
> Is this return value just here because of convention?
>> + /* Check if crash dump section are all zero */
>> + from = entry->offset;
>> + to = entry->offset + entry->buf_size;
>> + chunk_from = from % GUC_LOG_CHUNK_SIZE;
>> + chunk_id = from / GUC_LOG_CHUNK_SIZE;
>> + buf32 = snapshot->copy[chunk_id] + chunk_from;
>> + for (i = 0; i < entry->buf_size / sizeof(u32); i++)
>> + if (buf32[i])
>> + break;
>
> This check looks incorrect.
>
> buf32 is looking at a max GUC_LOG_CHUNK_SIZE chunk but here is checked against
> full `entry->buf_size`.
>
> Is it a simplification to check if only the first chunk is zero?
There is a story behind: In v6 review, John raised the concern of the
crash dump is very small, only in 8K, 12K or 16K. That's why we use this
simplified code.
>
>
>
>> +
>> + /* Buffer has non-zero data? */
>> + if (i < entry->buf_size / sizeof(u32)) {
>> + struct guc_lfd_data lfd;
>> +
>> + size = xe_guc_log_add_lfd_header(&lfd);
>> + lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_FW_CRASH_DUMP);
>> + /* Calculate data length */
>> + lfd.data_count = DIV_ROUND_UP(entry->buf_size, sizeof(u32));
>> + /* Output GUC_LFD_TYPE_FW_CRASH_DUMP header */
>> + lfd_output_binary(p, (char *)&lfd, size);
>> +
>> + /* rd/wr ptr is not used for crash dump */
>> + xe_guc_log_print_chunks(p, snapshot, from, to);
>> + }
>> + return size;
> Should this size be additionally incremented by length of printed data?
The size is the actual data size used in buffer, data output by
lfd_output_binary do not use buffer, that's why not add up.
Regards,
Zhanjun Dong
>
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH v7 6/6] drm/xe/guc: Add new debugfs entry for lfd format output
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (4 preceding siblings ...)
2025-08-28 17:41 ` [PATCH v7 5/6] drm/xe/guc: Only add GuC crash dump if available Zhanjun Dong
@ 2025-08-28 17:41 ` Zhanjun Dong
2025-10-20 23:12 ` Julia Filipchuk
2025-08-28 19:17 ` ✗ CI.checkpatch: warning for drm/xe/guc: Add LFD format output for guc log (rev7) Patchwork
` (3 subsequent siblings)
9 siblings, 1 reply; 22+ messages in thread
From: Zhanjun Dong @ 2025-08-28 17:41 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
Add new debugfs entry "guc_log_lfd", prepared for output guc log
in LFD(Log Format Descriptors) format.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/xe_guc_debugfs.c | 7 +++++++
drivers/gpu/drm/xe/xe_guc_log.c | 18 +++++++++++++++---
drivers/gpu/drm/xe/xe_guc_log.h | 1 +
3 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_debugfs.c b/drivers/gpu/drm/xe/xe_guc_debugfs.c
index 0b102ab46c4d..6cbc4240a3bd 100644
--- a/drivers/gpu/drm/xe/xe_guc_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_guc_debugfs.c
@@ -85,6 +85,12 @@ static int guc_log(struct xe_guc *guc, struct drm_printer *p)
return 0;
}
+static int guc_log_lfd(struct xe_guc *guc, struct drm_printer *p)
+{
+ xe_guc_log_print_lfd(&guc->log, p);
+ return 0;
+}
+
static int guc_log_dmesg(struct xe_guc *guc, struct drm_printer *p)
{
xe_guc_log_print_dmesg(&guc->log);
@@ -121,6 +127,7 @@ static const struct drm_info_list slpc_debugfs_list[] = {
/* everything else should be added here */
static const struct drm_info_list pf_only_debugfs_list[] = {
{ "guc_log", .show = guc_debugfs_show, .data = guc_log },
+ { "guc_log_lfd", .show = guc_debugfs_show, .data = guc_log_lfd },
{ "guc_log_dmesg", .show = guc_debugfs_show, .data = guc_log_dmesg },
};
diff --git a/drivers/gpu/drm/xe/xe_guc_log.c b/drivers/gpu/drm/xe/xe_guc_log.c
index 589975904153..21c464f2f14c 100644
--- a/drivers/gpu/drm/xe/xe_guc_log.c
+++ b/drivers/gpu/drm/xe/xe_guc_log.c
@@ -568,9 +568,7 @@ xe_guc_log_add_crash_dump(struct drm_printer *p, struct xe_guc_log_snapshot *sna
return size;
}
-void
-xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
-void
+static void
xe_guc_log_snapshot_print_lfd(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p)
{
struct guc_lfd_file_header header;
@@ -635,6 +633,20 @@ void xe_guc_log_print(struct xe_guc_log *log, struct drm_printer *p)
xe_guc_log_snapshot_free(snapshot);
}
+/**
+ * xe_guc_log_print_lfd - dump a copy of the GuC log in LFD format
+ * @log: GuC log structure
+ * @p: the printer object to output to
+ */
+void xe_guc_log_print_lfd(struct xe_guc_log *log, struct drm_printer *p)
+{
+ struct xe_guc_log_snapshot *snapshot;
+
+ snapshot = xe_guc_log_snapshot_capture(log, false);
+ xe_guc_log_snapshot_print_lfd(snapshot, p);
+ xe_guc_log_snapshot_free(snapshot);
+}
+
int xe_guc_log_init(struct xe_guc_log *log)
{
struct xe_device *xe = log_to_xe(log);
diff --git a/drivers/gpu/drm/xe/xe_guc_log.h b/drivers/gpu/drm/xe/xe_guc_log.h
index f1e2b0be90a9..0f6299886010 100644
--- a/drivers/gpu/drm/xe/xe_guc_log.h
+++ b/drivers/gpu/drm/xe/xe_guc_log.h
@@ -40,6 +40,7 @@ struct xe_device;
int xe_guc_log_init(struct xe_guc_log *log);
void xe_guc_log_print(struct xe_guc_log *log, struct drm_printer *p);
+void xe_guc_log_print_lfd(struct xe_guc_log *log, struct drm_printer *p);
void xe_guc_log_print_dmesg(struct xe_guc_log *log);
struct xe_guc_log_snapshot *xe_guc_log_snapshot_capture(struct xe_guc_log *log, bool atomic);
void xe_guc_log_snapshot_print(struct xe_guc_log_snapshot *snapshot, struct drm_printer *p);
--
2.34.1
^ permalink raw reply related [flat|nested] 22+ messages in thread* ✗ CI.checkpatch: warning for drm/xe/guc: Add LFD format output for guc log (rev7)
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (5 preceding siblings ...)
2025-08-28 17:41 ` [PATCH v7 6/6] drm/xe/guc: Add new debugfs entry for lfd format output Zhanjun Dong
@ 2025-08-28 19:17 ` Patchwork
2025-08-28 19:19 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-28 19:17 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: drm/xe/guc: Add LFD format output for guc log (rev7)
URL : https://patchwork.freedesktop.org/series/146541/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
e0fa7d6ad11ac6dc8dfa757164e518968a98b897
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ebeaaf3eb253f80be766fdc14bba39ded7c1b123
Author: Zhanjun Dong <zhanjun.dong@intel.com>
Date: Thu Aug 28 13:41:59 2025 -0400
drm/xe/guc: Add new debugfs entry for lfd format output
Add new debugfs entry "guc_log_lfd", prepared for output guc log
in LFD(Log Format Descriptors) format.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
+ /mt/dim checkpatch a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 drm-intel
40c7df188581 drm/xe/guc: Add log init config abi definitions
-:11: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#11:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 74 lines checked
724a3d424713 drm/xe/guc: Add LFD related abi definitions
-:11: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#11:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 171 lines checked
6c115c85e86f drm/xe/guc: Add GuC log init config in LFD format
4142b110209f drm/xe/guc: Add GuC log event buffer output in LFD format
94076a04efb2 drm/xe/guc: Only add GuC crash dump if available
ebeaaf3eb253 drm/xe/guc: Add new debugfs entry for lfd format output
^ permalink raw reply [flat|nested] 22+ messages in thread* ✓ CI.KUnit: success for drm/xe/guc: Add LFD format output for guc log (rev7)
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (6 preceding siblings ...)
2025-08-28 19:17 ` ✗ CI.checkpatch: warning for drm/xe/guc: Add LFD format output for guc log (rev7) Patchwork
@ 2025-08-28 19:19 ` Patchwork
2025-08-28 19:56 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-29 3:03 ` ✗ Xe.CI.Full: failure " Patchwork
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-28 19:19 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: drm/xe/guc: Add LFD format output for guc log (rev7)
URL : https://patchwork.freedesktop.org/series/146541/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:17:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:17:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:18:25] Starting KUnit Kernel (1/1)...
[19:18:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:18:25] ================== guc_buf (11 subtests) ===================
[19:18:25] [PASSED] test_smallest
[19:18:25] [PASSED] test_largest
[19:18:25] [PASSED] test_granular
[19:18:25] [PASSED] test_unique
[19:18:25] [PASSED] test_overlap
[19:18:25] [PASSED] test_reusable
[19:18:25] [PASSED] test_too_big
[19:18:25] [PASSED] test_flush
[19:18:25] [PASSED] test_lookup
[19:18:25] [PASSED] test_data
[19:18:25] [PASSED] test_class
[19:18:25] ===================== [PASSED] guc_buf =====================
[19:18:25] =================== guc_dbm (7 subtests) ===================
[19:18:25] [PASSED] test_empty
[19:18:25] [PASSED] test_default
[19:18:25] ======================== test_size ========================
[19:18:25] [PASSED] 4
[19:18:25] [PASSED] 8
[19:18:25] [PASSED] 32
[19:18:25] [PASSED] 256
[19:18:25] ==================== [PASSED] test_size ====================
[19:18:25] ======================= test_reuse ========================
[19:18:25] [PASSED] 4
[19:18:25] [PASSED] 8
[19:18:25] [PASSED] 32
[19:18:25] [PASSED] 256
[19:18:25] =================== [PASSED] test_reuse ====================
[19:18:25] =================== test_range_overlap ====================
[19:18:25] [PASSED] 4
[19:18:25] [PASSED] 8
[19:18:25] [PASSED] 32
[19:18:25] [PASSED] 256
[19:18:25] =============== [PASSED] test_range_overlap ================
[19:18:25] =================== test_range_compact ====================
[19:18:25] [PASSED] 4
[19:18:25] [PASSED] 8
[19:18:25] [PASSED] 32
[19:18:25] [PASSED] 256
[19:18:25] =============== [PASSED] test_range_compact ================
[19:18:25] ==================== test_range_spare =====================
[19:18:25] [PASSED] 4
[19:18:25] [PASSED] 8
[19:18:25] [PASSED] 32
[19:18:25] [PASSED] 256
[19:18:25] ================ [PASSED] test_range_spare =================
[19:18:25] ===================== [PASSED] guc_dbm =====================
[19:18:25] =================== guc_idm (6 subtests) ===================
[19:18:25] [PASSED] bad_init
[19:18:25] [PASSED] no_init
[19:18:25] [PASSED] init_fini
[19:18:25] [PASSED] check_used
[19:18:25] [PASSED] check_quota
[19:18:25] [PASSED] check_all
[19:18:25] ===================== [PASSED] guc_idm =====================
[19:18:25] ================== no_relay (3 subtests) ===================
[19:18:25] [PASSED] xe_drops_guc2pf_if_not_ready
[19:18:25] [PASSED] xe_drops_guc2vf_if_not_ready
[19:18:25] [PASSED] xe_rejects_send_if_not_ready
[19:18:25] ==================== [PASSED] no_relay =====================
[19:18:25] ================== pf_relay (14 subtests) ==================
[19:18:25] [PASSED] pf_rejects_guc2pf_too_short
[19:18:25] [PASSED] pf_rejects_guc2pf_too_long
[19:18:25] [PASSED] pf_rejects_guc2pf_no_payload
[19:18:25] [PASSED] pf_fails_no_payload
[19:18:25] [PASSED] pf_fails_bad_origin
[19:18:25] [PASSED] pf_fails_bad_type
[19:18:25] [PASSED] pf_txn_reports_error
[19:18:25] [PASSED] pf_txn_sends_pf2guc
[19:18:25] [PASSED] pf_sends_pf2guc
[19:18:25] [SKIPPED] pf_loopback_nop
[19:18:25] [SKIPPED] pf_loopback_echo
[19:18:25] [SKIPPED] pf_loopback_fail
[19:18:25] [SKIPPED] pf_loopback_busy
[19:18:25] [SKIPPED] pf_loopback_retry
[19:18:25] ==================== [PASSED] pf_relay =====================
[19:18:25] ================== vf_relay (3 subtests) ===================
[19:18:25] [PASSED] vf_rejects_guc2vf_too_short
[19:18:25] [PASSED] vf_rejects_guc2vf_too_long
[19:18:25] [PASSED] vf_rejects_guc2vf_no_payload
[19:18:25] ==================== [PASSED] vf_relay =====================
[19:18:25] ===================== lmtt (1 subtest) =====================
[19:18:25] ======================== test_ops =========================
[19:18:25] [PASSED] 2-level
[19:18:25] [PASSED] multi-level
[19:18:25] ==================== [PASSED] test_ops =====================
[19:18:25] ====================== [PASSED] lmtt =======================
[19:18:25] ================= pf_service (11 subtests) =================
[19:18:25] [PASSED] pf_negotiate_any
[19:18:25] [PASSED] pf_negotiate_base_match
[19:18:25] [PASSED] pf_negotiate_base_newer
[19:18:25] [PASSED] pf_negotiate_base_next
[19:18:25] [SKIPPED] pf_negotiate_base_older
[19:18:25] [PASSED] pf_negotiate_base_prev
[19:18:25] [PASSED] pf_negotiate_latest_match
[19:18:25] [PASSED] pf_negotiate_latest_newer
[19:18:25] [PASSED] pf_negotiate_latest_next
[19:18:25] [SKIPPED] pf_negotiate_latest_older
[19:18:25] [SKIPPED] pf_negotiate_latest_prev
[19:18:25] =================== [PASSED] pf_service ====================
[19:18:25] =================== xe_mocs (2 subtests) ===================
[19:18:25] ================ xe_live_mocs_kernel_kunit ================
[19:18:25] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:18:25] ================ xe_live_mocs_reset_kunit =================
[19:18:25] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:18:25] ==================== [SKIPPED] xe_mocs =====================
[19:18:25] ================= xe_migrate (2 subtests) ==================
[19:18:25] ================= xe_migrate_sanity_kunit =================
[19:18:25] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:18:25] ================== xe_validate_ccs_kunit ==================
[19:18:25] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:18:25] =================== [SKIPPED] xe_migrate ===================
[19:18:25] ================== xe_dma_buf (1 subtest) ==================
[19:18:25] ==================== xe_dma_buf_kunit =====================
[19:18:25] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:18:25] =================== [SKIPPED] xe_dma_buf ===================
[19:18:25] ================= xe_bo_shrink (1 subtest) =================
[19:18:25] =================== xe_bo_shrink_kunit ====================
[19:18:25] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:18:25] ================== [SKIPPED] xe_bo_shrink ==================
[19:18:25] ==================== xe_bo (2 subtests) ====================
[19:18:25] ================== xe_ccs_migrate_kunit ===================
[19:18:25] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:18:25] ==================== xe_bo_evict_kunit ====================
[19:18:25] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:18:25] ===================== [SKIPPED] xe_bo ======================
[19:18:25] ==================== args (11 subtests) ====================
[19:18:25] [PASSED] count_args_test
[19:18:25] [PASSED] call_args_example
[19:18:25] [PASSED] call_args_test
[19:18:25] [PASSED] drop_first_arg_example
[19:18:25] [PASSED] drop_first_arg_test
[19:18:25] [PASSED] first_arg_example
[19:18:25] [PASSED] first_arg_test
[19:18:25] [PASSED] last_arg_example
[19:18:25] [PASSED] last_arg_test
[19:18:25] [PASSED] pick_arg_example
[19:18:25] [PASSED] sep_comma_example
[19:18:25] ====================== [PASSED] args =======================
[19:18:25] =================== xe_pci (3 subtests) ====================
[19:18:25] ==================== check_graphics_ip ====================
[19:18:25] [PASSED] 12.70 Xe_LPG
[19:18:25] [PASSED] 12.71 Xe_LPG
[19:18:25] [PASSED] 12.74 Xe_LPG+
[19:18:25] [PASSED] 20.01 Xe2_HPG
[19:18:25] [PASSED] 20.02 Xe2_HPG
[19:18:25] [PASSED] 20.04 Xe2_LPG
[19:18:25] [PASSED] 30.00 Xe3_LPG
[19:18:25] [PASSED] 30.01 Xe3_LPG
[19:18:25] [PASSED] 30.03 Xe3_LPG
[19:18:25] ================ [PASSED] check_graphics_ip ================
[19:18:25] ===================== check_media_ip ======================
[19:18:25] [PASSED] 13.00 Xe_LPM+
[19:18:25] [PASSED] 13.01 Xe2_HPM
[19:18:25] [PASSED] 20.00 Xe2_LPM
[19:18:25] [PASSED] 30.00 Xe3_LPM
[19:18:25] [PASSED] 30.02 Xe3_LPM
[19:18:25] ================= [PASSED] check_media_ip ==================
[19:18:25] ================= check_platform_gt_count =================
[19:18:25] [PASSED] 0x9A60 (TIGERLAKE)
[19:18:25] [PASSED] 0x9A68 (TIGERLAKE)
[19:18:25] [PASSED] 0x9A70 (TIGERLAKE)
[19:18:25] [PASSED] 0x9A40 (TIGERLAKE)
[19:18:25] [PASSED] 0x9A49 (TIGERLAKE)
[19:18:25] [PASSED] 0x9A59 (TIGERLAKE)
[19:18:25] [PASSED] 0x9A78 (TIGERLAKE)
[19:18:25] [PASSED] 0x9AC0 (TIGERLAKE)
[19:18:25] [PASSED] 0x9AC9 (TIGERLAKE)
[19:18:25] [PASSED] 0x9AD9 (TIGERLAKE)
[19:18:25] [PASSED] 0x9AF8 (TIGERLAKE)
[19:18:25] [PASSED] 0x4C80 (ROCKETLAKE)
[19:18:25] [PASSED] 0x4C8A (ROCKETLAKE)
[19:18:25] [PASSED] 0x4C8B (ROCKETLAKE)
[19:18:25] [PASSED] 0x4C8C (ROCKETLAKE)
[19:18:25] [PASSED] 0x4C90 (ROCKETLAKE)
[19:18:25] [PASSED] 0x4C9A (ROCKETLAKE)
[19:18:25] [PASSED] 0x4680 (ALDERLAKE_S)
[19:18:25] [PASSED] 0x4682 (ALDERLAKE_S)
[19:18:25] [PASSED] 0x4688 (ALDERLAKE_S)
[19:18:25] [PASSED] 0x468A (ALDERLAKE_S)
[19:18:25] [PASSED] 0x468B (ALDERLAKE_S)
[19:18:25] [PASSED] 0x4690 (ALDERLAKE_S)
[19:18:25] [PASSED] 0x4692 (ALDERLAKE_S)
[19:18:25] [PASSED] 0x4693 (ALDERLAKE_S)
[19:18:25] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46AA (ALDERLAKE_P)
[19:18:25] [PASSED] 0x462A (ALDERLAKE_P)
[19:18:25] [PASSED] 0x4626 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x4628 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:18:25] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:18:25] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:18:25] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:18:25] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:18:25] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:18:25] [PASSED] 0xA721 (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA720 (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:18:25] [PASSED] 0xA780 (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA781 (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA782 (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA783 (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA788 (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA789 (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA78A (ALDERLAKE_S)
[19:18:25] [PASSED] 0xA78B (ALDERLAKE_S)
[19:18:25] [PASSED] 0x4905 (DG1)
[19:18:25] [PASSED] 0x4906 (DG1)
[19:18:25] [PASSED] 0x4907 (DG1)
[19:18:25] [PASSED] 0x4908 (DG1)
[19:18:25] [PASSED] 0x4909 (DG1)
[19:18:25] [PASSED] 0x56C0 (DG2)
[19:18:25] [PASSED] 0x56C2 (DG2)
[19:18:25] [PASSED] 0x56C1 (DG2)
[19:18:25] [PASSED] 0x7D51 (METEORLAKE)
[19:18:25] [PASSED] 0x7DD1 (METEORLAKE)
[19:18:25] [PASSED] 0x7D41 (METEORLAKE)
[19:18:25] [PASSED] 0x7D67 (METEORLAKE)
[19:18:25] [PASSED] 0xB640 (METEORLAKE)
[19:18:25] [PASSED] 0x56A0 (DG2)
[19:18:25] [PASSED] 0x56A1 (DG2)
[19:18:25] [PASSED] 0x56A2 (DG2)
[19:18:25] [PASSED] 0x56BE (DG2)
[19:18:25] [PASSED] 0x56BF (DG2)
[19:18:25] [PASSED] 0x5690 (DG2)
[19:18:25] [PASSED] 0x5691 (DG2)
[19:18:25] [PASSED] 0x5692 (DG2)
[19:18:25] [PASSED] 0x56A5 (DG2)
[19:18:25] [PASSED] 0x56A6 (DG2)
[19:18:25] [PASSED] 0x56B0 (DG2)
[19:18:25] [PASSED] 0x56B1 (DG2)
[19:18:25] [PASSED] 0x56BA (DG2)
[19:18:25] [PASSED] 0x56BB (DG2)
[19:18:25] [PASSED] 0x56BC (DG2)
[19:18:25] [PASSED] 0x56BD (DG2)
[19:18:25] [PASSED] 0x5693 (DG2)
[19:18:25] [PASSED] 0x5694 (DG2)
[19:18:25] [PASSED] 0x5695 (DG2)
[19:18:25] [PASSED] 0x56A3 (DG2)
[19:18:25] [PASSED] 0x56A4 (DG2)
[19:18:25] [PASSED] 0x56B2 (DG2)
[19:18:25] [PASSED] 0x56B3 (DG2)
[19:18:25] [PASSED] 0x5696 (DG2)
[19:18:25] [PASSED] 0x5697 (DG2)
[19:18:25] [PASSED] 0xB69 (PVC)
[19:18:25] [PASSED] 0xB6E (PVC)
[19:18:25] [PASSED] 0xBD4 (PVC)
[19:18:25] [PASSED] 0xBD5 (PVC)
[19:18:25] [PASSED] 0xBD6 (PVC)
[19:18:25] [PASSED] 0xBD7 (PVC)
[19:18:25] [PASSED] 0xBD8 (PVC)
[19:18:25] [PASSED] 0xBD9 (PVC)
[19:18:25] [PASSED] 0xBDA (PVC)
[19:18:25] [PASSED] 0xBDB (PVC)
[19:18:25] [PASSED] 0xBE0 (PVC)
[19:18:25] [PASSED] 0xBE1 (PVC)
[19:18:25] [PASSED] 0xBE5 (PVC)
[19:18:25] [PASSED] 0x7D40 (METEORLAKE)
[19:18:25] [PASSED] 0x7D45 (METEORLAKE)
[19:18:25] [PASSED] 0x7D55 (METEORLAKE)
[19:18:25] [PASSED] 0x7D60 (METEORLAKE)
[19:18:25] [PASSED] 0x7DD5 (METEORLAKE)
[19:18:25] [PASSED] 0x6420 (LUNARLAKE)
[19:18:25] [PASSED] 0x64A0 (LUNARLAKE)
[19:18:25] [PASSED] 0x64B0 (LUNARLAKE)
[19:18:25] [PASSED] 0xE202 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE209 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE20B (BATTLEMAGE)
[19:18:25] [PASSED] 0xE20C (BATTLEMAGE)
[19:18:25] [PASSED] 0xE20D (BATTLEMAGE)
[19:18:25] [PASSED] 0xE210 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE211 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE212 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE216 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE220 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE221 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE222 (BATTLEMAGE)
[19:18:25] [PASSED] 0xE223 (BATTLEMAGE)
[19:18:25] [PASSED] 0xB080 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB081 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB082 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB083 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB084 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB085 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB086 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB087 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB08F (PANTHERLAKE)
[19:18:25] [PASSED] 0xB090 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:18:25] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:18:25] [PASSED] 0xFD80 (PANTHERLAKE)
[19:18:25] [PASSED] 0xFD81 (PANTHERLAKE)
[19:18:25] ============= [PASSED] check_platform_gt_count =============
[19:18:25] ===================== [PASSED] xe_pci ======================
[19:18:25] =================== xe_rtp (2 subtests) ====================
[19:18:25] =============== xe_rtp_process_to_sr_tests ================
[19:18:25] [PASSED] coalesce-same-reg
[19:18:25] [PASSED] no-match-no-add
[19:18:25] [PASSED] match-or
[19:18:25] [PASSED] match-or-xfail
[19:18:25] [PASSED] no-match-no-add-multiple-rules
[19:18:25] [PASSED] two-regs-two-entries
[19:18:25] [PASSED] clr-one-set-other
[19:18:25] [PASSED] set-field
[19:18:25] [PASSED] conflict-duplicate
[19:18:25] [PASSED] conflict-not-disjoint
[19:18:25] [PASSED] conflict-reg-type
[19:18:25] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:18:25] ================== xe_rtp_process_tests ===================
[19:18:25] [PASSED] active1
[19:18:25] [PASSED] active2
[19:18:25] [PASSED] active-inactive
[19:18:25] [PASSED] inactive-active
[19:18:25] [PASSED] inactive-1st_or_active-inactive
[19:18:25] [PASSED] inactive-2nd_or_active-inactive
[19:18:25] [PASSED] inactive-last_or_active-inactive
[19:18:25] [PASSED] inactive-no_or_active-inactive
[19:18:25] ============== [PASSED] xe_rtp_process_tests ===============
[19:18:25] ===================== [PASSED] xe_rtp ======================
[19:18:25] ==================== xe_wa (1 subtest) =====================
[19:18:25] ======================== xe_wa_gt =========================
[19:18:25] [PASSED] TIGERLAKE (B0)
[19:18:25] [PASSED] DG1 (A0)
[19:18:25] [PASSED] DG1 (B0)
[19:18:25] [PASSED] ALDERLAKE_S (A0)
[19:18:25] [PASSED] ALDERLAKE_S (B0)
[19:18:25] [PASSED] ALDERLAKE_S (C0)
[19:18:25] [PASSED] ALDERLAKE_S (D0)
[19:18:25] [PASSED] ALDERLAKE_P (A0)
[19:18:25] [PASSED] ALDERLAKE_P (B0)
[19:18:25] [PASSED] ALDERLAKE_P (C0)
[19:18:25] [PASSED] ALDERLAKE_S_RPLS (D0)
[19:18:25] [PASSED] ALDERLAKE_P_RPLU (E0)
[19:18:25] [PASSED] DG2_G10 (C0)
[19:18:25] [PASSED] DG2_G11 (B1)
[19:18:25] [PASSED] DG2_G12 (A1)
[19:18:25] [PASSED] METEORLAKE (g:A0, m:A0)
[19:18:25] [PASSED] METEORLAKE (g:A0, m:A0)
[19:18:25] [PASSED] METEORLAKE (g:A0, m:A0)
[19:18:25] [PASSED] LUNARLAKE (g:A0, m:A0)
[19:18:25] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[19:18:25] [PASSED] BATTLEMAGE (g:A0, m:A1)
[19:18:25] [PASSED] PANTHERLAKE (g:A0, m:A0)
[19:18:25] ==================== [PASSED] xe_wa_gt =====================
[19:18:25] ====================== [PASSED] xe_wa ======================
[19:18:25] ============================================================
[19:18:25] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[19:18:25] Elapsed time: 33.335s total, 4.221s configuring, 28.747s building, 0.334s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:18:25] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:18:27] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:18:50] Starting KUnit Kernel (1/1)...
[19:18:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:18:50] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:18:50] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:18:50] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:18:50] =========== drm_validate_clone_mode (2 subtests) ===========
[19:18:50] ============== drm_test_check_in_clone_mode ===============
[19:18:50] [PASSED] in_clone_mode
[19:18:50] [PASSED] not_in_clone_mode
[19:18:50] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:18:50] =============== drm_test_check_valid_clones ===============
[19:18:50] [PASSED] not_in_clone_mode
[19:18:50] [PASSED] valid_clone
[19:18:50] [PASSED] invalid_clone
[19:18:50] =========== [PASSED] drm_test_check_valid_clones ===========
[19:18:50] ============= [PASSED] drm_validate_clone_mode =============
[19:18:50] ============= drm_validate_modeset (1 subtest) =============
[19:18:50] [PASSED] drm_test_check_connector_changed_modeset
[19:18:50] ============== [PASSED] drm_validate_modeset ===============
[19:18:50] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:18:50] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:18:50] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:18:50] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:18:50] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[19:18:50] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:18:50] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:18:50] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:18:50] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:18:50] ============== drm_bridge_alloc (2 subtests) ===============
[19:18:50] [PASSED] drm_test_drm_bridge_alloc_basic
[19:18:50] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:18:50] ================ [PASSED] drm_bridge_alloc =================
[19:18:50] ================== drm_buddy (7 subtests) ==================
[19:18:50] [PASSED] drm_test_buddy_alloc_limit
[19:18:50] [PASSED] drm_test_buddy_alloc_optimistic
[19:18:50] [PASSED] drm_test_buddy_alloc_pessimistic
[19:18:50] [PASSED] drm_test_buddy_alloc_pathological
[19:18:50] [PASSED] drm_test_buddy_alloc_contiguous
[19:18:50] [PASSED] drm_test_buddy_alloc_clear
[19:18:50] [PASSED] drm_test_buddy_alloc_range_bias
[19:18:50] ==================== [PASSED] drm_buddy ====================
[19:18:50] ============= drm_cmdline_parser (40 subtests) =============
[19:18:50] [PASSED] drm_test_cmdline_force_d_only
[19:18:50] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:18:50] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:18:50] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:18:50] [PASSED] drm_test_cmdline_force_e_only
[19:18:50] [PASSED] drm_test_cmdline_res
[19:18:50] [PASSED] drm_test_cmdline_res_vesa
[19:18:50] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:18:50] [PASSED] drm_test_cmdline_res_rblank
[19:18:50] [PASSED] drm_test_cmdline_res_bpp
[19:18:50] [PASSED] drm_test_cmdline_res_refresh
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:18:50] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:18:50] [PASSED] drm_test_cmdline_res_margins_force_on
[19:18:50] [PASSED] drm_test_cmdline_res_vesa_margins
[19:18:50] [PASSED] drm_test_cmdline_name
[19:18:50] [PASSED] drm_test_cmdline_name_bpp
[19:18:50] [PASSED] drm_test_cmdline_name_option
[19:18:50] [PASSED] drm_test_cmdline_name_bpp_option
[19:18:50] [PASSED] drm_test_cmdline_rotate_0
[19:18:50] [PASSED] drm_test_cmdline_rotate_90
[19:18:50] [PASSED] drm_test_cmdline_rotate_180
[19:18:50] [PASSED] drm_test_cmdline_rotate_270
[19:18:50] [PASSED] drm_test_cmdline_hmirror
[19:18:50] [PASSED] drm_test_cmdline_vmirror
[19:18:50] [PASSED] drm_test_cmdline_margin_options
[19:18:50] [PASSED] drm_test_cmdline_multiple_options
[19:18:50] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:18:50] [PASSED] drm_test_cmdline_extra_and_option
[19:18:50] [PASSED] drm_test_cmdline_freestanding_options
[19:18:50] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:18:50] [PASSED] drm_test_cmdline_panel_orientation
[19:18:50] ================ drm_test_cmdline_invalid =================
[19:18:50] [PASSED] margin_only
[19:18:50] [PASSED] interlace_only
[19:18:50] [PASSED] res_missing_x
[19:18:50] [PASSED] res_missing_y
[19:18:50] [PASSED] res_bad_y
[19:18:50] [PASSED] res_missing_y_bpp
[19:18:50] [PASSED] res_bad_bpp
[19:18:50] [PASSED] res_bad_refresh
[19:18:50] [PASSED] res_bpp_refresh_force_on_off
[19:18:50] [PASSED] res_invalid_mode
[19:18:50] [PASSED] res_bpp_wrong_place_mode
[19:18:50] [PASSED] name_bpp_refresh
[19:18:50] [PASSED] name_refresh
[19:18:50] [PASSED] name_refresh_wrong_mode
[19:18:50] [PASSED] name_refresh_invalid_mode
[19:18:50] [PASSED] rotate_multiple
[19:18:50] [PASSED] rotate_invalid_val
[19:18:50] [PASSED] rotate_truncated
[19:18:50] [PASSED] invalid_option
[19:18:50] [PASSED] invalid_tv_option
[19:18:50] [PASSED] truncated_tv_option
[19:18:50] ============ [PASSED] drm_test_cmdline_invalid =============
[19:18:50] =============== drm_test_cmdline_tv_options ===============
[19:18:50] [PASSED] NTSC
[19:18:50] [PASSED] NTSC_443
[19:18:50] [PASSED] NTSC_J
[19:18:50] [PASSED] PAL
[19:18:50] [PASSED] PAL_M
[19:18:50] [PASSED] PAL_N
[19:18:50] [PASSED] SECAM
[19:18:50] [PASSED] MONO_525
[19:18:50] [PASSED] MONO_625
[19:18:50] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:18:50] =============== [PASSED] drm_cmdline_parser ================
[19:18:50] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:18:50] [PASSED] drm_test_connector_hdmi_init_valid
[19:18:50] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:18:50] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:18:50] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:18:50] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:18:50] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:18:50] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:18:50] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:18:50] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:18:50] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:18:50] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:18:50] [PASSED] supported_formats=0x3 yuv420_allowed=1
[19:18:50] [PASSED] supported_formats=0x3 yuv420_allowed=0
[19:18:50] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:18:50] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:18:50] [PASSED] drm_test_connector_hdmi_init_null_product
[19:18:50] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:18:50] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:18:50] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:18:50] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:18:50] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:18:50] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:18:50] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:18:50] ========= drm_test_connector_hdmi_init_type_valid =========
[19:18:50] [PASSED] HDMI-A
[19:18:50] [PASSED] HDMI-B
[19:18:50] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:18:50] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:18:50] [PASSED] Unknown
[19:18:50] [PASSED] VGA
[19:18:50] [PASSED] DVI-I
[19:18:50] [PASSED] DVI-D
[19:18:50] [PASSED] DVI-A
[19:18:50] [PASSED] Composite
[19:18:50] [PASSED] SVIDEO
[19:18:50] [PASSED] LVDS
[19:18:50] [PASSED] Component
[19:18:50] [PASSED] DIN
[19:18:50] [PASSED] DP
[19:18:50] [PASSED] TV
[19:18:50] [PASSED] eDP
[19:18:50] [PASSED] Virtual
[19:18:50] [PASSED] DSI
[19:18:50] [PASSED] DPI
[19:18:50] [PASSED] Writeback
[19:18:50] [PASSED] SPI
[19:18:50] [PASSED] USB
[19:18:50] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:18:50] ============ [PASSED] drmm_connector_hdmi_init =============
[19:18:50] ============= drmm_connector_init (3 subtests) =============
[19:18:50] [PASSED] drm_test_drmm_connector_init
[19:18:50] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:18:50] ========= drm_test_drmm_connector_init_type_valid =========
[19:18:50] [PASSED] Unknown
[19:18:50] [PASSED] VGA
[19:18:50] [PASSED] DVI-I
[19:18:50] [PASSED] DVI-D
[19:18:50] [PASSED] DVI-A
[19:18:50] [PASSED] Composite
[19:18:50] [PASSED] SVIDEO
[19:18:50] [PASSED] LVDS
[19:18:50] [PASSED] Component
[19:18:50] [PASSED] DIN
[19:18:50] [PASSED] DP
[19:18:50] [PASSED] HDMI-A
[19:18:50] [PASSED] HDMI-B
[19:18:50] [PASSED] TV
[19:18:50] [PASSED] eDP
[19:18:50] [PASSED] Virtual
[19:18:50] [PASSED] DSI
[19:18:50] [PASSED] DPI
[19:18:50] [PASSED] Writeback
[19:18:50] [PASSED] SPI
[19:18:50] [PASSED] USB
[19:18:50] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:18:50] =============== [PASSED] drmm_connector_init ===============
[19:18:50] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_init
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:18:50] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:18:50] [PASSED] Unknown
[19:18:50] [PASSED] VGA
[19:18:50] [PASSED] DVI-I
[19:18:50] [PASSED] DVI-D
[19:18:50] [PASSED] DVI-A
[19:18:50] [PASSED] Composite
[19:18:50] [PASSED] SVIDEO
[19:18:50] [PASSED] LVDS
[19:18:50] [PASSED] Component
[19:18:50] [PASSED] DIN
[19:18:50] [PASSED] DP
[19:18:50] [PASSED] HDMI-A
[19:18:50] [PASSED] HDMI-B
[19:18:50] [PASSED] TV
[19:18:50] [PASSED] eDP
[19:18:50] [PASSED] Virtual
[19:18:50] [PASSED] DSI
[19:18:50] [PASSED] DPI
[19:18:50] [PASSED] Writeback
[19:18:50] [PASSED] SPI
[19:18:50] [PASSED] USB
[19:18:50] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:18:50] ======== drm_test_drm_connector_dynamic_init_name =========
[19:18:50] [PASSED] Unknown
[19:18:50] [PASSED] VGA
[19:18:50] [PASSED] DVI-I
[19:18:50] [PASSED] DVI-D
[19:18:50] [PASSED] DVI-A
[19:18:50] [PASSED] Composite
[19:18:50] [PASSED] SVIDEO
[19:18:50] [PASSED] LVDS
[19:18:50] [PASSED] Component
[19:18:50] [PASSED] DIN
[19:18:50] [PASSED] DP
[19:18:50] [PASSED] HDMI-A
[19:18:50] [PASSED] HDMI-B
[19:18:50] [PASSED] TV
[19:18:50] [PASSED] eDP
[19:18:50] [PASSED] Virtual
[19:18:50] [PASSED] DSI
[19:18:50] [PASSED] DPI
[19:18:50] [PASSED] Writeback
[19:18:50] [PASSED] SPI
[19:18:50] [PASSED] USB
[19:18:50] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:18:50] =========== [PASSED] drm_connector_dynamic_init ============
[19:18:50] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:18:50] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:18:50] ======= drm_connector_dynamic_register (7 subtests) ========
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:18:50] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:18:50] ========= [PASSED] drm_connector_dynamic_register ==========
[19:18:50] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:18:50] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:18:50] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:18:50] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:18:50] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:18:50] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:18:50] [PASSED] NTSC
[19:18:50] [PASSED] NTSC-443
[19:18:50] [PASSED] NTSC-J
[19:18:50] [PASSED] PAL
[19:18:50] [PASSED] PAL-M
[19:18:50] [PASSED] PAL-N
[19:18:50] [PASSED] SECAM
[19:18:50] [PASSED] Mono
[19:18:50] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:18:50] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:18:50] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:18:50] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:18:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:18:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:18:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:18:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:18:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:18:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:18:50] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:18:50] [PASSED] VIC 96
[19:18:50] [PASSED] VIC 97
[19:18:50] [PASSED] VIC 101
[19:18:50] [PASSED] VIC 102
[19:18:50] [PASSED] VIC 106
[19:18:50] [PASSED] VIC 107
[19:18:50] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:18:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:18:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:18:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:18:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:18:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:18:50] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:18:50] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:18:50] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:18:50] [PASSED] Automatic
[19:18:50] [PASSED] Full
[19:18:50] [PASSED] Limited 16:235
[19:18:50] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:18:50] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:18:50] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:18:50] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:18:50] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:18:50] [PASSED] RGB
[19:18:50] [PASSED] YUV 4:2:0
[19:18:50] [PASSED] YUV 4:2:2
[19:18:50] [PASSED] YUV 4:4:4
[19:18:50] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:18:50] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:18:50] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:18:50] ============= drm_damage_helper (21 subtests) ==============
[19:18:50] [PASSED] drm_test_damage_iter_no_damage
[19:18:50] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:18:50] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:18:50] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:18:50] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:18:50] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:18:50] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:18:50] [PASSED] drm_test_damage_iter_simple_damage
[19:18:50] [PASSED] drm_test_damage_iter_single_damage
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:18:50] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:18:50] [PASSED] drm_test_damage_iter_damage
[19:18:50] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:18:50] [PASSED] drm_test_damage_iter_damage_one_outside
[19:18:50] [PASSED] drm_test_damage_iter_damage_src_moved
[19:18:50] [PASSED] drm_test_damage_iter_damage_not_visible
[19:18:50] ================ [PASSED] drm_damage_helper ================
[19:18:50] ============== drm_dp_mst_helper (3 subtests) ==============
[19:18:50] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:18:50] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:18:50] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:18:50] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:18:50] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:18:50] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:18:50] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:18:50] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:18:50] [PASSED] Link rate 2000000 lane count 4
[19:18:50] [PASSED] Link rate 2000000 lane count 2
[19:18:50] [PASSED] Link rate 2000000 lane count 1
[19:18:50] [PASSED] Link rate 1350000 lane count 4
[19:18:50] [PASSED] Link rate 1350000 lane count 2
[19:18:50] [PASSED] Link rate 1350000 lane count 1
[19:18:50] [PASSED] Link rate 1000000 lane count 4
[19:18:50] [PASSED] Link rate 1000000 lane count 2
[19:18:50] [PASSED] Link rate 1000000 lane count 1
[19:18:50] [PASSED] Link rate 810000 lane count 4
[19:18:50] [PASSED] Link rate 810000 lane count 2
[19:18:50] [PASSED] Link rate 810000 lane count 1
[19:18:50] [PASSED] Link rate 540000 lane count 4
[19:18:50] [PASSED] Link rate 540000 lane count 2
[19:18:50] [PASSED] Link rate 540000 lane count 1
[19:18:50] [PASSED] Link rate 270000 lane count 4
[19:18:50] [PASSED] Link rate 270000 lane count 2
[19:18:50] [PASSED] Link rate 270000 lane count 1
[19:18:50] [PASSED] Link rate 162000 lane count 4
[19:18:50] [PASSED] Link rate 162000 lane count 2
[19:18:50] [PASSED] Link rate 162000 lane count 1
[19:18:50] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:18:50] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:18:50] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:18:50] [PASSED] DP_POWER_UP_PHY with port number
[19:18:50] [PASSED] DP_POWER_DOWN_PHY with port number
[19:18:50] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:18:50] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:18:50] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:18:50] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:18:50] [PASSED] DP_QUERY_PAYLOAD with port number
[19:18:50] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:18:50] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:18:50] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:18:50] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:18:50] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:18:50] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:18:50] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:18:50] [PASSED] DP_REMOTE_I2C_READ with port number
[19:18:50] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:18:50] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:18:50] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:18:50] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:18:50] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:18:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:18:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:18:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:18:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:18:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:18:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:18:50] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:18:50] ================ [PASSED] drm_dp_mst_helper ================
[19:18:50] ================== drm_exec (7 subtests) ===================
[19:18:50] [PASSED] sanitycheck
[19:18:50] [PASSED] test_lock
[19:18:50] [PASSED] test_lock_unlock
[19:18:50] [PASSED] test_duplicates
[19:18:50] [PASSED] test_prepare
[19:18:50] [PASSED] test_prepare_array
[19:18:50] [PASSED] test_multiple_loops
[19:18:50] ==================== [PASSED] drm_exec =====================
[19:18:50] =========== drm_format_helper_test (17 subtests) ===========
[19:18:50] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:18:50] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:18:50] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:18:50] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:18:50] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:18:50] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:18:50] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:18:50] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:18:50] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:18:50] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:18:50] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:18:50] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:18:50] ==================== drm_test_fb_swab =====================
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ================ [PASSED] drm_test_fb_swab =================
[19:18:50] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:18:50] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:18:50] [PASSED] single_pixel_source_buffer
[19:18:50] [PASSED] single_pixel_clip_rectangle
[19:18:50] [PASSED] well_known_colors
[19:18:50] [PASSED] destination_pitch
[19:18:50] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:18:50] ================= drm_test_fb_clip_offset =================
[19:18:50] [PASSED] pass through
[19:18:50] [PASSED] horizontal offset
[19:18:50] [PASSED] vertical offset
[19:18:50] [PASSED] horizontal and vertical offset
[19:18:50] [PASSED] horizontal offset (custom pitch)
[19:18:50] [PASSED] vertical offset (custom pitch)
[19:18:50] [PASSED] horizontal and vertical offset (custom pitch)
[19:18:50] ============= [PASSED] drm_test_fb_clip_offset =============
[19:18:50] =================== drm_test_fb_memcpy ====================
[19:18:50] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:18:50] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:18:50] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:18:50] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:18:50] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:18:50] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:18:50] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:18:50] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:18:50] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:18:50] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:18:50] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:18:50] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:18:50] =============== [PASSED] drm_test_fb_memcpy ================
[19:18:50] ============= [PASSED] drm_format_helper_test ==============
[19:18:50] ================= drm_format (18 subtests) =================
[19:18:50] [PASSED] drm_test_format_block_width_invalid
[19:18:50] [PASSED] drm_test_format_block_width_one_plane
[19:18:50] [PASSED] drm_test_format_block_width_two_plane
[19:18:50] [PASSED] drm_test_format_block_width_three_plane
[19:18:50] [PASSED] drm_test_format_block_width_tiled
[19:18:50] [PASSED] drm_test_format_block_height_invalid
[19:18:50] [PASSED] drm_test_format_block_height_one_plane
[19:18:50] [PASSED] drm_test_format_block_height_two_plane
[19:18:50] [PASSED] drm_test_format_block_height_three_plane
[19:18:50] [PASSED] drm_test_format_block_height_tiled
[19:18:50] [PASSED] drm_test_format_min_pitch_invalid
[19:18:50] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:18:50] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:18:50] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:18:50] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:18:50] [PASSED] drm_test_format_min_pitch_two_plane
[19:18:50] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:18:50] [PASSED] drm_test_format_min_pitch_tiled
[19:18:50] =================== [PASSED] drm_format ====================
[19:18:50] ============== drm_framebuffer (10 subtests) ===============
[19:18:50] ========== drm_test_framebuffer_check_src_coords ==========
[19:18:50] [PASSED] Success: source fits into fb
[19:18:50] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:18:50] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:18:50] [PASSED] Fail: overflowing fb with source width
[19:18:50] [PASSED] Fail: overflowing fb with source height
[19:18:50] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:18:50] [PASSED] drm_test_framebuffer_cleanup
[19:18:50] =============== drm_test_framebuffer_create ===============
[19:18:50] [PASSED] ABGR8888 normal sizes
[19:18:50] [PASSED] ABGR8888 max sizes
[19:18:50] [PASSED] ABGR8888 pitch greater than min required
[19:18:50] [PASSED] ABGR8888 pitch less than min required
[19:18:50] [PASSED] ABGR8888 Invalid width
[19:18:50] [PASSED] ABGR8888 Invalid buffer handle
[19:18:50] [PASSED] No pixel format
[19:18:50] [PASSED] ABGR8888 Width 0
[19:18:50] [PASSED] ABGR8888 Height 0
[19:18:50] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:18:50] [PASSED] ABGR8888 Large buffer offset
[19:18:50] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:18:50] [PASSED] ABGR8888 Invalid flag
[19:18:50] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:18:50] [PASSED] ABGR8888 Valid buffer modifier
[19:18:50] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:18:50] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] NV12 Normal sizes
[19:18:50] [PASSED] NV12 Max sizes
[19:18:50] [PASSED] NV12 Invalid pitch
[19:18:50] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:18:50] [PASSED] NV12 different modifier per-plane
[19:18:50] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:18:50] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] NV12 Modifier for inexistent plane
[19:18:50] [PASSED] NV12 Handle for inexistent plane
[19:18:50] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:18:50] [PASSED] YVU420 Normal sizes
[19:18:50] [PASSED] YVU420 Max sizes
[19:18:50] [PASSED] YVU420 Invalid pitch
[19:18:50] [PASSED] YVU420 Different pitches
[19:18:50] [PASSED] YVU420 Different buffer offsets/pitches
[19:18:50] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:18:50] [PASSED] YVU420 Valid modifier
[19:18:50] [PASSED] YVU420 Different modifiers per plane
[19:18:50] [PASSED] YVU420 Modifier for inexistent plane
[19:18:50] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:18:50] [PASSED] X0L2 Normal sizes
[19:18:50] [PASSED] X0L2 Max sizes
[19:18:50] [PASSED] X0L2 Invalid pitch
[19:18:50] [PASSED] X0L2 Pitch greater than minimum required
[19:18:50] [PASSED] X0L2 Handle for inexistent plane
[19:18:50] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:18:50] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:18:50] [PASSED] X0L2 Valid modifier
[19:18:50] [PASSED] X0L2 Modifier for inexistent plane
[19:18:50] =========== [PASSED] drm_test_framebuffer_create ===========
[19:18:50] [PASSED] drm_test_framebuffer_free
[19:18:50] [PASSED] drm_test_framebuffer_init
[19:18:50] [PASSED] drm_test_framebuffer_init_bad_format
[19:18:50] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:18:50] [PASSED] drm_test_framebuffer_lookup
[19:18:50] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:18:50] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:18:50] ================= [PASSED] drm_framebuffer =================
[19:18:50] ================ drm_gem_shmem (8 subtests) ================
[19:18:50] [PASSED] drm_gem_shmem_test_obj_create
[19:18:50] [PASSED] drm_gem_shmem_test_obj_create_private
[19:18:50] [PASSED] drm_gem_shmem_test_pin_pages
[19:18:50] [PASSED] drm_gem_shmem_test_vmap
[19:18:50] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:18:50] [PASSED] drm_gem_shmem_test_get_sg_table
[19:18:50] [PASSED] drm_gem_shmem_test_madvise
[19:18:50] [PASSED] drm_gem_shmem_test_purge
[19:18:50] ================== [PASSED] drm_gem_shmem ==================
[19:18:50] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:18:50] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:18:50] [PASSED] Automatic
[19:18:50] [PASSED] Full
[19:18:50] [PASSED] Limited 16:235
[19:18:50] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:18:50] [PASSED] drm_test_check_disable_connector
[19:18:50] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:18:50] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:18:50] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:18:50] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:18:50] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:18:50] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:18:50] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:18:50] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:18:50] [PASSED] drm_test_check_output_bpc_dvi
[19:18:50] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:18:50] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:18:50] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:18:50] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:18:50] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:18:50] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:18:50] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:18:50] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:18:50] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:18:50] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:18:50] [PASSED] drm_test_check_broadcast_rgb_value
[19:18:50] [PASSED] drm_test_check_bpc_8_value
[19:18:50] [PASSED] drm_test_check_bpc_10_value
[19:18:50] [PASSED] drm_test_check_bpc_12_value
[19:18:50] [PASSED] drm_test_check_format_value
[19:18:50] [PASSED] drm_test_check_tmds_char_value
[19:18:50] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:18:50] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[19:18:50] [PASSED] drm_test_check_mode_valid
[19:18:50] [PASSED] drm_test_check_mode_valid_reject
[19:18:50] [PASSED] drm_test_check_mode_valid_reject_rate
[19:18:50] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:18:50] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:18:50] ================= drm_managed (2 subtests) =================
[19:18:50] [PASSED] drm_test_managed_release_action
[19:18:50] [PASSED] drm_test_managed_run_action
[19:18:50] =================== [PASSED] drm_managed ===================
[19:18:50] =================== drm_mm (6 subtests) ====================
[19:18:50] [PASSED] drm_test_mm_init
[19:18:50] [PASSED] drm_test_mm_debug
[19:18:50] [PASSED] drm_test_mm_align32
[19:18:50] [PASSED] drm_test_mm_align64
[19:18:50] [PASSED] drm_test_mm_lowest
[19:18:50] [PASSED] drm_test_mm_highest
[19:18:50] ===================== [PASSED] drm_mm ======================
[19:18:50] ============= drm_modes_analog_tv (5 subtests) =============
[19:18:50] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:18:50] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:18:50] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:18:50] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:18:50] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:18:50] =============== [PASSED] drm_modes_analog_tv ===============
[19:18:50] ============== drm_plane_helper (2 subtests) ===============
[19:18:50] =============== drm_test_check_plane_state ================
[19:18:50] [PASSED] clipping_simple
[19:18:50] [PASSED] clipping_rotate_reflect
[19:18:50] [PASSED] positioning_simple
[19:18:50] [PASSED] upscaling
[19:18:50] [PASSED] downscaling
[19:18:50] [PASSED] rounding1
[19:18:50] [PASSED] rounding2
[19:18:50] [PASSED] rounding3
[19:18:50] [PASSED] rounding4
[19:18:50] =========== [PASSED] drm_test_check_plane_state ============
[19:18:50] =========== drm_test_check_invalid_plane_state ============
[19:18:50] [PASSED] positioning_invalid
[19:18:50] [PASSED] upscaling_invalid
[19:18:50] [PASSED] downscaling_invalid
[19:18:50] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:18:50] ================ [PASSED] drm_plane_helper =================
[19:18:50] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:18:50] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:18:50] [PASSED] None
[19:18:50] [PASSED] PAL
[19:18:50] [PASSED] NTSC
[19:18:50] [PASSED] Both, NTSC Default
[19:18:50] [PASSED] Both, PAL Default
[19:18:50] [PASSED] Both, NTSC Default, with PAL on command-line
[19:18:50] [PASSED] Both, PAL Default, with NTSC on command-line
[19:18:50] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:18:50] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:18:50] ================== drm_rect (9 subtests) ===================
[19:18:50] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:18:50] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:18:50] [PASSED] drm_test_rect_clip_scaled_clipped
[19:18:50] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:18:50] ================= drm_test_rect_intersect =================
[19:18:50] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:18:50] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:18:50] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:18:50] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:18:50] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:18:50] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:18:50] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:18:50] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:18:50] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:18:50] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:18:50] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:18:50] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:18:50] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:18:50] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:18:50] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:18:50] ============= [PASSED] drm_test_rect_intersect =============
[19:18:50] ================ drm_test_rect_calc_hscale ================
[19:18:50] [PASSED] normal use
[19:18:50] [PASSED] out of max range
[19:18:50] [PASSED] out of min range
[19:18:50] [PASSED] zero dst
[19:18:50] [PASSED] negative src
[19:18:50] [PASSED] negative dst
[19:18:50] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:18:50] ================ drm_test_rect_calc_vscale ================
[19:18:50] [PASSED] normal use
[19:18:50] [PASSED] out of max range
[19:18:50] [PASSED] out of min range
[19:18:50] [PASSED] zero dst
[19:18:50] [PASSED] negative src
[19:18:50] [PASSED] negative dst
[19:18:50] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:18:50] ================== drm_test_rect_rotate ===================
[19:18:50] [PASSED] reflect-x
[19:18:50] [PASSED] reflect-y
[19:18:50] [PASSED] rotate-0
[19:18:50] [PASSED] rotate-90
[19:18:50] [PASSED] rotate-180
[19:18:50] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[19:18:50] ============== [PASSED] drm_test_rect_rotate ===============
[19:18:50] ================ drm_test_rect_rotate_inv =================
[19:18:50] [PASSED] reflect-x
[19:18:50] [PASSED] reflect-y
[19:18:50] [PASSED] rotate-0
[19:18:50] [PASSED] rotate-90
[19:18:50] [PASSED] rotate-180
[19:18:50] [PASSED] rotate-270
[19:18:50] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:18:50] ==================== [PASSED] drm_rect =====================
[19:18:50] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:18:50] ============ drm_test_sysfb_build_fourcc_list =============
[19:18:50] [PASSED] no native formats
[19:18:50] [PASSED] XRGB8888 as native format
[19:18:50] [PASSED] remove duplicates
[19:18:50] [PASSED] convert alpha formats
[19:18:50] [PASSED] random formats
[19:18:50] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:18:50] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:18:50] ============================================================
[19:18:50] Testing complete. Ran 616 tests: passed: 616
[19:18:50] Elapsed time: 24.785s total, 1.739s configuring, 22.879s building, 0.148s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:18:50] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:18:52] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:19:00] Starting KUnit Kernel (1/1)...
[19:19:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:19:00] ================= ttm_device (5 subtests) ==================
[19:19:00] [PASSED] ttm_device_init_basic
[19:19:00] [PASSED] ttm_device_init_multiple
[19:19:00] [PASSED] ttm_device_fini_basic
[19:19:00] [PASSED] ttm_device_init_no_vma_man
[19:19:00] ================== ttm_device_init_pools ==================
[19:19:00] [PASSED] No DMA allocations, no DMA32 required
[19:19:00] [PASSED] DMA allocations, DMA32 required
[19:19:00] [PASSED] No DMA allocations, DMA32 required
[19:19:00] [PASSED] DMA allocations, no DMA32 required
[19:19:00] ============== [PASSED] ttm_device_init_pools ==============
[19:19:00] =================== [PASSED] ttm_device ====================
[19:19:00] ================== ttm_pool (8 subtests) ===================
[19:19:00] ================== ttm_pool_alloc_basic ===================
[19:19:00] [PASSED] One page
[19:19:00] [PASSED] More than one page
[19:19:00] [PASSED] Above the allocation limit
[19:19:00] [PASSED] One page, with coherent DMA mappings enabled
[19:19:00] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:19:00] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:19:00] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:19:00] [PASSED] One page
[19:19:00] [PASSED] More than one page
[19:19:00] [PASSED] Above the allocation limit
[19:19:00] [PASSED] One page, with coherent DMA mappings enabled
[19:19:00] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:19:00] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:19:00] [PASSED] ttm_pool_alloc_order_caching_match
[19:19:00] [PASSED] ttm_pool_alloc_caching_mismatch
[19:19:00] [PASSED] ttm_pool_alloc_order_mismatch
[19:19:00] [PASSED] ttm_pool_free_dma_alloc
[19:19:00] [PASSED] ttm_pool_free_no_dma_alloc
[19:19:00] [PASSED] ttm_pool_fini_basic
[19:19:00] ==================== [PASSED] ttm_pool =====================
[19:19:00] ================ ttm_resource (8 subtests) =================
[19:19:00] ================= ttm_resource_init_basic =================
[19:19:00] [PASSED] Init resource in TTM_PL_SYSTEM
[19:19:00] [PASSED] Init resource in TTM_PL_VRAM
[19:19:00] [PASSED] Init resource in a private placement
[19:19:00] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:19:00] ============= [PASSED] ttm_resource_init_basic =============
[19:19:00] [PASSED] ttm_resource_init_pinned
[19:19:00] [PASSED] ttm_resource_fini_basic
[19:19:00] [PASSED] ttm_resource_manager_init_basic
[19:19:00] [PASSED] ttm_resource_manager_usage_basic
[19:19:00] [PASSED] ttm_resource_manager_set_used_basic
[19:19:00] [PASSED] ttm_sys_man_alloc_basic
[19:19:00] [PASSED] ttm_sys_man_free_basic
[19:19:00] ================== [PASSED] ttm_resource ===================
[19:19:00] =================== ttm_tt (15 subtests) ===================
[19:19:00] ==================== ttm_tt_init_basic ====================
[19:19:00] [PASSED] Page-aligned size
[19:19:00] [PASSED] Extra pages requested
[19:19:00] ================ [PASSED] ttm_tt_init_basic ================
[19:19:00] [PASSED] ttm_tt_init_misaligned
[19:19:00] [PASSED] ttm_tt_fini_basic
[19:19:00] [PASSED] ttm_tt_fini_sg
[19:19:00] [PASSED] ttm_tt_fini_shmem
[19:19:00] [PASSED] ttm_tt_create_basic
[19:19:00] [PASSED] ttm_tt_create_invalid_bo_type
[19:19:00] [PASSED] ttm_tt_create_ttm_exists
[19:19:00] [PASSED] ttm_tt_create_failed
[19:19:00] [PASSED] ttm_tt_destroy_basic
[19:19:00] [PASSED] ttm_tt_populate_null_ttm
[19:19:00] [PASSED] ttm_tt_populate_populated_ttm
[19:19:00] [PASSED] ttm_tt_unpopulate_basic
[19:19:00] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:19:00] [PASSED] ttm_tt_swapin_basic
[19:19:00] ===================== [PASSED] ttm_tt ======================
[19:19:00] =================== ttm_bo (14 subtests) ===================
[19:19:00] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:19:00] [PASSED] Cannot be interrupted and sleeps
[19:19:00] [PASSED] Cannot be interrupted, locks straight away
[19:19:00] [PASSED] Can be interrupted, sleeps
[19:19:00] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:19:00] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:19:00] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:19:00] [PASSED] ttm_bo_reserve_double_resv
[19:19:00] [PASSED] ttm_bo_reserve_interrupted
[19:19:00] [PASSED] ttm_bo_reserve_deadlock
[19:19:00] [PASSED] ttm_bo_unreserve_basic
[19:19:00] [PASSED] ttm_bo_unreserve_pinned
[19:19:00] [PASSED] ttm_bo_unreserve_bulk
[19:19:00] [PASSED] ttm_bo_put_basic
[19:19:00] [PASSED] ttm_bo_put_shared_resv
[19:19:00] [PASSED] ttm_bo_pin_basic
[19:19:00] [PASSED] ttm_bo_pin_unpin_resource
[19:19:00] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:19:00] ===================== [PASSED] ttm_bo ======================
[19:19:00] ============== ttm_bo_validate (21 subtests) ===============
[19:19:00] ============== ttm_bo_init_reserved_sys_man ===============
[19:19:00] [PASSED] Buffer object for userspace
[19:19:00] [PASSED] Kernel buffer object
[19:19:00] [PASSED] Shared buffer object
[19:19:00] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:19:00] ============== ttm_bo_init_reserved_mock_man ==============
[19:19:00] [PASSED] Buffer object for userspace
[19:19:00] [PASSED] Kernel buffer object
[19:19:00] [PASSED] Shared buffer object
[19:19:00] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:19:00] [PASSED] ttm_bo_init_reserved_resv
[19:19:00] ================== ttm_bo_validate_basic ==================
[19:19:00] [PASSED] Buffer object for userspace
[19:19:00] [PASSED] Kernel buffer object
[19:19:00] [PASSED] Shared buffer object
[19:19:00] ============== [PASSED] ttm_bo_validate_basic ==============
[19:19:00] [PASSED] ttm_bo_validate_invalid_placement
[19:19:00] ============= ttm_bo_validate_same_placement ==============
[19:19:00] [PASSED] System manager
[19:19:00] [PASSED] VRAM manager
[19:19:00] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:19:00] [PASSED] ttm_bo_validate_failed_alloc
[19:19:00] [PASSED] ttm_bo_validate_pinned
[19:19:00] [PASSED] ttm_bo_validate_busy_placement
[19:19:00] ================ ttm_bo_validate_multihop =================
[19:19:00] [PASSED] Buffer object for userspace
[19:19:00] [PASSED] Kernel buffer object
[19:19:00] [PASSED] Shared buffer object
[19:19:00] ============ [PASSED] ttm_bo_validate_multihop =============
[19:19:00] ========== ttm_bo_validate_no_placement_signaled ==========
[19:19:00] [PASSED] Buffer object in system domain, no page vector
[19:19:00] [PASSED] Buffer object in system domain with an existing page vector
[19:19:00] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:19:00] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:19:00] [PASSED] Buffer object for userspace
[19:19:00] [PASSED] Kernel buffer object
[19:19:00] [PASSED] Shared buffer object
[19:19:00] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:19:00] [PASSED] ttm_bo_validate_move_fence_signaled
[19:19:00] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:19:00] [PASSED] Waits for GPU
[19:19:00] [PASSED] Tries to lock straight away
[19:19:00] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:19:00] [PASSED] ttm_bo_validate_happy_evict
[19:19:00] [PASSED] ttm_bo_validate_all_pinned_evict
[19:19:00] [PASSED] ttm_bo_validate_allowed_only_evict
[19:19:00] [PASSED] ttm_bo_validate_deleted_evict
[19:19:00] [PASSED] ttm_bo_validate_busy_domain_evict
[19:19:00] [PASSED] ttm_bo_validate_evict_gutting
[19:19:00] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[19:19:00] ================= [PASSED] ttm_bo_validate =================
[19:19:00] ============================================================
[19:19:00] Testing complete. Ran 101 tests: passed: 101
[19:19:00] Elapsed time: 9.944s total, 1.751s configuring, 7.977s building, 0.177s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 22+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/guc: Add LFD format output for guc log (rev7)
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (7 preceding siblings ...)
2025-08-28 19:19 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-28 19:56 ` Patchwork
2025-08-29 3:03 ` ✗ Xe.CI.Full: failure " Patchwork
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-28 19:56 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2222 bytes --]
== Series Details ==
Series: drm/xe/guc: Add LFD format output for guc log (rev7)
URL : https://patchwork.freedesktop.org/series/146541/
State : success
== Summary ==
CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_BAT -> xe-pw-146541v7_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-146541v7_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@d-edp1:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
* igt@xe_vm@bind-execqueues-independent:
- {bat-ptl-1}: [FAIL][3] ([Intel XE#5783]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* IGT: IGT_8512 -> IGT_8513
* Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-146541v7
IGT_8512: 8512
IGT_8513: 6540636111c1c01271f55abcc18c775426d4a18f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
xe-pw-146541v7: 146541v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/index.html
[-- Attachment #2: Type: text/html, Size: 2845 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe/guc: Add LFD format output for guc log (rev7)
2025-08-28 17:41 [PATCH v7 0/6] drm/xe/guc: Add LFD format output for guc log Zhanjun Dong
` (8 preceding siblings ...)
2025-08-28 19:56 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-29 3:03 ` Patchwork
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-29 3:03 UTC (permalink / raw)
To: Dong, Zhanjun; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 148755 bytes --]
== Series Details ==
Series: drm/xe/guc: Add LFD format output for guc log (rev7)
URL : https://patchwork.freedesktop.org/series/146541/
State : failure
== Summary ==
CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_FULL -> xe-pw-146541v7_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-146541v7_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-146541v7_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-146541v7_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
#### Warnings ####
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: [SKIP][4] ([Intel XE#5103]) -> [SKIP][5] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@xe_oa@mmio-triggered-reports-read.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-8/igt@xe_oa@mmio-triggered-reports-read.html
- shard-dg2-set2: [SKIP][6] ([Intel XE#5103]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_oa@mmio-triggered-reports-read.html
Known issues
------------
Here are the changes found in xe-pw-146541v7_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@unused-pitches:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#4208] / [i915#2575]) +21 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_addfb_basic@unused-pitches.html
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-1/igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-6/igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#4208] / [i915#2575]) +85 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_atomic@plane-invalid-params-fence.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3279])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][14] ([Intel XE#3908]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#2351] / [Intel XE#4208]) +11 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [DMESG-FAIL][21] ([Intel XE#4543])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#316])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#619])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1467])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2328]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#607])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#2191])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2191])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#787]) +14 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +16 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][41] ([Intel XE#3862])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3432])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3432])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#2907])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2669]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#787]) +174 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][48] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2724]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#4417]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#4416]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2325]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#306]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#306])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#373]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#373]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-9/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2252]) +10 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#373]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][60] ([Intel XE#1178])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][61] ([Intel XE#1178]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2341])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#1188])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2321])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#455]) +13 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1424])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#308])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2291])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#309]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#309]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2291]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@single-bo:
- shard-bmg: NOTRUN -> [DMESG-WARN][74] ([Intel XE#5354]) +1 other test dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@kms_cursor_legacy@single-bo.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1340])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4354])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4354])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#4354])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-1/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4354])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2373])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#310]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1421]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#2316]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2316]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [PASS][87] -> [DMESG-WARN][88] ([Intel XE#4543] / [Intel XE#5208])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-4/igt@kms_flip@flip-vs-rmfb.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-9/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#4543]) +6 other tests dmesg-warn
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#4208]) +195 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#455]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1397]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: [PASS][100] -> [DMESG-FAIL][101] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2311]) +29 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#651]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#651]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-adlp: [PASS][106] -> [DMESG-FAIL][107] ([Intel XE#4543]) +10 other tests dmesg-fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#5390]) +13 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2312]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#656]) +18 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#653]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#653]) +13 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2313]) +35 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#656]) +9 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][116] -> [SKIP][117] ([Intel XE#1503])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4329])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#4359])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][120] -> [FAIL][121] ([Intel XE#616]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_plane_cursor@viewport.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#599])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_plane_lowres@tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2393])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4596])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#5020])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][127] -> [FAIL][128] ([Intel XE#718])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1406] / [Intel XE#2893])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1406]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1406] / [Intel XE#4609])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1406] / [Intel XE#4208]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@pr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-suspend:
- shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-8/igt@kms_psr@psr2-suspend.html
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#3414] / [Intel XE#3904])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2413]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1435])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1435])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][147] -> [FAIL][148] ([Intel XE#4227]) +1 other test fail
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@kms_vrr@flipline.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1499]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_ccs@ctrl-surf-copy-new-ctx:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-6/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [FAIL][151] ([Intel XE#5794])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#4837]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#4837]) +15 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug@vm-bind-clear:
- shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-9/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#4518])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#5793])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#688])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) +10 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1392]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [PASS][160] -> [SKIP][161] ([Intel XE#1392]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-adlp: NOTRUN -> [SKIP][163] ([Intel XE#288] / [Intel XE#5561]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#288]) +13 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2360])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#4837]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#4208]) +105 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#4915]) +123 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#4943]) +9 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-adlp: NOTRUN -> [SKIP][170] ([Intel XE#4915]) +66 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#4943]) +19 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196]) -> ([PASS][197], [SKIP][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222]) ([Intel XE#378])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-1/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-8/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-3/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244]) -> ([PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [SKIP][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270]) ([Intel XE#2457])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-1/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-1/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295]) -> ([SKIP][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321]) ([Intel XE#378])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [PASS][322] -> [FAIL][323] ([Intel XE#4208]) +2 other tests fail
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@many-reload.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-dg2-set2: NOTRUN -> [FAIL][324] ([Intel XE#4208])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_module_load@reload.html
* igt@xe_oa@buffer-fill:
- shard-adlp: NOTRUN -> [SKIP][325] ([Intel XE#3573]) +2 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-3/igt@xe_oa@buffer-fill.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][326] ([Intel XE#3573]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][327] ([Intel XE#584])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-7/igt@xe_pm@s3-mocs.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][328] ([Intel XE#4733]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][329] ([Intel XE#4733]) +3 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][330] ([Intel XE#4130])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-4/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-lnl: NOTRUN -> [SKIP][331] ([Intel XE#4351])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-2/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-dg2-set2: [SKIP][332] ([Intel XE#2134]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@fbdev@pan.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@fbdev@pan.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
- shard-adlp: [DMESG-WARN][334] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][335] +3 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][336] ([Intel XE#911]) -> [PASS][337] +3 other tests pass
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][338] ([Intel XE#3884]) -> [PASS][339] +1 other test pass
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][340] ([Intel XE#4543]) -> [PASS][341] +9 other tests pass
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][342] ([Intel XE#3862]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][344] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][346] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][348] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][350] ([Intel XE#3124]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][352] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][354] ([Intel XE#2291]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [SKIP][356] ([Intel XE#4208] / [i915#2575]) -> [PASS][357] +100 other tests pass
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][358] ([Intel XE#5354]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [SKIP][360] ([Intel XE#2316]) -> [PASS][361] +2 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][362] ([Intel XE#301]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][364] ([Intel XE#4543]) -> [PASS][365] +11 other tests pass
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: [SKIP][366] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][367] +14 other tests pass
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][368] ([Intel XE#1503]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][370] ([Intel XE#1435]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: [SKIP][372] ([Intel XE#4208]) -> [PASS][373] +209 other tests pass
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [SKIP][374] ([Intel XE#1392]) -> [PASS][375] +3 other tests pass
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [DMESG-WARN][376] ([Intel XE#3876]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_exec_reset@parallel-gt-reset.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@xe_exec_reset@parallel-gt-reset.html
* {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
- shard-bmg: [WARN][378] ([Intel XE#5786]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_pmu@engine-activity-idle:
- shard-bmg: [DMESG-WARN][380] ([Intel XE#5213]) -> [PASS][381] +1 other test pass
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_pmu@engine-activity-idle.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-2/igt@xe_pmu@engine-activity-idle.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][382] -> [PASS][383] +2 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][384] ([Intel XE#316]) -> [SKIP][385] ([Intel XE#2351] / [Intel XE#4208])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][386] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][387] ([Intel XE#316]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][388] ([Intel XE#4208]) -> [SKIP][389] ([Intel XE#316])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][390] ([Intel XE#316]) -> [SKIP][391] ([Intel XE#4208]) +2 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][392] ([Intel XE#1124]) -> [SKIP][393] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][394] ([Intel XE#4208]) -> [SKIP][395] ([Intel XE#1124]) +7 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][396] ([Intel XE#1124]) -> [SKIP][397] ([Intel XE#4208]) +6 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][398] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][399] ([Intel XE#1124]) +3 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][400] ([Intel XE#2191]) -> [SKIP][401] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][402] ([Intel XE#4208] / [i915#2575]) -> [SKIP][403] ([Intel XE#2191]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][404] ([Intel XE#4208] / [i915#2575]) -> [SKIP][405] ([Intel XE#367]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][406] ([Intel XE#367]) -> [SKIP][407] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][408] ([Intel XE#4208]) -> [SKIP][409] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2907]) -> [SKIP][411] ([Intel XE#4208])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][412] ([Intel XE#4208]) -> [SKIP][413] ([Intel XE#2907])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][414] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][415] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][417] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][418] ([Intel XE#4208]) -> [SKIP][419] ([Intel XE#3442]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][420] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][421] ([Intel XE#4208]) +7 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][422] ([Intel XE#1727] / [Intel XE#3113]) -> [INCOMPLETE][423] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][424] ([Intel XE#306]) -> [SKIP][425] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][426] ([Intel XE#4208] / [i915#2575]) -> [SKIP][427] ([Intel XE#373]) +6 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][428] ([Intel XE#373]) -> [SKIP][429] ([Intel XE#4208] / [i915#2575]) +9 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][430] ([Intel XE#1178]) -> [SKIP][431] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][432] ([Intel XE#307]) -> [SKIP][433] ([Intel XE#4208] / [i915#2575])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][434] ([Intel XE#1178]) -> [SKIP][435] ([Intel XE#2341])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_content_protection@legacy.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][436] ([Intel XE#2341]) -> [FAIL][437] ([Intel XE#1178])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][438] ([Intel XE#4208] / [i915#2575]) -> [FAIL][439] ([Intel XE#1188])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_content_protection@uevent.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][440] ([Intel XE#308]) -> [SKIP][441] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][442] ([Intel XE#323]) -> [SKIP][443] ([Intel XE#4208] / [i915#2575])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][444] ([Intel XE#4208] / [i915#2575]) -> [SKIP][445] ([Intel XE#323])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: [SKIP][446] ([Intel XE#4208]) -> [SKIP][447] ([Intel XE#4356]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][448] ([Intel XE#455]) -> [SKIP][449] ([Intel XE#2351] / [Intel XE#4208])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: [SKIP][450] ([Intel XE#4208]) -> [SKIP][451] ([Intel XE#4422])
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: [SKIP][452] ([Intel XE#4422]) -> [SKIP][453] ([Intel XE#4208]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][454] ([Intel XE#4208] / [i915#2575]) -> [SKIP][455] ([Intel XE#703])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][456] ([Intel XE#4208] / [i915#2575]) -> [SKIP][457] ([Intel XE#1135]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@psr1.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [DMESG-WARN][458] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][459] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip@flip-vs-suspend.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][460] ([Intel XE#4543]) -> [DMESG-WARN][461] ([Intel XE#2953] / [Intel XE#4173])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][462] ([Intel XE#455]) -> [SKIP][463] ([Intel XE#4208]) +3 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][464] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][465] ([Intel XE#455]) +2 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][466] ([Intel XE#4208]) -> [SKIP][467] ([Intel XE#455]) +3 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][468] ([Intel XE#2311]) -> [SKIP][469] ([Intel XE#2312]) +7 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][470] ([Intel XE#4208]) -> [SKIP][471] ([Intel XE#651]) +18 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: [SKIP][472] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][473] ([Intel XE#651]) +11 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][474] ([Intel XE#2312]) -> [SKIP][475] ([Intel XE#5390]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][476] ([Intel XE#5390]) -> [SKIP][477] ([Intel XE#2312]) +4 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][478] ([Intel XE#651]) -> [SKIP][479] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][480] ([Intel XE#2312]) -> [SKIP][481] ([Intel XE#2311]) +8 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][482] ([Intel XE#651]) -> [SKIP][483] ([Intel XE#4208]) +18 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][484] ([Intel XE#653]) -> [SKIP][485] ([Intel XE#4208]) +16 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][486] ([Intel XE#2312]) -> [SKIP][487] ([Intel XE#2313]) +8 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][488] ([Intel XE#653]) -> [SKIP][489] ([Intel XE#2351] / [Intel XE#4208]) +11 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][490] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][491] ([Intel XE#653]) +10 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][492] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][493] ([Intel XE#658])
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][494] ([Intel XE#4208]) -> [SKIP][495] ([Intel XE#1158])
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][496] ([Intel XE#2313]) -> [SKIP][497] ([Intel XE#2312]) +9 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][498] ([Intel XE#4208]) -> [SKIP][499] ([Intel XE#653]) +23 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][500] ([Intel XE#3544]) -> [SKIP][501] ([Intel XE#3374] / [Intel XE#3544])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][502] ([Intel XE#346]) -> [SKIP][503] ([Intel XE#4208])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: [SKIP][504] ([Intel XE#4298]) -> [SKIP][505] ([Intel XE#4208])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][506] ([Intel XE#5021]) -> [SKIP][507] ([Intel XE#4596])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg2-set2: [SKIP][508] ([Intel XE#5021]) -> [SKIP][509] ([Intel XE#4208] / [i915#2575])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_plane_multiple@2x-tiling-y.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: [SKIP][510] ([Intel XE#5020]) -> [SKIP][511] ([Intel XE#4208] / [i915#2575])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_plane_multiple@tiling-yf.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][512] ([Intel XE#4208]) -> [SKIP][513] ([Intel XE#870])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][514] ([Intel XE#4208]) -> [SKIP][515] ([Intel XE#1129])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][516] ([Intel XE#908]) -> [SKIP][517] ([Intel XE#2351] / [Intel XE#4208])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][518] ([Intel XE#1129]) -> [SKIP][519] ([Intel XE#2351] / [Intel XE#4208])
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][520] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][521] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][522] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][523] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][524] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][525] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][526] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][527] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_psr@fbc-psr-no-drrs.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][528] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][529] ([Intel XE#1406] / [Intel XE#4208]) +6 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-dg2-set2: [SKIP][530] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][531] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-render.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: [SKIP][532] ([Intel XE#3414]) -> [SKIP][533] ([Intel XE#4208] / [i915#2575])
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-270.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][534] ([Intel XE#1127]) -> [SKIP][535] ([Intel XE#4208] / [i915#2575])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][536] ([Intel XE#4208] / [i915#2575]) -> [SKIP][537] ([Intel XE#3414]) +2 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-dg2-set2: [SKIP][538] ([Intel XE#4208] / [i915#2575]) -> [SKIP][539] ([Intel XE#455]) +8 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2-set2: [SKIP][540] ([Intel XE#455]) -> [SKIP][541] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][542] ([Intel XE#2426]) -> [FAIL][543] ([Intel XE#1729])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [SKIP][544] ([Intel XE#4208] / [i915#2575]) -> [FAIL][545] ([Intel XE#1729])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][546] ([Intel XE#330]) -> [SKIP][547] ([Intel XE#4208] / [i915#2575])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][548] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][549] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][550] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][551] ([Intel XE#4208])
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][552] ([Intel XE#4208]) -> [SKIP][553] ([Intel XE#1123]) +1 other test skip
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][554] ([Intel XE#1123]) -> [SKIP][555] ([Intel XE#4208])
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][556] ([Intel XE#4208]) -> [SKIP][557] ([Intel XE#1126])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][558] ([Intel XE#1126]) -> [SKIP][559] ([Intel XE#4208])
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: [SKIP][560] ([Intel XE#4208]) -> [SKIP][561] ([Intel XE#5626])
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eu_stall@non-blocking-re-enable:
- shard-dg2-set2: [SKIP][562] ([Intel XE#5626]) -> [SKIP][563] ([Intel XE#4208]) +1 other test skip
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_eu_stall@non-blocking-re-enable.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_eu_stall@non-blocking-re-enable.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: [SKIP][564] ([Intel XE#4208]) -> [SKIP][565] ([Intel XE#4837]) +14 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eudebug@vma-ufence-faultable.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-dg2-set2: [SKIP][566] ([Intel XE#1392]) -> [SKIP][567] ([Intel XE#4208]) +1 other test skip
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-dg2-set2: [SKIP][568] ([Intel XE#4208]) -> [SKIP][569] ([Intel XE#1392]) +1 other test skip
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-rebind.html
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][570] ([Intel XE#288]) -> [SKIP][571] ([Intel XE#4208]) +29 other tests skip
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][572] ([Intel XE#4208]) -> [SKIP][573] ([Intel XE#288]) +29 other tests skip
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][574] ([Intel XE#2360]) -> [SKIP][575] ([Intel XE#4208])
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: [SKIP][576] ([Intel XE#4837]) -> [SKIP][577] ([Intel XE#4208]) +13 other tests skip
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
- shard-dg2-set2: [SKIP][578] ([Intel XE#4915]) -> [SKIP][579] ([Intel XE#4208]) +257 other tests skip
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: [SKIP][580] ([Intel XE#4208]) -> [SKIP][581] ([Intel XE#4915]) +293 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][582] ([Intel XE#4917]) -> [SKIP][583] ([Intel XE#4208])
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][584] ([Intel XE#255]) -> [SKIP][585] ([Intel XE#4208])
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_huc_copy@huc_copy.html
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][586] ([Intel XE#4208]) -> [SKIP][587] ([Intel XE#560])
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_media_fill@media-fill.html
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][588] ([Intel XE#4208]) -> [SKIP][589] ([Intel XE#512])
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_mmap@small-bar.html
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_mmap@small-bar.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][590] ([Intel XE#4208]) -> [SKIP][591] ([Intel XE#3573]) +7 other tests skip
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_oa@polling-small-buf.html
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][592] ([Intel XE#3573]) -> [SKIP][593] ([Intel XE#4208]) +6 other tests skip
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][594] ([Intel XE#1337]) -> [SKIP][595] ([Intel XE#4208])
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][596] ([Intel XE#4208]) -> [SKIP][597] ([Intel XE#979])
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][598] ([Intel XE#1061] / [Intel XE#4208]) -> [SKIP][599] ([Intel XE#1061])
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_peer2peer@write.html
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-432/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][600] ([Intel XE#2284]) -> [SKIP][601] ([Intel XE#4208])
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][602] ([Intel XE#4208]) -> [SKIP][603] ([Intel XE#2284] / [Intel XE#366])
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: [SKIP][604] ([Intel XE#4208]) -> [SKIP][605] ([Intel XE#4650])
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pmu@all-fn-engine-activity-load.html
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: [SKIP][606] ([Intel XE#4208]) -> [SKIP][607] ([Intel XE#4733]) +2 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: [SKIP][608] ([Intel XE#4733]) -> [SKIP][609] ([Intel XE#4208]) +3 other tests skip
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][610] ([Intel XE#944]) -> [SKIP][611] ([Intel XE#4208]) +1 other test skip
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_query@multigpu-query-cs-cycles.html
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][612] ([Intel XE#4208]) -> [SKIP][613] ([Intel XE#944]) +3 other tests skip
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_render_copy@render-stress-0-copies:
- shard-dg2-set2: [SKIP][614] ([Intel XE#4814]) -> [SKIP][615] ([Intel XE#4208])
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_render_copy@render-stress-0-copies.html
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-dg2-set2: [SKIP][616] ([Intel XE#4208]) -> [SKIP][617] ([Intel XE#4814])
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_render_copy@render-stress-4-copies.html
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-436/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-dg2-set2: [SKIP][618] ([Intel XE#4208]) -> [SKIP][619] ([Intel XE#4130]) +2 other tests skip
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-463/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][620] ([Intel XE#3342]) -> [SKIP][621] ([Intel XE#4208])
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: [SKIP][622] ([Intel XE#4208]) -> [SKIP][623] ([Intel XE#4273])
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_flr@flr-vfs-parallel.html
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-464/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: [SKIP][624] ([Intel XE#4208]) -> [SKIP][625] ([Intel XE#4351])
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/shard-dg2-433/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5794
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8512 -> IGT_8513
* Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-146541v7
IGT_8512: 8512
IGT_8513: 6540636111c1c01271f55abcc18c775426d4a18f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
xe-pw-146541v7: 146541v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-146541v7/index.html
[-- Attachment #2: Type: text/html, Size: 183810 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread