public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
@ 2026-02-06 16:47 Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 1/5] drm/xe/xe_pagefault: Disallow writes to read-only VMAs Jonathan Cavitt
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Jonathan Cavitt @ 2026-02-06 16:47 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
	matthew.brost, jianxun.zhang, shuicheng.lin, dri-devel,
	Michal.Wajdeczko, michal.mrozek, raag.jadav, ivan.briano,
	matthew.auld, dafna.hirschfeld

Add additional information to each VM so they can report up to the first
50 seen faults.  Only pagefaults are saved this way currently, though in
the future, all faults should be tracked by the VM for future reporting.

Additionally, of the pagefaults reported, only failed pagefaults are
saved this way, as successful pagefaults should recover silently and not
need to be reported to userspace.

To allow userspace to access these faults, a new ioctl -
xe_vm_get_property_ioct - was created.

v2: (Matt Brost)
- Break full ban list request into a separate property.
- Reformat drm_xe_vm_get_property struct.
- Remove need for drm_xe_faults helper struct.
- Separate data pointer and scalar return value in ioctl.
- Get address type on pagefault report and save it to the pagefault.
- Correctly reject writes to read-only VMAs.
- Miscellaneous formatting fixes.

v3: (Matt Brost)
- Only allow querying of failed pagefaults

v4:
- Remove unnecessary size parameter from helper function, as it
  is a property of the arguments. (jcavitt)
- Remove unnecessary copy_from_user (Jainxun)
- Set address_precision to 1 (Jainxun)
- Report max size instead of dynamic size for memory allocation
  purposes.  Total memory usage is reported separately.

v5:
- Return int from xe_vm_get_property_size (Shuicheng)
- Fix memory leak (Shuicheng)
- Remove unnecessary size variable (jcavitt)

v6:
- Free vm after use (Shuicheng)
- Compress pf copy logic (Shuicheng)
- Update fault_unsuccessful before storing (Shuicheng)
- Fix old struct name in comments (Shuicheng)
- Keep first 50 pagefaults instead of last 50 (Jianxun)
- Rename ioctl to xe_vm_get_faults_ioctl (jcavitt)

v7:
- Avoid unnecessary execution by checking MAX_PFS earlier (jcavitt)
- Fix double-locking error (jcavitt)
- Assert kmemdump is successful (Shuicheng)
- Repair and move fill_faults break condition (Dan Carpenter)
- Free vm after use (jcavitt)
- Combine assertions (jcavitt)
- Expand size check in xe_vm_get_faults_ioctl (jcavitt)
- Remove return mask from fill_faults, as return is already -EFAULT or 0
  (jcavitt)

v8:
- Revert back to using drm_xe_vm_get_property_ioctl
- s/Migrate/Move (Michal)
- s/xe_pagefault/xe_gt_pagefault (Michal)
- Create new header file, xe_gt_pagefault_types.h (Michal)
- Add and fix kernel docs (Michal)
- Rename xe_vm.pfs to xe_vm.faults (jcavitt)
- Store fault data and not pagefault in xe_vm faults list (jcavitt)
- Store address, address type, and address precision per fault (jcavitt)
- Store engine class and instance data per fault (Jianxun)
- Properly handle kzalloc error (Michal W)
- s/MAX_PFS/MAX_FAULTS_SAVED_PER_VM (Michal W)
- Store fault level per fault (Micahl M)
- Apply better copy_to_user logic (jcavitt)

v9:
- More kernel doc fixes (Michal W, Jianxun)
- Better error handling (jcavitt)

v10:
- Convert enums to defines in regs folder (Michal W)
- Move xe_guc_pagefault_desc to regs folder (Michal W)
- Future-proof size logic for zero-size properties (jcavitt)
- Replace address type extern with access type (Jianxun)
- Add fault type to xe_drm_fault (Jianxun)

v11:
- Remove unnecessary switch case logic (Raag)
- Compress size get, size validation, and property fill functions into a
  single helper function (jcavitt)
- Assert valid size (jcavitt)
- Store pagefaults in non-fault-mode VMs as well (Jianxun)

v12:
- Remove unnecessary else condition
- Correct backwards helper function size logic (jcavitt)
- Fix kernel docs and comments (Michal W)

v13:
- Move xe and user engine class mapping arrays to header (John H)

v14:
- Fix double locking issue (Jianxun)
- Use size_t instead of int (Raag)
- Remove unnecessary includes (jcavitt)

v15:
- Do not report faults from reserved engines (Jianxun)

v16:
- Remove engine class and instance (Ivan)

v17:
- Map access type, fault type, and fault level to user macros (Matt
  Brost, Ivan)

v18:
- Add uAPI merge request to this cover letter

v19:
- Perform kzalloc outside of lock (Auld)

v20:
- Fix inconsistent use of whitespace in defines

v21:
- Remove unnecessary size assertion (jcavitt)

v22:
- Fix xe_vm_fault_entry kernel docs (Shuicheng)

v23:
- Nit fixes (Matt Brost)

v24:
- s/xe_pagefault_desc.h/xe_guc_pagefault_desc.h (Dafna)
- Move PF_MSG_LEN_DW to regs folder (Dafna)

v25:
- Revert changes from last revision (John H)
- Add missing bspec (Michal W)

v26:
- Rebase and refactor on top of latest change to xe_pagefault layer
  (jcavitt)

v27:
- Apply max line length (Matt Brost)
- Correctly ignore fault mode in save_pagefault_to_vm (jcavitt)

v28:
- Do not copy_to_user in critical section (Matt Brost)
- Assert args->size is multiple of sizeof(struct xe_vm_fault) (Matt
  Brost)
- s/save_pagefault_to_vm/xe_pagefault_save_to_vm (Matt Brost)
- Use guard instead of spin_lock/unlock (Matt Brost)
- GT was added to xe_pagefault struct.  Use xe_gt_hw_engine
  instead of creating a new helper function (Matt Brost)

v29:
- Track address precision separately and report it accurately (Matt
  Brost)
- Remove unnecessary memset (Matt Brost)

v30:
- Keep u8 values together (Matt Brost)

v31:
- Refactor (jcavitt)

v32:
- Refactor (jcavitt)

v33:
- Refactor (jcavitt)

uAPI: https://github.com/intel/compute-runtime/pull/878
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Cc: Zhang Jianxun <jianxun.zhang@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Michal Wajdeczko <Michal.Wajdeczko@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Raag Jadav <raag.jadav@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
Cc: Ivan Briano <ivan.briano@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Dafna Hirschfeld <dafna.hirschfeld@intel.com>

Jonathan Cavitt (5):
  drm/xe/xe_pagefault: Disallow writes to read-only VMAs
  drm/xe/xe_pagefault: Track address precision per pagefault
  drm/xe/uapi: Define drm_xe_vm_get_property
  drm/xe/xe_vm: Add per VM fault info
  drm/xe/xe_vm: Implement xe_vm_get_property_ioctl

 drivers/gpu/drm/xe/xe_device.c          |   2 +
 drivers/gpu/drm/xe/xe_guc_pagefault.c   |   1 +
 drivers/gpu/drm/xe/xe_pagefault.c       |  34 +++++
 drivers/gpu/drm/xe/xe_pagefault_types.h |   8 +-
 drivers/gpu/drm/xe/xe_vm.c              | 184 ++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_vm.h              |  12 ++
 drivers/gpu/drm/xe/xe_vm_types.h        |  29 ++++
 include/uapi/drm/xe_drm.h               |  86 +++++++++++
 8 files changed, 355 insertions(+), 1 deletion(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH v33 1/5] drm/xe/xe_pagefault: Disallow writes to read-only VMAs
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
@ 2026-02-06 16:47 ` Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault Jonathan Cavitt
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Jonathan Cavitt @ 2026-02-06 16:47 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
	matthew.brost, jianxun.zhang, shuicheng.lin, dri-devel,
	Michal.Wajdeczko, michal.mrozek, raag.jadav, ivan.briano,
	matthew.auld, dafna.hirschfeld

The page fault handler should reject write/atomic access to read only
VMAs.  Add code to handle this in xe_pagefault_service after the VMA
lookup.

v2:
- Apply max line length (Matthew)

Fixes: fb544b844508 ("drm/xe: Implement xe_pagefault_queue_work")
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_pagefault.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
index 6bee53d6ffc3..922a4f3344b1 100644
--- a/drivers/gpu/drm/xe/xe_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_pagefault.c
@@ -187,6 +187,12 @@ static int xe_pagefault_service(struct xe_pagefault *pf)
 		goto unlock_vm;
 	}
 
+	if (xe_vma_read_only(vma) &&
+	    pf->consumer.access_type != XE_PAGEFAULT_ACCESS_TYPE_READ) {
+		err = -EPERM;
+		goto unlock_vm;
+	}
+
 	atomic = xe_pagefault_access_is_atomic(pf->consumer.access_type);
 
 	if (xe_vma_is_cpu_addr_mirror(vma))
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 1/5] drm/xe/xe_pagefault: Disallow writes to read-only VMAs Jonathan Cavitt
@ 2026-02-06 16:47 ` Jonathan Cavitt
  2026-02-13 20:58   ` Lin, Shuicheng
  2026-02-13 21:03   ` Matthew Brost
  2026-02-06 16:47 ` [PATCH v33 3/5] drm/xe/uapi: Define drm_xe_vm_get_property Jonathan Cavitt
                   ` (6 subsequent siblings)
  8 siblings, 2 replies; 15+ messages in thread
From: Jonathan Cavitt @ 2026-02-06 16:47 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
	matthew.brost, jianxun.zhang, shuicheng.lin, dri-devel,
	Michal.Wajdeczko, michal.mrozek, raag.jadav, ivan.briano,
	matthew.auld, dafna.hirschfeld

Add an address precision field to the pagefault consumer.  This captures
the fact that pagefaults are reported on a SZ_4K granularity by GuC,
meaning the reported pagefault address is only the address of the page
where the faulting access occurred rather than the exact address of the
fault.  This field is necessary in case more reporters are added where
the granularity can be different.

v2:
- Keep u8 values together (Matt Brost)

Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_pagefault.c   | 1 +
 drivers/gpu/drm/xe/xe_pagefault.c       | 2 ++
 drivers/gpu/drm/xe/xe_pagefault_types.h | 8 +++++++-
 3 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_pagefault.c b/drivers/gpu/drm/xe/xe_guc_pagefault.c
index 719a18187a31..79b790fedda8 100644
--- a/drivers/gpu/drm/xe/xe_guc_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_guc_pagefault.c
@@ -74,6 +74,7 @@ int xe_guc_pagefault_handler(struct xe_guc *guc, u32 *msg, u32 len)
 				      << PFD_VIRTUAL_ADDR_HI_SHIFT) |
 		(FIELD_GET(PFD_VIRTUAL_ADDR_LO, msg[2]) <<
 		 PFD_VIRTUAL_ADDR_LO_SHIFT);
+	pf.consumer.addr_precision = 12;
 	pf.consumer.asid = FIELD_GET(PFD_ASID, msg[1]);
 	pf.consumer.access_type = FIELD_GET(PFD_ACCESS_TYPE, msg[2]);
 	pf.consumer.fault_type = FIELD_GET(PFD_FAULT_TYPE, msg[2]);
diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
index 922a4f3344b1..a24de27eb303 100644
--- a/drivers/gpu/drm/xe/xe_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_pagefault.c
@@ -231,6 +231,7 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
 {
 	xe_gt_info(pf->gt, "\n\tASID: %d\n"
 		   "\tFaulted Address: 0x%08x%08x\n"
+		   "\tAddress Precision: %lu\n"
 		   "\tFaultType: %d\n"
 		   "\tAccessType: %d\n"
 		   "\tFaultLevel: %d\n"
@@ -239,6 +240,7 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
 		   pf->consumer.asid,
 		   upper_32_bits(pf->consumer.page_addr),
 		   lower_32_bits(pf->consumer.page_addr),
+		   BIT(pf->consumer.addr_precision),
 		   pf->consumer.fault_type,
 		   pf->consumer.access_type,
 		   pf->consumer.fault_level,
diff --git a/drivers/gpu/drm/xe/xe_pagefault_types.h b/drivers/gpu/drm/xe/xe_pagefault_types.h
index d3b516407d60..333db12713ef 100644
--- a/drivers/gpu/drm/xe/xe_pagefault_types.h
+++ b/drivers/gpu/drm/xe/xe_pagefault_types.h
@@ -67,6 +67,12 @@ struct xe_pagefault {
 		u64 page_addr;
 		/** @consumer.asid: address space ID */
 		u32 asid;
+		/**
+		 * @consumer.addr_precision: precision of the page fault address.
+		 * u8 rather than u32 to keep compact - actual precision is
+		 * BIT(consumer.addr_precision).  Currently only 12
+		 */
+		u8 addr_precision;
 		/**
 		 * @consumer.access_type: access type, u8 rather than enum to
 		 * keep size compact
@@ -85,7 +91,7 @@ struct xe_pagefault {
 		/** @consumer.engine_instance: engine instance */
 		u8 engine_instance;
 		/** consumer.reserved: reserved bits for future expansion */
-		u8 reserved[7];
+		u8 reserved[6];
 	} consumer;
 	/**
 	 * @producer: State for the producer (i.e., HW/FW interface). Populated
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH v33 3/5] drm/xe/uapi: Define drm_xe_vm_get_property
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 1/5] drm/xe/xe_pagefault: Disallow writes to read-only VMAs Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault Jonathan Cavitt
@ 2026-02-06 16:47 ` Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 4/5] drm/xe/xe_vm: Add per VM fault info Jonathan Cavitt
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Jonathan Cavitt @ 2026-02-06 16:47 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
	matthew.brost, jianxun.zhang, shuicheng.lin, dri-devel,
	Michal.Wajdeczko, michal.mrozek, raag.jadav, ivan.briano,
	matthew.auld, dafna.hirschfeld

Add initial declarations for the drm_xe_vm_get_property ioctl.

v2:
- Expand kernel docs for drm_xe_vm_get_property (Jianxun)

v3:
- Remove address type external definitions (Jianxun)
- Add fault type to xe_drm_fault struct (Jianxun)

v4:
- Remove engine class and instance (Ivan)

v5:
- Add declares for fault type, access type, and fault level (Matt Brost,
  Ivan)

v6:
- Fix inconsistent use of whitespace in defines

v7:
- Rebase and refactor (jcavitt)

v8:
- Rebase (jcavitt)

uAPI: https://github.com/intel/compute-runtime/pull/878
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>
Acked-by: Matthew Brost <matthew.brost@intel.com>
Acked-by: Ivan Briano <ivan.briano@intel.com>
Cc: Zhang Jianxun <jianxun.zhang@intel.com>
Cc: Ivan Briano <ivan.briano@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
 include/uapi/drm/xe_drm.h | 86 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 86 insertions(+)

diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
index 077e66a682e2..3a7c2b925868 100644
--- a/include/uapi/drm/xe_drm.h
+++ b/include/uapi/drm/xe_drm.h
@@ -83,6 +83,7 @@ extern "C" {
  *  - &DRM_IOCTL_XE_OBSERVATION
  *  - &DRM_IOCTL_XE_MADVISE
  *  - &DRM_IOCTL_XE_VM_QUERY_MEM_RANGE_ATTRS
+ *  - &DRM_IOCTL_XE_VM_GET_PROPERTY
  */
 
 /*
@@ -107,6 +108,7 @@ extern "C" {
 #define DRM_XE_MADVISE			0x0c
 #define DRM_XE_VM_QUERY_MEM_RANGE_ATTRS	0x0d
 #define DRM_XE_EXEC_QUEUE_SET_PROPERTY	0x0e
+#define DRM_XE_VM_GET_PROPERTY		0x0f
 
 /* Must be kept compact -- no holes */
 
@@ -125,6 +127,7 @@ extern "C" {
 #define DRM_IOCTL_XE_MADVISE			DRM_IOW(DRM_COMMAND_BASE + DRM_XE_MADVISE, struct drm_xe_madvise)
 #define DRM_IOCTL_XE_VM_QUERY_MEM_RANGE_ATTRS	DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_VM_QUERY_MEM_RANGE_ATTRS, struct drm_xe_vm_query_mem_range_attr)
 #define DRM_IOCTL_XE_EXEC_QUEUE_SET_PROPERTY	DRM_IOW(DRM_COMMAND_BASE + DRM_XE_EXEC_QUEUE_SET_PROPERTY, struct drm_xe_exec_queue_set_property)
+#define DRM_IOCTL_XE_VM_GET_PROPERTY		DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_VM_GET_PROPERTY, struct drm_xe_vm_get_property)
 
 /**
  * DOC: Xe IOCTL Extensions
@@ -1249,6 +1252,89 @@ struct drm_xe_vm_bind {
 	__u64 reserved[2];
 };
 
+/** struct xe_vm_fault - Describes faults for %DRM_XE_VM_GET_PROPERTY_FAULTS */
+struct xe_vm_fault {
+	/** @address: Address of the fault */
+	__u64 address;
+	/** @address_precision: Precision of faulted address */
+	__u32 address_precision;
+	/** @access_type: Type of address access that resulted in fault */
+#define FAULT_ACCESS_TYPE_READ		0
+#define FAULT_ACCESS_TYPE_WRITE		1
+#define FAULT_ACCESS_TYPE_ATOMIC	2
+	__u8 access_type;
+	/** @fault_type: Type of fault reported */
+#define FAULT_TYPE_NOT_PRESENT		0
+#define FAULT_TYPE_WRITE_ACCESS		1
+#define FAULT_TYPE_ATOMIC_ACCESS	2
+	__u8 fault_type;
+	/** @fault_level: fault level of the fault */
+#define FAULT_LEVEL_PTE		0
+#define FAULT_LEVEL_PDE		1
+#define FAULT_LEVEL_PDP		2
+#define FAULT_LEVEL_PML4	3
+#define FAULT_LEVEL_PML5	4
+	__u8 fault_level;
+	/** @pad: MBZ */
+	__u8 pad;
+	/** @reserved: MBZ */
+	__u64 reserved[4];
+};
+
+/**
+ * struct drm_xe_vm_get_property - Input of &DRM_IOCTL_XE_VM_GET_PROPERTY
+ *
+ * The user provides a VM and a property to query among DRM_XE_VM_GET_PROPERTY_*,
+ * and sets the values in the vm_id and property members, respectively.  This
+ * determines both the VM to get the property of, as well as the property to
+ * report.
+ *
+ * If size is set to 0, the driver fills it with the required size for the
+ * requested property.  The user is expected here to allocate memory for the
+ * property structure and to provide a pointer to the allocated memory using the
+ * data member.  For some properties, this may be zero, in which case, the
+ * value of the property will be saved to the value member and size will remain
+ * zero on return.
+ *
+ * If size is not zero, then the IOCTL will attempt to copy the requested
+ * property into the data member.
+ *
+ * The IOCTL will return -ENOENT if the VM could not be identified from the
+ * provided VM ID, or -EINVAL if the IOCTL fails for any other reason, such as
+ * providing an invalid size for the given property or if the property data
+ * could not be copied to the memory allocated to the data member.
+ *
+ * The property member can be:
+ *  - %DRM_XE_VM_GET_PROPERTY_FAULTS
+ */
+struct drm_xe_vm_get_property {
+	/** @extensions: Pointer to the first extension struct, if any */
+	__u64 extensions;
+
+	/** @vm_id: The ID of the VM to query the properties of */
+	__u32 vm_id;
+
+#define DRM_XE_VM_GET_PROPERTY_FAULTS		0
+	/** @property: property to get */
+	__u32 property;
+
+	/** @size: Size to allocate for @data */
+	__u32 size;
+
+	/** @pad: MBZ */
+	__u32 pad;
+
+	union {
+		/** @data: Pointer to user-defined array of flexible size and type */
+		__u64 data;
+		/** @value: Return value for scalar queries */
+		__u64 value;
+	};
+
+	/** @reserved: MBZ */
+	__u64 reserved[3];
+};
+
 /**
  * struct drm_xe_exec_queue_create - Input of &DRM_IOCTL_XE_EXEC_QUEUE_CREATE
  *
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH v33 4/5] drm/xe/xe_vm: Add per VM fault info
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (2 preceding siblings ...)
  2026-02-06 16:47 ` [PATCH v33 3/5] drm/xe/uapi: Define drm_xe_vm_get_property Jonathan Cavitt
@ 2026-02-06 16:47 ` Jonathan Cavitt
  2026-02-06 16:47 ` [PATCH v33 5/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Jonathan Cavitt @ 2026-02-06 16:47 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
	matthew.brost, jianxun.zhang, shuicheng.lin, dri-devel,
	Michal.Wajdeczko, michal.mrozek, raag.jadav, ivan.briano,
	matthew.auld, dafna.hirschfeld

Add additional information to each VM so they can report up to the first
50 seen faults.  Only pagefaults are saved this way currently, though in
the future, all faults should be tracked by the VM for future reporting.

Additionally, of the pagefaults reported, only failed pagefaults are
saved this way, as successful pagefaults should recover silently and not
need to be reported to userspace.

v2:
- Free vm after use (Shuicheng)
- Compress pf copy logic (Shuicheng)
- Update fault_unsuccessful before storing (Shuicheng)
- Fix old struct name in comments (Shuicheng)
- Keep first 50 pagefaults instead of last 50 (Jianxun)

v3:
- Avoid unnecessary execution by checking MAX_PFS earlier (jcavitt)
- Fix double-locking error (jcavitt)
- Assert kmemdump is successful (Shuicheng)

v4:
- Rename xe_vm.pfs to xe_vm.faults (jcavitt)
- Store fault data and not pagefault in xe_vm faults list (jcavitt)
- Store address, address type, and address precision per fault (jcavitt)
- Store engine class and instance data per fault (Jianxun)
- Add and fix kernel docs (Michal W)
- Properly handle kzalloc error (Michal W)
- s/MAX_PFS/MAX_FAULTS_SAVED_PER_VM (Michal W)
- Store fault level per fault (Micahl M)

v5:
- Store fault and access type instead of address type (Jianxun)

v6:
- Store pagefaults in non-fault-mode VMs as well (Jianxun)

v7:
- Fix kernel docs and comments (Michal W)

v8:
- Fix double-locking issue (Jianxun)

v9:
- Do not report faults from reserved engines (Jianxun)

v10:
- Remove engine class and instance (Ivan)

v11:
- Perform kzalloc outside of lock (Auld)

v12:
- Fix xe_vm_fault_entry kernel docs (Shuicheng)

v13:
- Rebase and refactor (jcavitt)

v14:
- Correctly ignore fault mode in save_pagefault_to_vm (jcavitt)

v15:
- s/save_pagefault_to_vm/xe_pagefault_save_to_vm (Matt Brost)
- Use guard instead of spin_lock/unlock (Matt Brost)
- GT was added to xe_pagefault struct.  Use xe_gt_hw_engine
  instead of creating a new helper function (Matt Brost)

v16:
- Set address precision programmatically (Matt Brost)

uAPI: https://github.com/intel/compute-runtime/pull/878
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Jianxun Zhang <jianxun.zhang@intel.com>
Cc: Michal Wajdeczko <Michal.Wajdeczko@intel.com>
Cc: Michal Mzorek <michal.mzorek@intel.com>
Cc: Ivan Briano <ivan.briano@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_pagefault.c | 26 ++++++++++++
 drivers/gpu/drm/xe/xe_vm.c        | 67 +++++++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_vm.h        |  9 +++++
 drivers/gpu/drm/xe/xe_vm_types.h  | 29 +++++++++++++
 4 files changed, 131 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
index a24de27eb303..eaed9a5c1d1f 100644
--- a/drivers/gpu/drm/xe/xe_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_pagefault.c
@@ -249,6 +249,31 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
 		   pf->consumer.engine_instance);
 }
 
+static void xe_pagefault_save_to_vm(struct xe_device *xe, struct xe_pagefault *pf)
+{
+	struct xe_vm *vm;
+
+	/*
+	 * Pagefault may be asociated to VM that is not in fault mode.
+	 * Perform asid_to_vm behavior, except if VM is not in fault
+	 * mode, return VM anyways.
+	 */
+	down_read(&xe->usm.lock);
+	vm = xa_load(&xe->usm.asid_to_vm, pf->consumer.asid);
+	if (vm)
+		xe_vm_get(vm);
+	else
+		vm = ERR_PTR(-EINVAL);
+	up_read(&xe->usm.lock);
+
+	if (IS_ERR(vm))
+		return;
+
+	xe_vm_add_fault_entry_pf(vm, pf);
+
+	xe_vm_put(vm);
+}
+
 static void xe_pagefault_queue_work(struct work_struct *w)
 {
 	struct xe_pagefault_queue *pf_queue =
@@ -268,6 +293,7 @@ static void xe_pagefault_queue_work(struct work_struct *w)
 		err = xe_pagefault_service(&pf);
 		if (err) {
 			xe_pagefault_print(&pf);
+			xe_pagefault_save_to_vm(gt_to_xe(pf.gt), &pf);
 			xe_gt_info(pf.gt, "Fault response: Unsuccessful %pe\n",
 				   ERR_PTR(err));
 		}
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 8fe54a998385..0b0c24ff62a9 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -27,6 +27,7 @@
 #include "xe_device.h"
 #include "xe_drm_client.h"
 #include "xe_exec_queue.h"
+#include "xe_gt.h"
 #include "xe_migrate.h"
 #include "xe_pat.h"
 #include "xe_pm.h"
@@ -577,6 +578,67 @@ static void preempt_rebind_work_func(struct work_struct *w)
 	trace_xe_vm_rebind_worker_exit(vm);
 }
 
+/**
+ * xe_vm_add_fault_entry_pf() - Add pagefault to vm fault list
+ * @vm: The VM.
+ * @pf: The pagefault.
+ *
+ * This function takes the data from the pagefault @pf and saves it to @vm->faults.list.
+ *
+ * The function exits silently if the list is full, and reports a warning if the pagefault
+ * could not be saved to the list.
+ */
+void xe_vm_add_fault_entry_pf(struct xe_vm *vm, struct xe_pagefault *pf)
+{
+	struct xe_vm_fault_entry *e = NULL;
+	struct xe_hw_engine *hwe;
+
+	/* Do not report faults on reserved engines */
+	hwe = xe_gt_hw_engine(pf->gt, pf->consumer.engine_class,
+			      pf->consumer.engine_instance, false);
+	if (!hwe || xe_hw_engine_is_reserved(hwe))
+		return;
+
+	e = kzalloc(sizeof(*e), GFP_KERNEL);
+	if (!e) {
+		drm_warn(&vm->xe->drm,
+			 "Could not allocate memory for fault!\n");
+		return;
+	}
+
+	guard(spinlock)(&vm->faults.lock);
+
+	/*
+	 * Limit the number of faults in the fault list to prevent
+	 * memory overuse.
+	 */
+	if (vm->faults.len >= MAX_FAULTS_SAVED_PER_VM) {
+		kfree(e);
+		return;
+	}
+
+	e->address = pf->consumer.page_addr;
+	e->address_precision = BIT(pf->consumer.addr_precision);
+	e->access_type = pf->consumer.access_type;
+	e->fault_type = pf->consumer.fault_type;
+	e->fault_level = pf->consumer.fault_level;
+
+	list_add_tail(&e->list, &vm->faults.list);
+	vm->faults.len++;
+}
+
+static void xe_vm_clear_fault_entries(struct xe_vm *vm)
+{
+	struct xe_vm_fault_entry *e, *tmp;
+
+	guard(spinlock)(&vm->faults.lock);
+	list_for_each_entry_safe(e, tmp, &vm->faults.list, list) {
+		list_del(&e->list);
+		kfree(e);
+	}
+	vm->faults.len = 0;
+}
+
 static int xe_vma_ops_alloc(struct xe_vma_ops *vops, bool array_of_binds)
 {
 	int i;
@@ -1538,6 +1600,9 @@ struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags, struct xe_file *xef)
 	INIT_LIST_HEAD(&vm->userptr.invalidated);
 	spin_lock_init(&vm->userptr.invalidated_lock);
 
+	INIT_LIST_HEAD(&vm->faults.list);
+	spin_lock_init(&vm->faults.lock);
+
 	ttm_lru_bulk_move_init(&vm->lru_bulk_move);
 
 	INIT_WORK(&vm->destroy_work, vm_destroy_work_func);
@@ -1851,6 +1916,8 @@ void xe_vm_close_and_put(struct xe_vm *vm)
 	}
 	up_write(&xe->usm.lock);
 
+	xe_vm_clear_fault_entries(vm);
+
 	for_each_tile(tile, xe, id)
 		xe_range_fence_tree_fini(&vm->rftree[id]);
 
diff --git a/drivers/gpu/drm/xe/xe_vm.h b/drivers/gpu/drm/xe/xe_vm.h
index 288115c7844a..fd3fc60f92bb 100644
--- a/drivers/gpu/drm/xe/xe_vm.h
+++ b/drivers/gpu/drm/xe/xe_vm.h
@@ -12,6 +12,12 @@
 #include "xe_map.h"
 #include "xe_vm_types.h"
 
+/**
+ * MAX_FAULTS_SAVED_PER_VM - Maximum number of faults each vm can store before future
+ * faults are discarded to prevent memory overuse
+ */
+#define MAX_FAULTS_SAVED_PER_VM	50
+
 struct drm_device;
 struct drm_printer;
 struct drm_file;
@@ -22,6 +28,7 @@ struct dma_fence;
 
 struct xe_exec_queue;
 struct xe_file;
+struct xe_pagefault;
 struct xe_sync_entry;
 struct xe_svm_range;
 struct drm_exec;
@@ -312,6 +319,8 @@ void xe_vm_snapshot_capture_delayed(struct xe_vm_snapshot *snap);
 void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p);
 void xe_vm_snapshot_free(struct xe_vm_snapshot *snap);
 
+void xe_vm_add_fault_entry_pf(struct xe_vm *vm, struct xe_pagefault *pf);
+
 /**
  * xe_vm_set_validating() - Register this task as currently making bos resident
  * @allow_res_evict: Allow eviction of buffer objects bound to @vm when
diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index 43203e90ee3e..07546953cb19 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -23,6 +23,7 @@
 struct drm_pagemap;
 
 struct xe_bo;
+struct xe_pagefault;
 struct xe_svm_range;
 struct xe_sync_entry;
 struct xe_user_fence;
@@ -175,6 +176,24 @@ struct xe_userptr_vma {
 
 struct xe_device;
 
+/**
+ * struct xe_vm_fault_entry - Elements of vm->faults.list
+ * @list: link into @xe_vm.faults.list
+ * @address: address of the fault
+ * @address_precision: precision of faulted address
+ * @access_type: type of address access that resulted in fault
+ * @fault_type: type of fault reported
+ * @fault_level: fault level of the fault
+ */
+struct xe_vm_fault_entry {
+	struct list_head list;
+	u64 address;
+	u32 address_precision;
+	u8 access_type;
+	u8 fault_type;
+	u8 fault_level;
+};
+
 struct xe_vm {
 	/** @gpuvm: base GPUVM used to track VMAs */
 	struct drm_gpuvm gpuvm;
@@ -331,6 +350,16 @@ struct xe_vm {
 		bool capture_once;
 	} error_capture;
 
+	/** @faults: List of all faults associated with this VM */
+	struct {
+		/** @faults.lock: lock protecting @faults.list */
+		spinlock_t lock;
+		/** @faults.list: list of xe_vm_fault_entry entries */
+		struct list_head list;
+		/** @faults.len: length of @faults.list */
+		unsigned int len;
+	} faults;
+
 	/**
 	 * @validation: Validation data only valid with the vm resv held.
 	 * Note: This is really task state of the task holding the vm resv,
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH v33 5/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (3 preceding siblings ...)
  2026-02-06 16:47 ` [PATCH v33 4/5] drm/xe/xe_vm: Add per VM fault info Jonathan Cavitt
@ 2026-02-06 16:47 ` Jonathan Cavitt
  2026-02-06 16:52 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Jonathan Cavitt @ 2026-02-06 16:47 UTC (permalink / raw)
  To: intel-xe
  Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
	matthew.brost, jianxun.zhang, shuicheng.lin, dri-devel,
	Michal.Wajdeczko, michal.mrozek, raag.jadav, ivan.briano,
	matthew.auld, dafna.hirschfeld

Add support for userspace to request a list of observed faults
from a specified VM.

v2:
- Only allow querying of failed pagefaults (Matt Brost)

v3:
- Remove unnecessary size parameter from helper function, as it
  is a property of the arguments. (jcavitt)
- Remove unnecessary copy_from_user (Jainxun)
- Set address_precision to 1 (Jainxun)
- Report max size instead of dynamic size for memory allocation
  purposes.  Total memory usage is reported separately.

v4:
- Return int from xe_vm_get_property_size (Shuicheng)
- Fix memory leak (Shuicheng)
- Remove unnecessary size variable (jcavitt)

v5:
- Rename ioctl to xe_vm_get_faults_ioctl (jcavitt)
- Update fill_property_pfs to eliminate need for kzalloc (Jianxun)

v6:
- Repair and move fill_faults break condition (Dan Carpenter)
- Free vm after use (jcavitt)
- Combine assertions (jcavitt)
- Expand size check in xe_vm_get_faults_ioctl (jcavitt)
- Remove return mask from fill_faults, as return is already -EFAULT or 0
  (jcavitt)

v7:
- Revert back to using xe_vm_get_property_ioctl
- Apply better copy_to_user logic (jcavitt)

v8:
- Fix and clean up error value handling in ioctl (jcavitt)
- Reapply return mask for fill_faults (jcavitt)

v9:
- Future-proof size logic for zero-size properties (jcavitt)
- Add access and fault types (Jianxun)
- Remove address type (Jianxun)

v10:
- Remove unnecessary switch case logic (Raag)
- Compress size get, size validation, and property fill functions into a
  single helper function (jcavitt)
- Assert valid size (jcavitt)

v11:
- Remove unnecessary else condition
- Correct backwards helper function size logic (jcavitt)

v12:
- Use size_t instead of int (Raag)

v13:
- Remove engine class and instance (Ivan)

v14:
- Map access type, fault type, and fault level to user macros (Matt
  Brost, Ivan)

v15:
- Remove unnecessary size assertion (jcavitt)

v16:
- Nit fixes (Matt Brost)

v17:
- Rebase and refactor (jcavitt)

v18:
- Do not copy_to_user in critical section (Matt Brost)
- Assert args->size is multiple of sizeof(struct xe_vm_fault) (Matt
  Brost)

v19:
- Remove unnecessary memset (Matt Brost)

uAPI: https://github.com/intel/compute-runtime/pull/878
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Cc: Jainxun Zhang <jianxun.zhang@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Raag Jadav <raag.jadav@intel.com>
Cc: Ivan Briano <ivan.briano@intel.com>
---
 drivers/gpu/drm/xe/xe_device.c |   2 +
 drivers/gpu/drm/xe/xe_vm.c     | 117 +++++++++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_vm.h     |   3 +
 3 files changed, 122 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 743c18e0c580..201c3558e478 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -211,6 +211,8 @@ static const struct drm_ioctl_desc xe_ioctls[] = {
 			  DRM_RENDER_ALLOW),
 	DRM_IOCTL_DEF_DRV(XE_EXEC_QUEUE_SET_PROPERTY, xe_exec_queue_set_property_ioctl,
 			  DRM_RENDER_ALLOW),
+	DRM_IOCTL_DEF_DRV(XE_VM_GET_PROPERTY, xe_vm_get_property_ioctl,
+			  DRM_RENDER_ALLOW),
 };
 
 static long xe_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 0b0c24ff62a9..3230ed30e380 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3919,6 +3919,123 @@ int xe_vm_bind_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 	return err;
 }
 
+/*
+ * Map access type, fault type, and fault level from current bspec
+ * specification to user spec abstraction.  The current mapping is
+ * 1-to-1, but if there is ever a hardware change, we will need
+ * this abstraction layer to maintain API stability through the
+ * hardware change.
+ */
+static u8 xe_to_user_access_type(u8 access_type)
+{
+	return access_type;
+}
+
+static u8 xe_to_user_fault_type(u8 fault_type)
+{
+	return fault_type;
+}
+
+static u8 xe_to_user_fault_level(u8 fault_level)
+{
+	return fault_level;
+}
+
+static int fill_faults(struct xe_vm *vm,
+		       struct drm_xe_vm_get_property *args)
+{
+	struct xe_vm_fault __user *usr_ptr = u64_to_user_ptr(args->data);
+	struct xe_vm_fault *fault_list, fault_entry = { 0 };
+	struct xe_vm_fault_entry *entry;
+	int ret = 0, i = 0, count, entry_size;
+
+	entry_size = sizeof(struct xe_vm_fault);
+	count = args->size / entry_size;
+
+	fault_list = kcalloc(count, sizeof(struct xe_vm_fault), GFP_KERNEL);
+	if (!fault_list)
+		return -ENOMEM;
+
+	spin_lock(&vm->faults.lock);
+	list_for_each_entry(entry, &vm->faults.list, list) {
+		if (i == count)
+			break;
+
+		fault_entry.address = entry->address;
+		fault_entry.address_precision = entry->address_precision;
+
+		fault_entry.access_type = xe_to_user_access_type(entry->access_type);
+		fault_entry.fault_type = xe_to_user_fault_type(entry->fault_type);
+		fault_entry.fault_level = xe_to_user_fault_level(entry->fault_level);
+
+		memcpy(&fault_list[i], &fault_entry, entry_size);
+
+		i++;
+	}
+	spin_unlock(&vm->faults.lock);
+
+	ret = copy_to_user(usr_ptr, fault_list, args->size);
+
+	kfree(fault_list);
+	return ret ? -EFAULT : 0;
+}
+
+static int xe_vm_get_property_helper(struct xe_vm *vm,
+				     struct drm_xe_vm_get_property *args)
+{
+	size_t size;
+
+	switch (args->property) {
+	case DRM_XE_VM_GET_PROPERTY_FAULTS:
+		spin_lock(&vm->faults.lock);
+		size = size_mul(sizeof(struct xe_vm_fault), vm->faults.len);
+		spin_unlock(&vm->faults.lock);
+
+		if (!args->size) {
+			args->size = size;
+			return 0;
+		}
+
+		/*
+		 * Number of faults may increase between calls to
+		 * xe_vm_get_property_ioctl, so just report the number of
+		 * faults the user requests if it's less than or equal to
+		 * the number of faults in the VM fault array.
+		 *
+		 * We should also at least assert that the args->size value
+		 * is a multiple of the xe_vm_fault struct size.
+		 */
+		if (args->size > size || args->size % sizeof(struct xe_vm_fault))
+			return -EINVAL;
+
+		return fill_faults(vm, args);
+	}
+	return -EINVAL;
+}
+
+int xe_vm_get_property_ioctl(struct drm_device *drm, void *data,
+			     struct drm_file *file)
+{
+	struct xe_device *xe = to_xe_device(drm);
+	struct xe_file *xef = to_xe_file(file);
+	struct drm_xe_vm_get_property *args = data;
+	struct xe_vm *vm;
+	int ret = 0;
+
+	if (XE_IOCTL_DBG(xe, args->reserved[0] || args->reserved[1] ||
+			     args->reserved[2]))
+		return -EINVAL;
+
+	vm = xe_vm_lookup(xef, args->vm_id);
+	if (XE_IOCTL_DBG(xe, !vm))
+		return -ENOENT;
+
+	ret = xe_vm_get_property_helper(vm, args);
+
+	xe_vm_put(vm);
+	return ret;
+}
+
 /**
  * xe_vm_bind_kernel_bo - bind a kernel BO to a VM
  * @vm: VM to bind the BO to
diff --git a/drivers/gpu/drm/xe/xe_vm.h b/drivers/gpu/drm/xe/xe_vm.h
index fd3fc60f92bb..0412391265dc 100644
--- a/drivers/gpu/drm/xe/xe_vm.h
+++ b/drivers/gpu/drm/xe/xe_vm.h
@@ -210,6 +210,9 @@ int xe_vm_destroy_ioctl(struct drm_device *dev, void *data,
 int xe_vm_bind_ioctl(struct drm_device *dev, void *data,
 		     struct drm_file *file);
 int xe_vm_query_vmas_attrs_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
+int xe_vm_get_property_ioctl(struct drm_device *dev, void *data,
+			     struct drm_file *file);
+
 void xe_vm_close_and_put(struct xe_vm *vm);
 
 static inline bool xe_vm_in_fault_mode(struct xe_vm *vm)
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* ✗ CI.checkpatch: warning for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (4 preceding siblings ...)
  2026-02-06 16:47 ` [PATCH v33 5/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
@ 2026-02-06 16:52 ` Patchwork
  2026-02-06 16:53 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-06 16:52 UTC (permalink / raw)
  To: Jonathan Cavitt; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
URL   : https://patchwork.freedesktop.org/series/161293/
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
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1a18cdcbf389e6e9cb20caa8bf559852bf46d556
Author: Jonathan Cavitt <jonathan.cavitt@intel.com>
Date:   Fri Feb 6 16:47:37 2026 +0000

    drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
    
    Add support for userspace to request a list of observed faults
    from a specified VM.
    
    v2:
    - Only allow querying of failed pagefaults (Matt Brost)
    
    v3:
    - Remove unnecessary size parameter from helper function, as it
      is a property of the arguments. (jcavitt)
    - Remove unnecessary copy_from_user (Jainxun)
    - Set address_precision to 1 (Jainxun)
    - Report max size instead of dynamic size for memory allocation
      purposes.  Total memory usage is reported separately.
    
    v4:
    - Return int from xe_vm_get_property_size (Shuicheng)
    - Fix memory leak (Shuicheng)
    - Remove unnecessary size variable (jcavitt)
    
    v5:
    - Rename ioctl to xe_vm_get_faults_ioctl (jcavitt)
    - Update fill_property_pfs to eliminate need for kzalloc (Jianxun)
    
    v6:
    - Repair and move fill_faults break condition (Dan Carpenter)
    - Free vm after use (jcavitt)
    - Combine assertions (jcavitt)
    - Expand size check in xe_vm_get_faults_ioctl (jcavitt)
    - Remove return mask from fill_faults, as return is already -EFAULT or 0
      (jcavitt)
    
    v7:
    - Revert back to using xe_vm_get_property_ioctl
    - Apply better copy_to_user logic (jcavitt)
    
    v8:
    - Fix and clean up error value handling in ioctl (jcavitt)
    - Reapply return mask for fill_faults (jcavitt)
    
    v9:
    - Future-proof size logic for zero-size properties (jcavitt)
    - Add access and fault types (Jianxun)
    - Remove address type (Jianxun)
    
    v10:
    - Remove unnecessary switch case logic (Raag)
    - Compress size get, size validation, and property fill functions into a
      single helper function (jcavitt)
    - Assert valid size (jcavitt)
    
    v11:
    - Remove unnecessary else condition
    - Correct backwards helper function size logic (jcavitt)
    
    v12:
    - Use size_t instead of int (Raag)
    
    v13:
    - Remove engine class and instance (Ivan)
    
    v14:
    - Map access type, fault type, and fault level to user macros (Matt
      Brost, Ivan)
    
    v15:
    - Remove unnecessary size assertion (jcavitt)
    
    v16:
    - Nit fixes (Matt Brost)
    
    v17:
    - Rebase and refactor (jcavitt)
    
    v18:
    - Do not copy_to_user in critical section (Matt Brost)
    - Assert args->size is multiple of sizeof(struct xe_vm_fault) (Matt
      Brost)
    
    v19:
    - Remove unnecessary memset (Matt Brost)
    
    uAPI: https://github.com/intel/compute-runtime/pull/878
    Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
    Suggested-by: Matthew Brost <matthew.brost@intel.com>
    Reviewed-by: Matthew Brost <matthew.brost@intel.com>
    Cc: Jainxun Zhang <jianxun.zhang@intel.com>
    Cc: Shuicheng Lin <shuicheng.lin@intel.com>
    Cc: Raag Jadav <raag.jadav@intel.com>
    Cc: Ivan Briano <ivan.briano@intel.com>
+ /mt/dim checkpatch d9124a6be3c7bdaeb14c3629013dde27929dbf04 drm-intel
b73037bc504c drm/xe/xe_pagefault: Disallow writes to read-only VMAs
4301f83a9b17 drm/xe/xe_pagefault: Track address precision per pagefault
b5a1af7cd696 drm/xe/uapi: Define drm_xe_vm_get_property
-:31: WARNING:COMMIT_LOG_USE_LINK: Unknown link reference 'uAPI:', use 'Link:' or 'Closes:' instead
#31: 
uAPI: https://github.com/intel/compute-runtime/pull/878

-:64: WARNING:LONG_LINE: line length of 130 exceeds 100 columns
#64: FILE: include/uapi/drm/xe_drm.h:130:
+#define DRM_IOCTL_XE_VM_GET_PROPERTY		DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_VM_GET_PROPERTY, struct drm_xe_vm_get_property)

total: 0 errors, 2 warnings, 0 checks, 110 lines checked
9361c3bc8eae drm/xe/xe_vm: Add per VM fault info
-:75: WARNING:COMMIT_LOG_USE_LINK: Unknown link reference 'uAPI:', use 'Link:' or 'Closes:' instead
#75: 
uAPI: https://github.com/intel/compute-runtime/pull/878

-:170: WARNING:OOM_MESSAGE: Possible unnecessary 'out of memory' message
#170: FILE: drivers/gpu/drm/xe/xe_vm.c:604:
+	if (!e) {
+		drm_warn(&vm->xe->drm,

total: 0 errors, 2 warnings, 0 checks, 203 lines checked
1a18cdcbf389 drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
-:87: WARNING:COMMIT_LOG_USE_LINK: Unknown link reference 'uAPI:', use 'Link:' or 'Closes:' instead
#87: 
uAPI: https://github.com/intel/compute-runtime/pull/878

-:221: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#221: FILE: drivers/gpu/drm/xe/xe_vm.c:4026:
+	if (XE_IOCTL_DBG(xe, args->reserved[0] || args->reserved[1] ||
+			     args->reserved[2]))

total: 0 errors, 1 warnings, 1 checks, 140 lines checked



^ permalink raw reply	[flat|nested] 15+ messages in thread

* ✓ CI.KUnit: success for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (5 preceding siblings ...)
  2026-02-06 16:52 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2026-02-06 16:53 ` Patchwork
  2026-02-06 17:34 ` ✗ Xe.CI.BAT: failure " Patchwork
  2026-02-07 16:58 ` ✗ Xe.CI.FULL: " Patchwork
  8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-06 16:53 UTC (permalink / raw)
  To: Jonathan Cavitt; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
URL   : https://patchwork.freedesktop.org/series/161293/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:52:35] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:52:39] 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
[16:53:11] Starting KUnit Kernel (1/1)...
[16:53:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:53:12] ================== guc_buf (11 subtests) ===================
[16:53:12] [PASSED] test_smallest
[16:53:12] [PASSED] test_largest
[16:53:12] [PASSED] test_granular
[16:53:12] [PASSED] test_unique
[16:53:12] [PASSED] test_overlap
[16:53:12] [PASSED] test_reusable
[16:53:12] [PASSED] test_too_big
[16:53:12] [PASSED] test_flush
[16:53:12] [PASSED] test_lookup
[16:53:12] [PASSED] test_data
[16:53:12] [PASSED] test_class
[16:53:12] ===================== [PASSED] guc_buf =====================
[16:53:12] =================== guc_dbm (7 subtests) ===================
[16:53:12] [PASSED] test_empty
[16:53:12] [PASSED] test_default
[16:53:12] ======================== test_size  ========================
[16:53:12] [PASSED] 4
[16:53:12] [PASSED] 8
[16:53:12] [PASSED] 32
[16:53:12] [PASSED] 256
[16:53:12] ==================== [PASSED] test_size ====================
[16:53:12] ======================= test_reuse  ========================
[16:53:12] [PASSED] 4
[16:53:12] [PASSED] 8
[16:53:12] [PASSED] 32
[16:53:12] [PASSED] 256
[16:53:12] =================== [PASSED] test_reuse ====================
[16:53:12] =================== test_range_overlap  ====================
[16:53:12] [PASSED] 4
[16:53:12] [PASSED] 8
[16:53:12] [PASSED] 32
[16:53:12] [PASSED] 256
[16:53:12] =============== [PASSED] test_range_overlap ================
[16:53:12] =================== test_range_compact  ====================
[16:53:12] [PASSED] 4
[16:53:12] [PASSED] 8
[16:53:12] [PASSED] 32
[16:53:12] [PASSED] 256
[16:53:12] =============== [PASSED] test_range_compact ================
[16:53:12] ==================== test_range_spare  =====================
[16:53:12] [PASSED] 4
[16:53:12] [PASSED] 8
[16:53:12] [PASSED] 32
[16:53:12] [PASSED] 256
[16:53:12] ================ [PASSED] test_range_spare =================
[16:53:12] ===================== [PASSED] guc_dbm =====================
[16:53:12] =================== guc_idm (6 subtests) ===================
[16:53:12] [PASSED] bad_init
[16:53:12] [PASSED] no_init
[16:53:12] [PASSED] init_fini
[16:53:12] [PASSED] check_used
[16:53:12] [PASSED] check_quota
[16:53:12] [PASSED] check_all
[16:53:12] ===================== [PASSED] guc_idm =====================
[16:53:12] ================== no_relay (3 subtests) ===================
[16:53:12] [PASSED] xe_drops_guc2pf_if_not_ready
[16:53:12] [PASSED] xe_drops_guc2vf_if_not_ready
[16:53:12] [PASSED] xe_rejects_send_if_not_ready
[16:53:12] ==================== [PASSED] no_relay =====================
[16:53:12] ================== pf_relay (14 subtests) ==================
[16:53:12] [PASSED] pf_rejects_guc2pf_too_short
[16:53:12] [PASSED] pf_rejects_guc2pf_too_long
[16:53:12] [PASSED] pf_rejects_guc2pf_no_payload
[16:53:12] [PASSED] pf_fails_no_payload
[16:53:12] [PASSED] pf_fails_bad_origin
[16:53:12] [PASSED] pf_fails_bad_type
[16:53:12] [PASSED] pf_txn_reports_error
[16:53:12] [PASSED] pf_txn_sends_pf2guc
[16:53:12] [PASSED] pf_sends_pf2guc
[16:53:12] [SKIPPED] pf_loopback_nop
[16:53:12] [SKIPPED] pf_loopback_echo
[16:53:12] [SKIPPED] pf_loopback_fail
[16:53:12] [SKIPPED] pf_loopback_busy
[16:53:12] [SKIPPED] pf_loopback_retry
[16:53:12] ==================== [PASSED] pf_relay =====================
[16:53:12] ================== vf_relay (3 subtests) ===================
[16:53:12] [PASSED] vf_rejects_guc2vf_too_short
[16:53:12] [PASSED] vf_rejects_guc2vf_too_long
[16:53:12] [PASSED] vf_rejects_guc2vf_no_payload
[16:53:12] ==================== [PASSED] vf_relay =====================
[16:53:12] ================ pf_gt_config (6 subtests) =================
[16:53:12] [PASSED] fair_contexts_1vf
[16:53:12] [PASSED] fair_doorbells_1vf
[16:53:12] [PASSED] fair_ggtt_1vf
[16:53:12] ====================== fair_contexts  ======================
[16:53:12] [PASSED] 1 VF
[16:53:12] [PASSED] 2 VFs
[16:53:12] [PASSED] 3 VFs
[16:53:12] [PASSED] 4 VFs
[16:53:12] [PASSED] 5 VFs
[16:53:12] [PASSED] 6 VFs
[16:53:12] [PASSED] 7 VFs
[16:53:12] [PASSED] 8 VFs
[16:53:12] [PASSED] 9 VFs
[16:53:12] [PASSED] 10 VFs
[16:53:12] [PASSED] 11 VFs
[16:53:12] [PASSED] 12 VFs
[16:53:12] [PASSED] 13 VFs
[16:53:12] [PASSED] 14 VFs
[16:53:12] [PASSED] 15 VFs
[16:53:12] [PASSED] 16 VFs
[16:53:12] [PASSED] 17 VFs
[16:53:12] [PASSED] 18 VFs
[16:53:12] [PASSED] 19 VFs
[16:53:12] [PASSED] 20 VFs
[16:53:12] [PASSED] 21 VFs
[16:53:12] [PASSED] 22 VFs
[16:53:12] [PASSED] 23 VFs
[16:53:12] [PASSED] 24 VFs
[16:53:12] [PASSED] 25 VFs
[16:53:12] [PASSED] 26 VFs
[16:53:12] [PASSED] 27 VFs
[16:53:12] [PASSED] 28 VFs
[16:53:12] [PASSED] 29 VFs
[16:53:12] [PASSED] 30 VFs
[16:53:12] [PASSED] 31 VFs
[16:53:12] [PASSED] 32 VFs
[16:53:12] [PASSED] 33 VFs
[16:53:12] [PASSED] 34 VFs
[16:53:12] [PASSED] 35 VFs
[16:53:12] [PASSED] 36 VFs
[16:53:12] [PASSED] 37 VFs
[16:53:12] [PASSED] 38 VFs
[16:53:12] [PASSED] 39 VFs
[16:53:12] [PASSED] 40 VFs
[16:53:12] [PASSED] 41 VFs
[16:53:12] [PASSED] 42 VFs
[16:53:12] [PASSED] 43 VFs
[16:53:12] [PASSED] 44 VFs
[16:53:12] [PASSED] 45 VFs
[16:53:12] [PASSED] 46 VFs
[16:53:12] [PASSED] 47 VFs
[16:53:12] [PASSED] 48 VFs
[16:53:12] [PASSED] 49 VFs
[16:53:12] [PASSED] 50 VFs
[16:53:12] [PASSED] 51 VFs
[16:53:12] [PASSED] 52 VFs
[16:53:12] [PASSED] 53 VFs
[16:53:12] [PASSED] 54 VFs
[16:53:12] [PASSED] 55 VFs
[16:53:12] [PASSED] 56 VFs
[16:53:12] [PASSED] 57 VFs
[16:53:12] [PASSED] 58 VFs
[16:53:12] [PASSED] 59 VFs
[16:53:12] [PASSED] 60 VFs
[16:53:12] [PASSED] 61 VFs
[16:53:12] [PASSED] 62 VFs
[16:53:12] [PASSED] 63 VFs
[16:53:12] ================== [PASSED] fair_contexts ==================
[16:53:12] ===================== fair_doorbells  ======================
[16:53:12] [PASSED] 1 VF
[16:53:12] [PASSED] 2 VFs
[16:53:12] [PASSED] 3 VFs
[16:53:12] [PASSED] 4 VFs
[16:53:12] [PASSED] 5 VFs
[16:53:12] [PASSED] 6 VFs
[16:53:12] [PASSED] 7 VFs
[16:53:12] [PASSED] 8 VFs
[16:53:12] [PASSED] 9 VFs
[16:53:12] [PASSED] 10 VFs
[16:53:12] [PASSED] 11 VFs
[16:53:12] [PASSED] 12 VFs
[16:53:12] [PASSED] 13 VFs
[16:53:12] [PASSED] 14 VFs
[16:53:12] [PASSED] 15 VFs
[16:53:12] [PASSED] 16 VFs
[16:53:12] [PASSED] 17 VFs
[16:53:12] [PASSED] 18 VFs
[16:53:12] [PASSED] 19 VFs
[16:53:12] [PASSED] 20 VFs
[16:53:12] [PASSED] 21 VFs
[16:53:12] [PASSED] 22 VFs
[16:53:12] [PASSED] 23 VFs
[16:53:12] [PASSED] 24 VFs
[16:53:12] [PASSED] 25 VFs
[16:53:12] [PASSED] 26 VFs
[16:53:12] [PASSED] 27 VFs
[16:53:12] [PASSED] 28 VFs
[16:53:12] [PASSED] 29 VFs
[16:53:12] [PASSED] 30 VFs
[16:53:12] [PASSED] 31 VFs
[16:53:12] [PASSED] 32 VFs
[16:53:12] [PASSED] 33 VFs
[16:53:12] [PASSED] 34 VFs
[16:53:12] [PASSED] 35 VFs
[16:53:12] [PASSED] 36 VFs
[16:53:12] [PASSED] 37 VFs
[16:53:12] [PASSED] 38 VFs
[16:53:12] [PASSED] 39 VFs
[16:53:12] [PASSED] 40 VFs
[16:53:12] [PASSED] 41 VFs
[16:53:12] [PASSED] 42 VFs
[16:53:12] [PASSED] 43 VFs
[16:53:12] [PASSED] 44 VFs
[16:53:12] [PASSED] 45 VFs
[16:53:12] [PASSED] 46 VFs
[16:53:12] [PASSED] 47 VFs
[16:53:12] [PASSED] 48 VFs
[16:53:12] [PASSED] 49 VFs
[16:53:12] [PASSED] 50 VFs
[16:53:12] [PASSED] 51 VFs
[16:53:12] [PASSED] 52 VFs
[16:53:12] [PASSED] 53 VFs
[16:53:12] [PASSED] 54 VFs
[16:53:12] [PASSED] 55 VFs
[16:53:12] [PASSED] 56 VFs
[16:53:12] [PASSED] 57 VFs
[16:53:12] [PASSED] 58 VFs
[16:53:12] [PASSED] 59 VFs
[16:53:12] [PASSED] 60 VFs
[16:53:12] [PASSED] 61 VFs
[16:53:12] [PASSED] 62 VFs
[16:53:12] [PASSED] 63 VFs
[16:53:12] ================= [PASSED] fair_doorbells ==================
[16:53:12] ======================== fair_ggtt  ========================
[16:53:12] [PASSED] 1 VF
[16:53:12] [PASSED] 2 VFs
[16:53:12] [PASSED] 3 VFs
[16:53:12] [PASSED] 4 VFs
[16:53:12] [PASSED] 5 VFs
[16:53:12] [PASSED] 6 VFs
[16:53:12] [PASSED] 7 VFs
[16:53:12] [PASSED] 8 VFs
[16:53:12] [PASSED] 9 VFs
[16:53:12] [PASSED] 10 VFs
[16:53:12] [PASSED] 11 VFs
[16:53:12] [PASSED] 12 VFs
[16:53:12] [PASSED] 13 VFs
[16:53:12] [PASSED] 14 VFs
[16:53:12] [PASSED] 15 VFs
[16:53:12] [PASSED] 16 VFs
[16:53:12] [PASSED] 17 VFs
[16:53:12] [PASSED] 18 VFs
[16:53:12] [PASSED] 19 VFs
[16:53:12] [PASSED] 20 VFs
[16:53:12] [PASSED] 21 VFs
[16:53:12] [PASSED] 22 VFs
[16:53:12] [PASSED] 23 VFs
[16:53:12] [PASSED] 24 VFs
[16:53:12] [PASSED] 25 VFs
[16:53:12] [PASSED] 26 VFs
[16:53:12] [PASSED] 27 VFs
[16:53:12] [PASSED] 28 VFs
[16:53:12] [PASSED] 29 VFs
[16:53:12] [PASSED] 30 VFs
[16:53:12] [PASSED] 31 VFs
[16:53:12] [PASSED] 32 VFs
[16:53:12] [PASSED] 33 VFs
[16:53:12] [PASSED] 34 VFs
[16:53:12] [PASSED] 35 VFs
[16:53:12] [PASSED] 36 VFs
[16:53:12] [PASSED] 37 VFs
[16:53:12] [PASSED] 38 VFs
[16:53:12] [PASSED] 39 VFs
[16:53:12] [PASSED] 40 VFs
[16:53:12] [PASSED] 41 VFs
[16:53:12] [PASSED] 42 VFs
[16:53:12] [PASSED] 43 VFs
[16:53:12] [PASSED] 44 VFs
[16:53:12] [PASSED] 45 VFs
[16:53:12] [PASSED] 46 VFs
[16:53:12] [PASSED] 47 VFs
[16:53:12] [PASSED] 48 VFs
[16:53:12] [PASSED] 49 VFs
[16:53:12] [PASSED] 50 VFs
[16:53:12] [PASSED] 51 VFs
[16:53:12] [PASSED] 52 VFs
[16:53:12] [PASSED] 53 VFs
[16:53:12] [PASSED] 54 VFs
[16:53:12] [PASSED] 55 VFs
[16:53:12] [PASSED] 56 VFs
[16:53:12] [PASSED] 57 VFs
[16:53:12] [PASSED] 58 VFs
[16:53:12] [PASSED] 59 VFs
[16:53:12] [PASSED] 60 VFs
[16:53:12] [PASSED] 61 VFs
[16:53:12] [PASSED] 62 VFs
[16:53:12] [PASSED] 63 VFs
[16:53:12] ==================== [PASSED] fair_ggtt ====================
[16:53:12] ================== [PASSED] pf_gt_config ===================
[16:53:12] ===================== lmtt (1 subtest) =====================
[16:53:12] ======================== test_ops  =========================
[16:53:12] [PASSED] 2-level
[16:53:12] [PASSED] multi-level
[16:53:12] ==================== [PASSED] test_ops =====================
[16:53:12] ====================== [PASSED] lmtt =======================
[16:53:12] ================= pf_service (11 subtests) =================
[16:53:12] [PASSED] pf_negotiate_any
[16:53:12] [PASSED] pf_negotiate_base_match
[16:53:12] [PASSED] pf_negotiate_base_newer
[16:53:12] [PASSED] pf_negotiate_base_next
[16:53:12] [SKIPPED] pf_negotiate_base_older
[16:53:12] [PASSED] pf_negotiate_base_prev
[16:53:12] [PASSED] pf_negotiate_latest_match
[16:53:12] [PASSED] pf_negotiate_latest_newer
[16:53:12] [PASSED] pf_negotiate_latest_next
[16:53:12] [SKIPPED] pf_negotiate_latest_older
[16:53:12] [SKIPPED] pf_negotiate_latest_prev
[16:53:12] =================== [PASSED] pf_service ====================
[16:53:12] ================= xe_guc_g2g (2 subtests) ==================
[16:53:12] ============== xe_live_guc_g2g_kunit_default  ==============
[16:53:12] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:53:12] ============== xe_live_guc_g2g_kunit_allmem  ===============
[16:53:12] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:53:12] =================== [SKIPPED] xe_guc_g2g ===================
[16:53:12] =================== xe_mocs (2 subtests) ===================
[16:53:12] ================ xe_live_mocs_kernel_kunit  ================
[16:53:12] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:53:12] ================ xe_live_mocs_reset_kunit  =================
[16:53:12] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:53:12] ==================== [SKIPPED] xe_mocs =====================
[16:53:12] ================= xe_migrate (2 subtests) ==================
[16:53:12] ================= xe_migrate_sanity_kunit  =================
[16:53:12] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:53:12] ================== xe_validate_ccs_kunit  ==================
[16:53:12] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:53:12] =================== [SKIPPED] xe_migrate ===================
[16:53:12] ================== xe_dma_buf (1 subtest) ==================
[16:53:12] ==================== xe_dma_buf_kunit  =====================
[16:53:12] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:53:12] =================== [SKIPPED] xe_dma_buf ===================
[16:53:12] ================= xe_bo_shrink (1 subtest) =================
[16:53:12] =================== xe_bo_shrink_kunit  ====================
[16:53:12] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:53:12] ================== [SKIPPED] xe_bo_shrink ==================
[16:53:12] ==================== xe_bo (2 subtests) ====================
[16:53:12] ================== xe_ccs_migrate_kunit  ===================
[16:53:12] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:53:12] ==================== xe_bo_evict_kunit  ====================
[16:53:12] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:53:12] ===================== [SKIPPED] xe_bo ======================
[16:53:12] ==================== args (13 subtests) ====================
[16:53:12] [PASSED] count_args_test
[16:53:12] [PASSED] call_args_example
[16:53:12] [PASSED] call_args_test
[16:53:12] [PASSED] drop_first_arg_example
[16:53:12] [PASSED] drop_first_arg_test
[16:53:12] [PASSED] first_arg_example
[16:53:12] [PASSED] first_arg_test
[16:53:12] [PASSED] last_arg_example
[16:53:12] [PASSED] last_arg_test
[16:53:12] [PASSED] pick_arg_example
[16:53:12] [PASSED] if_args_example
[16:53:12] [PASSED] if_args_test
[16:53:12] [PASSED] sep_comma_example
[16:53:12] ====================== [PASSED] args =======================
[16:53:12] =================== xe_pci (3 subtests) ====================
[16:53:12] ==================== check_graphics_ip  ====================
[16:53:12] [PASSED] 12.00 Xe_LP
[16:53:12] [PASSED] 12.10 Xe_LP+
[16:53:12] [PASSED] 12.55 Xe_HPG
[16:53:12] [PASSED] 12.60 Xe_HPC
[16:53:12] [PASSED] 12.70 Xe_LPG
[16:53:12] [PASSED] 12.71 Xe_LPG
[16:53:12] [PASSED] 12.74 Xe_LPG+
[16:53:12] [PASSED] 20.01 Xe2_HPG
[16:53:12] [PASSED] 20.02 Xe2_HPG
[16:53:12] [PASSED] 20.04 Xe2_LPG
[16:53:12] [PASSED] 30.00 Xe3_LPG
[16:53:12] [PASSED] 30.01 Xe3_LPG
[16:53:12] [PASSED] 30.03 Xe3_LPG
[16:53:12] [PASSED] 30.04 Xe3_LPG
[16:53:12] [PASSED] 30.05 Xe3_LPG
[16:53:12] [PASSED] 35.11 Xe3p_XPC
[16:53:12] ================ [PASSED] check_graphics_ip ================
[16:53:12] ===================== check_media_ip  ======================
[16:53:12] [PASSED] 12.00 Xe_M
[16:53:12] [PASSED] 12.55 Xe_HPM
[16:53:12] [PASSED] 13.00 Xe_LPM+
[16:53:12] [PASSED] 13.01 Xe2_HPM
[16:53:12] [PASSED] 20.00 Xe2_LPM
[16:53:12] [PASSED] 30.00 Xe3_LPM
[16:53:12] [PASSED] 30.02 Xe3_LPM
[16:53:12] [PASSED] 35.00 Xe3p_LPM
[16:53:12] [PASSED] 35.03 Xe3p_HPM
[16:53:12] ================= [PASSED] check_media_ip ==================
[16:53:12] =================== check_platform_desc  ===================
[16:53:12] [PASSED] 0x9A60 (TIGERLAKE)
[16:53:12] [PASSED] 0x9A68 (TIGERLAKE)
[16:53:12] [PASSED] 0x9A70 (TIGERLAKE)
[16:53:12] [PASSED] 0x9A40 (TIGERLAKE)
[16:53:12] [PASSED] 0x9A49 (TIGERLAKE)
[16:53:12] [PASSED] 0x9A59 (TIGERLAKE)
[16:53:12] [PASSED] 0x9A78 (TIGERLAKE)
[16:53:12] [PASSED] 0x9AC0 (TIGERLAKE)
[16:53:12] [PASSED] 0x9AC9 (TIGERLAKE)
[16:53:12] [PASSED] 0x9AD9 (TIGERLAKE)
[16:53:12] [PASSED] 0x9AF8 (TIGERLAKE)
[16:53:12] [PASSED] 0x4C80 (ROCKETLAKE)
[16:53:12] [PASSED] 0x4C8A (ROCKETLAKE)
[16:53:12] [PASSED] 0x4C8B (ROCKETLAKE)
[16:53:12] [PASSED] 0x4C8C (ROCKETLAKE)
[16:53:12] [PASSED] 0x4C90 (ROCKETLAKE)
[16:53:12] [PASSED] 0x4C9A (ROCKETLAKE)
[16:53:12] [PASSED] 0x4680 (ALDERLAKE_S)
[16:53:12] [PASSED] 0x4682 (ALDERLAKE_S)
[16:53:12] [PASSED] 0x4688 (ALDERLAKE_S)
[16:53:12] [PASSED] 0x468A (ALDERLAKE_S)
[16:53:12] [PASSED] 0x468B (ALDERLAKE_S)
[16:53:12] [PASSED] 0x4690 (ALDERLAKE_S)
[16:53:12] [PASSED] 0x4692 (ALDERLAKE_S)
[16:53:12] [PASSED] 0x4693 (ALDERLAKE_S)
[16:53:12] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46AA (ALDERLAKE_P)
[16:53:12] [PASSED] 0x462A (ALDERLAKE_P)
[16:53:12] [PASSED] 0x4626 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[16:53:12] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:53:12] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:53:12] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:53:12] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:53:12] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:53:12] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:53:12] [PASSED] 0xA721 (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA720 (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:53:12] [PASSED] 0xA780 (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA781 (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA782 (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA783 (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA788 (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA789 (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA78A (ALDERLAKE_S)
[16:53:12] [PASSED] 0xA78B (ALDERLAKE_S)
[16:53:12] [PASSED] 0x4905 (DG1)
[16:53:12] [PASSED] 0x4906 (DG1)
[16:53:12] [PASSED] 0x4907 (DG1)
[16:53:12] [PASSED] 0x4908 (DG1)
[16:53:12] [PASSED] 0x4909 (DG1)
[16:53:12] [PASSED] 0x56C0 (DG2)
[16:53:12] [PASSED] 0x56C2 (DG2)
[16:53:12] [PASSED] 0x56C1 (DG2)
[16:53:12] [PASSED] 0x7D51 (METEORLAKE)
[16:53:12] [PASSED] 0x7DD1 (METEORLAKE)
[16:53:12] [PASSED] 0x7D41 (METEORLAKE)
[16:53:12] [PASSED] 0x7D67 (METEORLAKE)
[16:53:12] [PASSED] 0xB640 (METEORLAKE)
[16:53:12] [PASSED] 0x56A0 (DG2)
[16:53:12] [PASSED] 0x56A1 (DG2)
[16:53:12] [PASSED] 0x56A2 (DG2)
[16:53:12] [PASSED] 0x56BE (DG2)
[16:53:12] [PASSED] 0x56BF (DG2)
[16:53:12] [PASSED] 0x5690 (DG2)
[16:53:12] [PASSED] 0x5691 (DG2)
[16:53:12] [PASSED] 0x5692 (DG2)
[16:53:12] [PASSED] 0x56A5 (DG2)
[16:53:12] [PASSED] 0x56A6 (DG2)
[16:53:12] [PASSED] 0x56B0 (DG2)
[16:53:12] [PASSED] 0x56B1 (DG2)
[16:53:12] [PASSED] 0x56BA (DG2)
[16:53:12] [PASSED] 0x56BB (DG2)
[16:53:12] [PASSED] 0x56BC (DG2)
[16:53:12] [PASSED] 0x56BD (DG2)
[16:53:12] [PASSED] 0x5693 (DG2)
[16:53:12] [PASSED] 0x5694 (DG2)
[16:53:12] [PASSED] 0x5695 (DG2)
[16:53:12] [PASSED] 0x56A3 (DG2)
[16:53:12] [PASSED] 0x56A4 (DG2)
[16:53:12] [PASSED] 0x56B2 (DG2)
[16:53:12] [PASSED] 0x56B3 (DG2)
[16:53:12] [PASSED] 0x5696 (DG2)
[16:53:12] [PASSED] 0x5697 (DG2)
[16:53:12] [PASSED] 0xB69 (PVC)
[16:53:12] [PASSED] 0xB6E (PVC)
[16:53:12] [PASSED] 0xBD4 (PVC)
[16:53:12] [PASSED] 0xBD5 (PVC)
[16:53:12] [PASSED] 0xBD6 (PVC)
[16:53:12] [PASSED] 0xBD7 (PVC)
[16:53:12] [PASSED] 0xBD8 (PVC)
[16:53:12] [PASSED] 0xBD9 (PVC)
[16:53:12] [PASSED] 0xBDA (PVC)
[16:53:12] [PASSED] 0xBDB (PVC)
[16:53:12] [PASSED] 0xBE0 (PVC)
[16:53:12] [PASSED] 0xBE1 (PVC)
[16:53:12] [PASSED] 0xBE5 (PVC)
[16:53:12] [PASSED] 0x7D40 (METEORLAKE)
[16:53:12] [PASSED] 0x7D45 (METEORLAKE)
[16:53:12] [PASSED] 0x7D55 (METEORLAKE)
[16:53:12] [PASSED] 0x7D60 (METEORLAKE)
[16:53:12] [PASSED] 0x7DD5 (METEORLAKE)
[16:53:12] [PASSED] 0x6420 (LUNARLAKE)
[16:53:12] [PASSED] 0x64A0 (LUNARLAKE)
[16:53:12] [PASSED] 0x64B0 (LUNARLAKE)
[16:53:12] [PASSED] 0xE202 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE209 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE20B (BATTLEMAGE)
[16:53:12] [PASSED] 0xE20C (BATTLEMAGE)
[16:53:12] [PASSED] 0xE20D (BATTLEMAGE)
[16:53:12] [PASSED] 0xE210 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE211 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE212 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE216 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE220 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE221 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE222 (BATTLEMAGE)
[16:53:12] [PASSED] 0xE223 (BATTLEMAGE)
[16:53:12] [PASSED] 0xB080 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB081 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB082 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB083 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB084 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB085 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB086 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB087 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB08F (PANTHERLAKE)
[16:53:12] [PASSED] 0xB090 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:53:12] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:53:12] [PASSED] 0xFD80 (PANTHERLAKE)
[16:53:12] [PASSED] 0xFD81 (PANTHERLAKE)
[16:53:12] [PASSED] 0xD740 (NOVALAKE_S)
[16:53:12] [PASSED] 0xD741 (NOVALAKE_S)
[16:53:12] [PASSED] 0xD742 (NOVALAKE_S)
[16:53:12] [PASSED] 0xD743 (NOVALAKE_S)
[16:53:12] [PASSED] 0xD744 (NOVALAKE_S)
[16:53:12] [PASSED] 0xD745 (NOVALAKE_S)
[16:53:12] [PASSED] 0x674C (CRESCENTISLAND)
[16:53:12] =============== [PASSED] check_platform_desc ===============
[16:53:12] ===================== [PASSED] xe_pci ======================
[16:53:12] =================== xe_rtp (2 subtests) ====================
[16:53:12] =============== xe_rtp_process_to_sr_tests  ================
[16:53:12] [PASSED] coalesce-same-reg
[16:53:12] [PASSED] no-match-no-add
[16:53:12] [PASSED] match-or
[16:53:12] [PASSED] match-or-xfail
[16:53:12] [PASSED] no-match-no-add-multiple-rules
[16:53:12] [PASSED] two-regs-two-entries
[16:53:12] [PASSED] clr-one-set-other
[16:53:12] [PASSED] set-field
[16:53:12] [PASSED] conflict-duplicate
[16:53:12] [PASSED] conflict-not-disjoint
[16:53:12] [PASSED] conflict-reg-type
[16:53:12] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:53:12] ================== xe_rtp_process_tests  ===================
[16:53:12] [PASSED] active1
[16:53:12] [PASSED] active2
[16:53:12] [PASSED] active-inactive
[16:53:12] [PASSED] inactive-active
[16:53:12] [PASSED] inactive-1st_or_active-inactive
[16:53:12] [PASSED] inactive-2nd_or_active-inactive
[16:53:12] [PASSED] inactive-last_or_active-inactive
[16:53:12] [PASSED] inactive-no_or_active-inactive
[16:53:12] ============== [PASSED] xe_rtp_process_tests ===============
[16:53:12] ===================== [PASSED] xe_rtp ======================
[16:53:12] ==================== xe_wa (1 subtest) =====================
[16:53:12] ======================== xe_wa_gt  =========================
[16:53:12] [PASSED] TIGERLAKE B0
[16:53:12] [PASSED] DG1 A0
[16:53:12] [PASSED] DG1 B0
[16:53:12] [PASSED] ALDERLAKE_S A0
[16:53:12] [PASSED] ALDERLAKE_S B0
[16:53:12] [PASSED] ALDERLAKE_S C0
[16:53:12] [PASSED] ALDERLAKE_S D0
[16:53:12] [PASSED] ALDERLAKE_P A0
[16:53:12] [PASSED] ALDERLAKE_P B0
[16:53:12] [PASSED] ALDERLAKE_P C0
[16:53:12] [PASSED] ALDERLAKE_S RPLS D0
[16:53:12] [PASSED] ALDERLAKE_P RPLU E0
[16:53:12] [PASSED] DG2 G10 C0
[16:53:12] [PASSED] DG2 G11 B1
[16:53:12] [PASSED] DG2 G12 A1
[16:53:12] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:53:12] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:53:12] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:53:12] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:53:12] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:53:12] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:53:12] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:53:12] ==================== [PASSED] xe_wa_gt =====================
[16:53:12] ====================== [PASSED] xe_wa ======================
[16:53:12] ============================================================
[16:53:12] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[16:53:12] Elapsed time: 36.673s total, 4.263s configuring, 31.894s building, 0.479s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:53:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:53:14] 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
[16:53:39] Starting KUnit Kernel (1/1)...
[16:53:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:53:39] ============ drm_test_pick_cmdline (2 subtests) ============
[16:53:39] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:53:39] =============== drm_test_pick_cmdline_named  ===============
[16:53:39] [PASSED] NTSC
[16:53:39] [PASSED] NTSC-J
[16:53:39] [PASSED] PAL
[16:53:39] [PASSED] PAL-M
[16:53:39] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:53:39] ============== [PASSED] drm_test_pick_cmdline ==============
[16:53:39] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:53:39] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:53:39] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:53:39] =========== drm_validate_clone_mode (2 subtests) ===========
[16:53:39] ============== drm_test_check_in_clone_mode  ===============
[16:53:39] [PASSED] in_clone_mode
[16:53:39] [PASSED] not_in_clone_mode
[16:53:39] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:53:39] =============== drm_test_check_valid_clones  ===============
[16:53:39] [PASSED] not_in_clone_mode
[16:53:39] [PASSED] valid_clone
[16:53:39] [PASSED] invalid_clone
[16:53:39] =========== [PASSED] drm_test_check_valid_clones ===========
[16:53:39] ============= [PASSED] drm_validate_clone_mode =============
[16:53:39] ============= drm_validate_modeset (1 subtest) =============
[16:53:39] [PASSED] drm_test_check_connector_changed_modeset
[16:53:39] ============== [PASSED] drm_validate_modeset ===============
[16:53:39] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:53:39] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:53:39] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:53:39] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:53:39] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:53:39] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:53:39] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:53:39] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:53:39] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:53:39] ============== drm_bridge_alloc (2 subtests) ===============
[16:53:39] [PASSED] drm_test_drm_bridge_alloc_basic
[16:53:39] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:53:39] ================ [PASSED] drm_bridge_alloc =================
[16:53:39] ============= drm_cmdline_parser (40 subtests) =============
[16:53:39] [PASSED] drm_test_cmdline_force_d_only
[16:53:39] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:53:39] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:53:39] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:53:39] [PASSED] drm_test_cmdline_force_e_only
[16:53:39] [PASSED] drm_test_cmdline_res
[16:53:39] [PASSED] drm_test_cmdline_res_vesa
[16:53:39] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:53:39] [PASSED] drm_test_cmdline_res_rblank
[16:53:39] [PASSED] drm_test_cmdline_res_bpp
[16:53:39] [PASSED] drm_test_cmdline_res_refresh
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:53:39] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:53:39] [PASSED] drm_test_cmdline_res_margins_force_on
[16:53:39] [PASSED] drm_test_cmdline_res_vesa_margins
[16:53:39] [PASSED] drm_test_cmdline_name
[16:53:39] [PASSED] drm_test_cmdline_name_bpp
[16:53:39] [PASSED] drm_test_cmdline_name_option
[16:53:39] [PASSED] drm_test_cmdline_name_bpp_option
[16:53:39] [PASSED] drm_test_cmdline_rotate_0
[16:53:39] [PASSED] drm_test_cmdline_rotate_90
[16:53:39] [PASSED] drm_test_cmdline_rotate_180
[16:53:39] [PASSED] drm_test_cmdline_rotate_270
[16:53:39] [PASSED] drm_test_cmdline_hmirror
[16:53:39] [PASSED] drm_test_cmdline_vmirror
[16:53:39] [PASSED] drm_test_cmdline_margin_options
[16:53:39] [PASSED] drm_test_cmdline_multiple_options
[16:53:39] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:53:39] [PASSED] drm_test_cmdline_extra_and_option
[16:53:39] [PASSED] drm_test_cmdline_freestanding_options
[16:53:39] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:53:39] [PASSED] drm_test_cmdline_panel_orientation
[16:53:39] ================ drm_test_cmdline_invalid  =================
[16:53:39] [PASSED] margin_only
[16:53:39] [PASSED] interlace_only
[16:53:39] [PASSED] res_missing_x
[16:53:39] [PASSED] res_missing_y
[16:53:39] [PASSED] res_bad_y
[16:53:39] [PASSED] res_missing_y_bpp
[16:53:39] [PASSED] res_bad_bpp
[16:53:39] [PASSED] res_bad_refresh
[16:53:39] [PASSED] res_bpp_refresh_force_on_off
[16:53:39] [PASSED] res_invalid_mode
[16:53:39] [PASSED] res_bpp_wrong_place_mode
[16:53:39] [PASSED] name_bpp_refresh
[16:53:39] [PASSED] name_refresh
[16:53:39] [PASSED] name_refresh_wrong_mode
[16:53:39] [PASSED] name_refresh_invalid_mode
[16:53:39] [PASSED] rotate_multiple
[16:53:39] [PASSED] rotate_invalid_val
[16:53:39] [PASSED] rotate_truncated
[16:53:39] [PASSED] invalid_option
[16:53:39] [PASSED] invalid_tv_option
[16:53:39] [PASSED] truncated_tv_option
[16:53:39] ============ [PASSED] drm_test_cmdline_invalid =============
[16:53:39] =============== drm_test_cmdline_tv_options  ===============
[16:53:39] [PASSED] NTSC
[16:53:39] [PASSED] NTSC_443
[16:53:39] [PASSED] NTSC_J
[16:53:39] [PASSED] PAL
[16:53:39] [PASSED] PAL_M
[16:53:39] [PASSED] PAL_N
[16:53:39] [PASSED] SECAM
[16:53:39] [PASSED] MONO_525
[16:53:39] [PASSED] MONO_625
[16:53:39] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:53:39] =============== [PASSED] drm_cmdline_parser ================
[16:53:39] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:53:39] [PASSED] drm_test_connector_hdmi_init_valid
[16:53:39] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:53:39] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:53:39] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:53:39] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:53:39] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:53:39] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:53:39] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:53:39] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[16:53:39] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:53:39] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:53:39] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:53:39] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:53:39] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:53:39] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:53:39] [PASSED] drm_test_connector_hdmi_init_null_product
[16:53:39] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:53:39] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:53:39] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:53:39] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:53:39] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:53:39] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:53:39] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:53:39] ========= drm_test_connector_hdmi_init_type_valid  =========
[16:53:39] [PASSED] HDMI-A
[16:53:39] [PASSED] HDMI-B
[16:53:39] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:53:39] ======== drm_test_connector_hdmi_init_type_invalid  ========
[16:53:39] [PASSED] Unknown
[16:53:39] [PASSED] VGA
[16:53:39] [PASSED] DVI-I
[16:53:39] [PASSED] DVI-D
[16:53:39] [PASSED] DVI-A
[16:53:39] [PASSED] Composite
[16:53:39] [PASSED] SVIDEO
[16:53:39] [PASSED] LVDS
[16:53:39] [PASSED] Component
[16:53:39] [PASSED] DIN
[16:53:39] [PASSED] DP
[16:53:39] [PASSED] TV
[16:53:39] [PASSED] eDP
[16:53:39] [PASSED] Virtual
[16:53:39] [PASSED] DSI
[16:53:39] [PASSED] DPI
[16:53:39] [PASSED] Writeback
[16:53:39] [PASSED] SPI
[16:53:39] [PASSED] USB
[16:53:39] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:53:39] ============ [PASSED] drmm_connector_hdmi_init =============
[16:53:39] ============= drmm_connector_init (3 subtests) =============
[16:53:39] [PASSED] drm_test_drmm_connector_init
[16:53:39] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:53:39] ========= drm_test_drmm_connector_init_type_valid  =========
[16:53:39] [PASSED] Unknown
[16:53:39] [PASSED] VGA
[16:53:39] [PASSED] DVI-I
[16:53:39] [PASSED] DVI-D
[16:53:39] [PASSED] DVI-A
[16:53:39] [PASSED] Composite
[16:53:39] [PASSED] SVIDEO
[16:53:39] [PASSED] LVDS
[16:53:39] [PASSED] Component
[16:53:39] [PASSED] DIN
[16:53:39] [PASSED] DP
[16:53:39] [PASSED] HDMI-A
[16:53:39] [PASSED] HDMI-B
[16:53:39] [PASSED] TV
[16:53:39] [PASSED] eDP
[16:53:39] [PASSED] Virtual
[16:53:39] [PASSED] DSI
[16:53:39] [PASSED] DPI
[16:53:39] [PASSED] Writeback
[16:53:39] [PASSED] SPI
[16:53:39] [PASSED] USB
[16:53:39] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:53:39] =============== [PASSED] drmm_connector_init ===============
[16:53:39] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_init
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:53:39] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[16:53:39] [PASSED] Unknown
[16:53:39] [PASSED] VGA
[16:53:39] [PASSED] DVI-I
[16:53:39] [PASSED] DVI-D
[16:53:39] [PASSED] DVI-A
[16:53:39] [PASSED] Composite
[16:53:39] [PASSED] SVIDEO
[16:53:39] [PASSED] LVDS
[16:53:39] [PASSED] Component
[16:53:39] [PASSED] DIN
[16:53:39] [PASSED] DP
[16:53:39] [PASSED] HDMI-A
[16:53:39] [PASSED] HDMI-B
[16:53:39] [PASSED] TV
[16:53:39] [PASSED] eDP
[16:53:39] [PASSED] Virtual
[16:53:39] [PASSED] DSI
[16:53:39] [PASSED] DPI
[16:53:39] [PASSED] Writeback
[16:53:39] [PASSED] SPI
[16:53:39] [PASSED] USB
[16:53:39] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:53:39] ======== drm_test_drm_connector_dynamic_init_name  =========
[16:53:39] [PASSED] Unknown
[16:53:39] [PASSED] VGA
[16:53:39] [PASSED] DVI-I
[16:53:39] [PASSED] DVI-D
[16:53:39] [PASSED] DVI-A
[16:53:39] [PASSED] Composite
[16:53:39] [PASSED] SVIDEO
[16:53:39] [PASSED] LVDS
[16:53:39] [PASSED] Component
[16:53:39] [PASSED] DIN
[16:53:39] [PASSED] DP
[16:53:39] [PASSED] HDMI-A
[16:53:39] [PASSED] HDMI-B
[16:53:39] [PASSED] TV
[16:53:39] [PASSED] eDP
[16:53:39] [PASSED] Virtual
[16:53:39] [PASSED] DSI
[16:53:39] [PASSED] DPI
[16:53:39] [PASSED] Writeback
[16:53:39] [PASSED] SPI
[16:53:39] [PASSED] USB
[16:53:39] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:53:39] =========== [PASSED] drm_connector_dynamic_init ============
[16:53:39] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:53:39] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:53:39] ======= drm_connector_dynamic_register (7 subtests) ========
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:53:39] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:53:39] ========= [PASSED] drm_connector_dynamic_register ==========
[16:53:39] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:53:39] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:53:39] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:53:39] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:53:39] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:53:39] ========== drm_test_get_tv_mode_from_name_valid  ===========
[16:53:39] [PASSED] NTSC
[16:53:39] [PASSED] NTSC-443
[16:53:39] [PASSED] NTSC-J
[16:53:39] [PASSED] PAL
[16:53:39] [PASSED] PAL-M
[16:53:39] [PASSED] PAL-N
[16:53:39] [PASSED] SECAM
[16:53:39] [PASSED] Mono
[16:53:39] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:53:39] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:53:39] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:53:39] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:53:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:53:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:53:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:53:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:53:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:53:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:53:39] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[16:53:39] [PASSED] VIC 96
[16:53:39] [PASSED] VIC 97
[16:53:39] [PASSED] VIC 101
[16:53:39] [PASSED] VIC 102
[16:53:39] [PASSED] VIC 106
[16:53:39] [PASSED] VIC 107
[16:53:39] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:53:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:53:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:53:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:53:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:53:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:53:39] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:53:39] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:53:39] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[16:53:39] [PASSED] Automatic
[16:53:39] [PASSED] Full
[16:53:39] [PASSED] Limited 16:235
[16:53:39] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:53:39] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:53:39] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:53:39] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:53:39] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[16:53:39] [PASSED] RGB
[16:53:39] [PASSED] YUV 4:2:0
[16:53:39] [PASSED] YUV 4:2:2
[16:53:39] [PASSED] YUV 4:4:4
[16:53:39] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:53:39] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:53:39] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:53:39] ============= drm_damage_helper (21 subtests) ==============
[16:53:39] [PASSED] drm_test_damage_iter_no_damage
[16:53:39] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:53:39] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:53:39] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:53:39] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:53:39] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:53:39] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:53:39] [PASSED] drm_test_damage_iter_simple_damage
[16:53:39] [PASSED] drm_test_damage_iter_single_damage
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:53:39] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:53:39] [PASSED] drm_test_damage_iter_damage
[16:53:39] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:53:39] [PASSED] drm_test_damage_iter_damage_one_outside
[16:53:39] [PASSED] drm_test_damage_iter_damage_src_moved
[16:53:39] [PASSED] drm_test_damage_iter_damage_not_visible
[16:53:39] ================ [PASSED] drm_damage_helper ================
[16:53:39] ============== drm_dp_mst_helper (3 subtests) ==============
[16:53:39] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[16:53:39] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:53:39] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:53:39] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:53:39] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:53:39] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:53:39] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:53:39] ============== drm_test_dp_mst_calc_pbn_div  ===============
[16:53:39] [PASSED] Link rate 2000000 lane count 4
[16:53:39] [PASSED] Link rate 2000000 lane count 2
[16:53:39] [PASSED] Link rate 2000000 lane count 1
[16:53:39] [PASSED] Link rate 1350000 lane count 4
[16:53:39] [PASSED] Link rate 1350000 lane count 2
[16:53:39] [PASSED] Link rate 1350000 lane count 1
[16:53:39] [PASSED] Link rate 1000000 lane count 4
[16:53:39] [PASSED] Link rate 1000000 lane count 2
[16:53:39] [PASSED] Link rate 1000000 lane count 1
[16:53:39] [PASSED] Link rate 810000 lane count 4
[16:53:39] [PASSED] Link rate 810000 lane count 2
[16:53:39] [PASSED] Link rate 810000 lane count 1
[16:53:39] [PASSED] Link rate 540000 lane count 4
[16:53:39] [PASSED] Link rate 540000 lane count 2
[16:53:39] [PASSED] Link rate 540000 lane count 1
[16:53:39] [PASSED] Link rate 270000 lane count 4
[16:53:39] [PASSED] Link rate 270000 lane count 2
[16:53:39] [PASSED] Link rate 270000 lane count 1
[16:53:39] [PASSED] Link rate 162000 lane count 4
[16:53:39] [PASSED] Link rate 162000 lane count 2
[16:53:39] [PASSED] Link rate 162000 lane count 1
[16:53:39] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:53:39] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[16:53:39] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:53:39] [PASSED] DP_POWER_UP_PHY with port number
[16:53:39] [PASSED] DP_POWER_DOWN_PHY with port number
[16:53:39] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:53:39] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:53:39] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:53:39] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:53:39] [PASSED] DP_QUERY_PAYLOAD with port number
[16:53:39] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:53:39] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:53:39] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:53:39] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:53:39] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:53:39] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:53:39] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:53:39] [PASSED] DP_REMOTE_I2C_READ with port number
[16:53:39] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:53:39] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:53:39] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:53:39] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:53:39] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:53:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:53:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:53:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:53:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:53:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:53:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:53:39] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:53:39] ================ [PASSED] drm_dp_mst_helper ================
[16:53:39] ================== drm_exec (7 subtests) ===================
[16:53:39] [PASSED] sanitycheck
[16:53:39] [PASSED] test_lock
[16:53:39] [PASSED] test_lock_unlock
[16:53:39] [PASSED] test_duplicates
[16:53:39] [PASSED] test_prepare
[16:53:39] [PASSED] test_prepare_array
[16:53:39] [PASSED] test_multiple_loops
[16:53:39] ==================== [PASSED] drm_exec =====================
[16:53:39] =========== drm_format_helper_test (17 subtests) ===========
[16:53:39] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:53:39] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:53:39] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:53:39] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:53:39] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:53:39] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:53:39] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:53:39] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:53:39] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:53:39] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:53:39] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:53:39] ============== drm_test_fb_xrgb8888_to_mono  ===============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:53:39] ==================== drm_test_fb_swab  =====================
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ================ [PASSED] drm_test_fb_swab =================
[16:53:39] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:53:39] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[16:53:39] [PASSED] single_pixel_source_buffer
[16:53:39] [PASSED] single_pixel_clip_rectangle
[16:53:39] [PASSED] well_known_colors
[16:53:39] [PASSED] destination_pitch
[16:53:39] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:53:39] ================= drm_test_fb_clip_offset  =================
[16:53:39] [PASSED] pass through
[16:53:39] [PASSED] horizontal offset
[16:53:39] [PASSED] vertical offset
[16:53:39] [PASSED] horizontal and vertical offset
[16:53:39] [PASSED] horizontal offset (custom pitch)
[16:53:39] [PASSED] vertical offset (custom pitch)
[16:53:39] [PASSED] horizontal and vertical offset (custom pitch)
[16:53:39] ============= [PASSED] drm_test_fb_clip_offset =============
[16:53:39] =================== drm_test_fb_memcpy  ====================
[16:53:39] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:53:39] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:53:39] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:53:39] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:53:39] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:53:39] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:53:39] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:53:39] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:53:39] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:53:39] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:53:39] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:53:39] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:53:39] =============== [PASSED] drm_test_fb_memcpy ================
[16:53:39] ============= [PASSED] drm_format_helper_test ==============
[16:53:39] ================= drm_format (18 subtests) =================
[16:53:39] [PASSED] drm_test_format_block_width_invalid
[16:53:39] [PASSED] drm_test_format_block_width_one_plane
[16:53:39] [PASSED] drm_test_format_block_width_two_plane
[16:53:39] [PASSED] drm_test_format_block_width_three_plane
[16:53:39] [PASSED] drm_test_format_block_width_tiled
[16:53:39] [PASSED] drm_test_format_block_height_invalid
[16:53:39] [PASSED] drm_test_format_block_height_one_plane
[16:53:39] [PASSED] drm_test_format_block_height_two_plane
[16:53:39] [PASSED] drm_test_format_block_height_three_plane
[16:53:39] [PASSED] drm_test_format_block_height_tiled
[16:53:39] [PASSED] drm_test_format_min_pitch_invalid
[16:53:39] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:53:39] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:53:39] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:53:39] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:53:39] [PASSED] drm_test_format_min_pitch_two_plane
[16:53:39] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:53:39] [PASSED] drm_test_format_min_pitch_tiled
[16:53:39] =================== [PASSED] drm_format ====================
[16:53:39] ============== drm_framebuffer (10 subtests) ===============
[16:53:39] ========== drm_test_framebuffer_check_src_coords  ==========
[16:53:39] [PASSED] Success: source fits into fb
[16:53:39] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:53:39] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:53:39] [PASSED] Fail: overflowing fb with source width
[16:53:39] [PASSED] Fail: overflowing fb with source height
[16:53:39] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:53:39] [PASSED] drm_test_framebuffer_cleanup
[16:53:39] =============== drm_test_framebuffer_create  ===============
[16:53:39] [PASSED] ABGR8888 normal sizes
[16:53:39] [PASSED] ABGR8888 max sizes
[16:53:39] [PASSED] ABGR8888 pitch greater than min required
[16:53:39] [PASSED] ABGR8888 pitch less than min required
[16:53:39] [PASSED] ABGR8888 Invalid width
[16:53:39] [PASSED] ABGR8888 Invalid buffer handle
[16:53:39] [PASSED] No pixel format
[16:53:39] [PASSED] ABGR8888 Width 0
[16:53:39] [PASSED] ABGR8888 Height 0
[16:53:39] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:53:39] [PASSED] ABGR8888 Large buffer offset
[16:53:39] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:53:39] [PASSED] ABGR8888 Invalid flag
[16:53:39] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:53:39] [PASSED] ABGR8888 Valid buffer modifier
[16:53:39] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:53:39] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] NV12 Normal sizes
[16:53:39] [PASSED] NV12 Max sizes
[16:53:39] [PASSED] NV12 Invalid pitch
[16:53:39] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:53:39] [PASSED] NV12 different  modifier per-plane
[16:53:39] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:53:39] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] NV12 Modifier for inexistent plane
[16:53:39] [PASSED] NV12 Handle for inexistent plane
[16:53:39] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:53:39] [PASSED] YVU420 Normal sizes
[16:53:39] [PASSED] YVU420 Max sizes
[16:53:39] [PASSED] YVU420 Invalid pitch
[16:53:39] [PASSED] YVU420 Different pitches
[16:53:39] [PASSED] YVU420 Different buffer offsets/pitches
[16:53:39] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:53:39] [PASSED] YVU420 Valid modifier
[16:53:39] [PASSED] YVU420 Different modifiers per plane
[16:53:39] [PASSED] YVU420 Modifier for inexistent plane
[16:53:39] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:53:39] [PASSED] X0L2 Normal sizes
[16:53:39] [PASSED] X0L2 Max sizes
[16:53:39] [PASSED] X0L2 Invalid pitch
[16:53:39] [PASSED] X0L2 Pitch greater than minimum required
[16:53:39] [PASSED] X0L2 Handle for inexistent plane
[16:53:39] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:53:39] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:53:39] [PASSED] X0L2 Valid modifier
[16:53:39] [PASSED] X0L2 Modifier for inexistent plane
[16:53:39] =========== [PASSED] drm_test_framebuffer_create ===========
[16:53:39] [PASSED] drm_test_framebuffer_free
[16:53:39] [PASSED] drm_test_framebuffer_init
[16:53:39] [PASSED] drm_test_framebuffer_init_bad_format
[16:53:39] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:53:39] [PASSED] drm_test_framebuffer_lookup
[16:53:39] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:53:39] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:53:39] ================= [PASSED] drm_framebuffer =================
[16:53:39] ================ drm_gem_shmem (8 subtests) ================
[16:53:39] [PASSED] drm_gem_shmem_test_obj_create
[16:53:39] [PASSED] drm_gem_shmem_test_obj_create_private
[16:53:39] [PASSED] drm_gem_shmem_test_pin_pages
[16:53:39] [PASSED] drm_gem_shmem_test_vmap
[16:53:39] [PASSED] drm_gem_shmem_test_get_sg_table
[16:53:39] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:53:39] [PASSED] drm_gem_shmem_test_madvise
[16:53:39] [PASSED] drm_gem_shmem_test_purge
[16:53:39] ================== [PASSED] drm_gem_shmem ==================
[16:53:39] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:53:39] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[16:53:39] [PASSED] Automatic
[16:53:39] [PASSED] Full
[16:53:39] [PASSED] Limited 16:235
[16:53:39] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:53:39] [PASSED] drm_test_check_disable_connector
[16:53:39] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:53:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:53:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:53:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:53:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:53:39] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:53:39] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:53:39] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:53:39] [PASSED] drm_test_check_output_bpc_dvi
[16:53:39] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:53:39] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:53:39] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:53:39] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:53:39] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:53:39] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:53:39] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:53:39] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:53:39] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:53:39] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:53:39] [PASSED] drm_test_check_broadcast_rgb_value
[16:53:39] [PASSED] drm_test_check_bpc_8_value
[16:53:39] [PASSED] drm_test_check_bpc_10_value
[16:53:39] [PASSED] drm_test_check_bpc_12_value
[16:53:39] [PASSED] drm_test_check_format_value
[16:53:39] [PASSED] drm_test_check_tmds_char_value
[16:53:39] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:53:39] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:53:39] [PASSED] drm_test_check_mode_valid
[16:53:39] [PASSED] drm_test_check_mode_valid_reject
[16:53:39] [PASSED] drm_test_check_mode_valid_reject_rate
[16:53:39] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:53:39] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:53:39] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[16:53:39] [PASSED] drm_test_check_infoframes
[16:53:39] [PASSED] drm_test_check_reject_avi_infoframe
[16:53:39] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[16:53:39] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[16:53:39] [PASSED] drm_test_check_reject_audio_infoframe
[16:53:39] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[16:53:39] ================= drm_managed (2 subtests) =================
[16:53:39] [PASSED] drm_test_managed_release_action
[16:53:39] [PASSED] drm_test_managed_run_action
[16:53:39] =================== [PASSED] drm_managed ===================
[16:53:39] =================== drm_mm (6 subtests) ====================
[16:53:39] [PASSED] drm_test_mm_init
[16:53:39] [PASSED] drm_test_mm_debug
[16:53:39] [PASSED] drm_test_mm_align32
[16:53:39] [PASSED] drm_test_mm_align64
[16:53:39] [PASSED] drm_test_mm_lowest
[16:53:39] [PASSED] drm_test_mm_highest
[16:53:39] ===================== [PASSED] drm_mm ======================
[16:53:39] ============= drm_modes_analog_tv (5 subtests) =============
[16:53:39] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:53:39] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:53:39] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:53:39] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:53:39] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:53:39] =============== [PASSED] drm_modes_analog_tv ===============
[16:53:39] ============== drm_plane_helper (2 subtests) ===============
[16:53:39] =============== drm_test_check_plane_state  ================
[16:53:39] [PASSED] clipping_simple
[16:53:39] [PASSED] clipping_rotate_reflect
[16:53:39] [PASSED] positioning_simple
[16:53:39] [PASSED] upscaling
[16:53:39] [PASSED] downscaling
[16:53:39] [PASSED] rounding1
[16:53:39] [PASSED] rounding2
[16:53:39] [PASSED] rounding3
[16:53:39] [PASSED] rounding4
[16:53:39] =========== [PASSED] drm_test_check_plane_state ============
[16:53:39] =========== drm_test_check_invalid_plane_state  ============
[16:53:39] [PASSED] positioning_invalid
[16:53:39] [PASSED] upscaling_invalid
[16:53:39] [PASSED] downscaling_invalid
[16:53:39] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:53:39] ================ [PASSED] drm_plane_helper =================
[16:53:39] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:53:39] ====== drm_test_connector_helper_tv_get_modes_check  =======
[16:53:39] [PASSED] None
[16:53:39] [PASSED] PAL
[16:53:39] [PASSED] NTSC
[16:53:39] [PASSED] Both, NTSC Default
[16:53:39] [PASSED] Both, PAL Default
[16:53:39] [PASSED] Both, NTSC Default, with PAL on command-line
[16:53:39] [PASSED] Both, PAL Default, with NTSC on command-line
[16:53:39] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:53:39] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:53:39] ================== drm_rect (9 subtests) ===================
[16:53:39] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:53:39] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:53:39] [PASSED] drm_test_rect_clip_scaled_clipped
[16:53:39] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:53:39] ================= drm_test_rect_intersect  =================
[16:53:39] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:53:39] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:53:39] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:53:39] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:53:39] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:53:39] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:53:39] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:53:39] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:53:39] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:53:39] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:53:39] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:53:39] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:53:39] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:53:39] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:53:39] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:53:39] ============= [PASSED] drm_test_rect_intersect =============
[16:53:39] ================ drm_test_rect_calc_hscale  ================
[16:53:39] [PASSED] normal use
[16:53:39] [PASSED] out of max range
[16:53:39] [PASSED] out of min range
[16:53:39] [PASSED] zero dst
[16:53:39] [PASSED] negative src
[16:53:39] [PASSED] negative dst
[16:53:39] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:53:39] ================ drm_test_rect_calc_vscale  ================
[16:53:39] [PASSED] normal use
[16:53:39] [PASSED] out of max range
[16:53:39] [PASSED] out of min range
[16:53:39] [PASSED] zero dst
[16:53:39] [PASSED] negative src
[16:53:39] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[16:53:39] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:53:39] ================== drm_test_rect_rotate  ===================
[16:53:39] [PASSED] reflect-x
[16:53:39] [PASSED] reflect-y
[16:53:39] [PASSED] rotate-0
[16:53:39] [PASSED] rotate-90
[16:53:39] [PASSED] rotate-180
[16:53:39] [PASSED] rotate-270
[16:53:39] ============== [PASSED] drm_test_rect_rotate ===============
[16:53:39] ================ drm_test_rect_rotate_inv  =================
[16:53:39] [PASSED] reflect-x
[16:53:39] [PASSED] reflect-y
[16:53:39] [PASSED] rotate-0
[16:53:39] [PASSED] rotate-90
[16:53:39] [PASSED] rotate-180
[16:53:39] [PASSED] rotate-270
[16:53:39] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:53:39] ==================== [PASSED] drm_rect =====================
[16:53:39] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:53:39] ============ drm_test_sysfb_build_fourcc_list  =============
[16:53:39] [PASSED] no native formats
[16:53:39] [PASSED] XRGB8888 as native format
[16:53:39] [PASSED] remove duplicates
[16:53:39] [PASSED] convert alpha formats
[16:53:39] [PASSED] random formats
[16:53:39] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:53:39] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:53:39] ================== drm_fixp (2 subtests) ===================
[16:53:39] [PASSED] drm_test_int2fixp
[16:53:39] [PASSED] drm_test_sm2fixp
[16:53:39] ==================== [PASSED] drm_fixp =====================
[16:53:39] ============================================================
[16:53:39] Testing complete. Ran 621 tests: passed: 621
[16:53:39] Elapsed time: 27.380s total, 1.722s configuring, 25.492s building, 0.121s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:53:39] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:53:41] 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
[16:53:51] Starting KUnit Kernel (1/1)...
[16:53:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:53:51] ================= ttm_device (5 subtests) ==================
[16:53:51] [PASSED] ttm_device_init_basic
[16:53:51] [PASSED] ttm_device_init_multiple
[16:53:51] [PASSED] ttm_device_fini_basic
[16:53:51] [PASSED] ttm_device_init_no_vma_man
[16:53:51] ================== ttm_device_init_pools  ==================
[16:53:51] [PASSED] No DMA allocations, no DMA32 required
[16:53:51] [PASSED] DMA allocations, DMA32 required
[16:53:51] [PASSED] No DMA allocations, DMA32 required
[16:53:51] [PASSED] DMA allocations, no DMA32 required
[16:53:51] ============== [PASSED] ttm_device_init_pools ==============
[16:53:51] =================== [PASSED] ttm_device ====================
[16:53:51] ================== ttm_pool (8 subtests) ===================
[16:53:51] ================== ttm_pool_alloc_basic  ===================
[16:53:51] [PASSED] One page
[16:53:51] [PASSED] More than one page
[16:53:51] [PASSED] Above the allocation limit
[16:53:51] [PASSED] One page, with coherent DMA mappings enabled
[16:53:51] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:53:51] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:53:51] ============== ttm_pool_alloc_basic_dma_addr  ==============
[16:53:51] [PASSED] One page
[16:53:51] [PASSED] More than one page
[16:53:51] [PASSED] Above the allocation limit
[16:53:51] [PASSED] One page, with coherent DMA mappings enabled
[16:53:51] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:53:51] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:53:51] [PASSED] ttm_pool_alloc_order_caching_match
[16:53:51] [PASSED] ttm_pool_alloc_caching_mismatch
[16:53:51] [PASSED] ttm_pool_alloc_order_mismatch
[16:53:51] [PASSED] ttm_pool_free_dma_alloc
[16:53:51] [PASSED] ttm_pool_free_no_dma_alloc
[16:53:51] [PASSED] ttm_pool_fini_basic
[16:53:51] ==================== [PASSED] ttm_pool =====================
[16:53:51] ================ ttm_resource (8 subtests) =================
[16:53:51] ================= ttm_resource_init_basic  =================
[16:53:51] [PASSED] Init resource in TTM_PL_SYSTEM
[16:53:51] [PASSED] Init resource in TTM_PL_VRAM
[16:53:51] [PASSED] Init resource in a private placement
[16:53:51] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:53:51] ============= [PASSED] ttm_resource_init_basic =============
[16:53:51] [PASSED] ttm_resource_init_pinned
[16:53:51] [PASSED] ttm_resource_fini_basic
[16:53:51] [PASSED] ttm_resource_manager_init_basic
[16:53:51] [PASSED] ttm_resource_manager_usage_basic
[16:53:51] [PASSED] ttm_resource_manager_set_used_basic
[16:53:51] [PASSED] ttm_sys_man_alloc_basic
[16:53:51] [PASSED] ttm_sys_man_free_basic
[16:53:51] ================== [PASSED] ttm_resource ===================
[16:53:51] =================== ttm_tt (15 subtests) ===================
[16:53:51] ==================== ttm_tt_init_basic  ====================
[16:53:51] [PASSED] Page-aligned size
[16:53:51] [PASSED] Extra pages requested
[16:53:51] ================ [PASSED] ttm_tt_init_basic ================
[16:53:51] [PASSED] ttm_tt_init_misaligned
[16:53:51] [PASSED] ttm_tt_fini_basic
[16:53:51] [PASSED] ttm_tt_fini_sg
[16:53:51] [PASSED] ttm_tt_fini_shmem
[16:53:51] [PASSED] ttm_tt_create_basic
[16:53:51] [PASSED] ttm_tt_create_invalid_bo_type
[16:53:51] [PASSED] ttm_tt_create_ttm_exists
[16:53:51] [PASSED] ttm_tt_create_failed
[16:53:51] [PASSED] ttm_tt_destroy_basic
[16:53:51] [PASSED] ttm_tt_populate_null_ttm
[16:53:51] [PASSED] ttm_tt_populate_populated_ttm
[16:53:51] [PASSED] ttm_tt_unpopulate_basic
[16:53:51] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:53:51] [PASSED] ttm_tt_swapin_basic
[16:53:51] ===================== [PASSED] ttm_tt ======================
[16:53:51] =================== ttm_bo (14 subtests) ===================
[16:53:51] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[16:53:51] [PASSED] Cannot be interrupted and sleeps
[16:53:51] [PASSED] Cannot be interrupted, locks straight away
[16:53:51] [PASSED] Can be interrupted, sleeps
[16:53:51] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:53:51] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:53:51] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:53:51] [PASSED] ttm_bo_reserve_double_resv
[16:53:51] [PASSED] ttm_bo_reserve_interrupted
[16:53:51] [PASSED] ttm_bo_reserve_deadlock
[16:53:51] [PASSED] ttm_bo_unreserve_basic
[16:53:51] [PASSED] ttm_bo_unreserve_pinned
[16:53:51] [PASSED] ttm_bo_unreserve_bulk
[16:53:51] [PASSED] ttm_bo_fini_basic
[16:53:51] [PASSED] ttm_bo_fini_shared_resv
[16:53:51] [PASSED] ttm_bo_pin_basic
[16:53:51] [PASSED] ttm_bo_pin_unpin_resource
[16:53:51] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:53:51] ===================== [PASSED] ttm_bo ======================
[16:53:51] ============== ttm_bo_validate (21 subtests) ===============
[16:53:51] ============== ttm_bo_init_reserved_sys_man  ===============
[16:53:51] [PASSED] Buffer object for userspace
[16:53:51] [PASSED] Kernel buffer object
[16:53:51] [PASSED] Shared buffer object
[16:53:51] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:53:51] ============== ttm_bo_init_reserved_mock_man  ==============
[16:53:51] [PASSED] Buffer object for userspace
[16:53:51] [PASSED] Kernel buffer object
[16:53:51] [PASSED] Shared buffer object
[16:53:51] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:53:51] [PASSED] ttm_bo_init_reserved_resv
[16:53:51] ================== ttm_bo_validate_basic  ==================
[16:53:51] [PASSED] Buffer object for userspace
[16:53:51] [PASSED] Kernel buffer object
[16:53:51] [PASSED] Shared buffer object
[16:53:51] ============== [PASSED] ttm_bo_validate_basic ==============
[16:53:51] [PASSED] ttm_bo_validate_invalid_placement
[16:53:51] ============= ttm_bo_validate_same_placement  ==============
[16:53:51] [PASSED] System manager
[16:53:51] [PASSED] VRAM manager
[16:53:51] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:53:51] [PASSED] ttm_bo_validate_failed_alloc
[16:53:51] [PASSED] ttm_bo_validate_pinned
[16:53:51] [PASSED] ttm_bo_validate_busy_placement
[16:53:51] ================ ttm_bo_validate_multihop  =================
[16:53:51] [PASSED] Buffer object for userspace
[16:53:51] [PASSED] Kernel buffer object
[16:53:51] [PASSED] Shared buffer object
[16:53:51] ============ [PASSED] ttm_bo_validate_multihop =============
[16:53:51] ========== ttm_bo_validate_no_placement_signaled  ==========
[16:53:51] [PASSED] Buffer object in system domain, no page vector
[16:53:51] [PASSED] Buffer object in system domain with an existing page vector
[16:53:51] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:53:51] ======== ttm_bo_validate_no_placement_not_signaled  ========
[16:53:51] [PASSED] Buffer object for userspace
[16:53:51] [PASSED] Kernel buffer object
[16:53:51] [PASSED] Shared buffer object
[16:53:51] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:53:51] [PASSED] ttm_bo_validate_move_fence_signaled
[16:53:51] ========= ttm_bo_validate_move_fence_not_signaled  =========
[16:53:51] [PASSED] Waits for GPU
[16:53:51] [PASSED] Tries to lock straight away
[16:53:51] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:53:51] [PASSED] ttm_bo_validate_happy_evict
[16:53:51] [PASSED] ttm_bo_validate_all_pinned_evict
[16:53:51] [PASSED] ttm_bo_validate_allowed_only_evict
[16:53:51] [PASSED] ttm_bo_validate_deleted_evict
[16:53:51] [PASSED] ttm_bo_validate_busy_domain_evict
[16:53:51] [PASSED] ttm_bo_validate_evict_gutting
[16:53:51] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:53:51] ================= [PASSED] ttm_bo_validate =================
[16:53:51] ============================================================
[16:53:51] Testing complete. Ran 101 tests: passed: 101
[16:53:51] Elapsed time: 11.641s total, 1.740s configuring, 9.684s building, 0.187s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 15+ messages in thread

* ✗ Xe.CI.BAT: failure for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (6 preceding siblings ...)
  2026-02-06 16:53 ` ✓ CI.KUnit: success " Patchwork
@ 2026-02-06 17:34 ` Patchwork
  2026-02-09 15:10   ` Cavitt, Jonathan
  2026-02-07 16:58 ` ✗ Xe.CI.FULL: " Patchwork
  8 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-02-06 17:34 UTC (permalink / raw)
  To: Jonathan Cavitt; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1952 bytes --]

== Series Details ==

Series: drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
URL   : https://patchwork.freedesktop.org/series/161293/
State : failure

== Summary ==

CI Bug Log - changes from xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04_BAT -> xe-pw-161293v1_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-161293v1_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-161293v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-161293v1_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - bat-bmg-3:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  


Build changes
-------------

  * IGT: IGT_8740 -> IGT_8742
  * Linux: xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04 -> xe-pw-161293v1

  IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8742: 8742
  xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04: d9124a6be3c7bdaeb14c3629013dde27929dbf04
  xe-pw-161293v1: 161293v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/index.html

[-- Attachment #2: Type: text/html, Size: 2551 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* ✗ Xe.CI.FULL: failure for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
                   ` (7 preceding siblings ...)
  2026-02-06 17:34 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-07 16:58 ` Patchwork
  2026-02-09 15:11   ` Cavitt, Jonathan
  8 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-02-07 16:58 UTC (permalink / raw)
  To: Jonathan Cavitt; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 66585 bytes --]

== Series Details ==

Series: drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
URL   : https://patchwork.freedesktop.org/series/161293/
State : failure

== Summary ==

CI Bug Log - changes from xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04_FULL -> xe-pw-161293v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-161293v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-161293v1_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 (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-161293v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@wait-idle-hang:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_vblank@wait-idle-hang.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_vblank@wait-idle-hang.html

  * igt@kms_vblank@wait-idle-hang@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html

  
Known issues
------------

  Here are the changes found in xe-pw-161293v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#2233])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#3157])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2327]) +7 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#7059])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#7059])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1407]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#1124]) +10 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2328])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894]) +4 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#1512])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#3432])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +18 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2887]) +16 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2887]) +2 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2724])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2325])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#373]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2252]) +6 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][26] ([Intel XE#6968]) +3 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-edp-1.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][27] ([Intel XE#1178] / [Intel XE#3304])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_content_protection@atomic@pipe-a-dp-2.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2390] / [Intel XE#6974])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2341]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7194])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][31] ([Intel XE#3304]) +1 other test fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2320]) +5 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#1424])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][34] -> [SKIP][35] ([Intel XE#2291]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2291]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][37] -> [FAIL][38] ([Intel XE#6715])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2286])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#4210])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#1340])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#4354])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#4294])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#4331])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#2373])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@kms_feature_discovery@display-2x.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2374])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-bmg:          [PASS][48] -> [SKIP][49] ([Intel XE#2316]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#1421]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2316]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][52] -> [FAIL][53] ([Intel XE#301]) +1 other test fail
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
    - shard-bmg:          [PASS][54] -> [INCOMPLETE][55] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#7178])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#7178]) +3 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#7179])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#6312]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#651]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2311]) +31 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2312]) +13 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#7061])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7061]) +4 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#4141]) +17 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#656]) +7 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2313]) +30 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#1470])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#3544])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#7086])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][71] -> [SKIP][72] ([Intel XE#7086]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2501])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#7130]) +14 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#7111] / [Intel XE#7130]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#7130]) +8 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#7131]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#7111] / [Intel XE#7131]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2393])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#6886]) +4 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#870])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#3309])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][84] -> [FAIL][85] ([Intel XE#718])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#2392])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#2893])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@pr-basic:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#1406]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_psr@pr-basic.html

  * igt@kms_psr@psr-basic:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_psr@psr-basic.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2330])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#6503]) +3 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2450])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-bmg:          [PASS][96] -> [DMESG-WARN][97] ([Intel XE#3428]) +1 other test dmesg-warn
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_vblank@ts-continuation-suspend.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#1499])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#1499]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#6599])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_eudebug@basic-vms:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#4837])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-4/igt@xe_eudebug@basic-vms.html

  * igt@xe_eudebug@vma-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#4837]) +9 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_eudebug@vma-ufence.html

  * igt@xe_eudebug_online@pagefault-write:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#4837] / [Intel XE#6665]) +7 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_eudebug_online@pagefault-write.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#4837] / [Intel XE#6665])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#5793])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-small-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#7140]) +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-cm.html

  * igt@xe_evict_ccs@evict-overcommit-simple:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#688])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-simple.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#2322]) +10 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#1392]) +3 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#7136]) +13 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html

  * igt@xe_exec_fault_mode@twice-multi-queue-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#7136]) +3 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#6874]) +7 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#6874]) +34 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#5007])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html

  * igt@xe_exec_system_allocator@many-stride-new-prefetch:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][115] ([Intel XE#7098])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [PASS][116] -> [FAIL][117] ([Intel XE#5625])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#4943]) +4 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#4943]) +25 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html

  * igt@xe_exec_threads@threads-many-queues:
    - shard-bmg:          NOTRUN -> [FAIL][120] ([Intel XE#7166])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_exec_threads@threads-many-queues.html

  * igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#7138]) +2 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#7138]) +8 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#2229])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148]) -> ([PASS][149], [PASS][150], [PASS][151], [PASS][152], [SKIP][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172]) ([Intel XE#2457])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-coherency-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][173] ([Intel XE#6964])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html

  * igt@xe_multigpu_svm@mgpu-latency-copy-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#6964])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][175] ([Intel XE#2248])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html
    - shard-bmg:          NOTRUN -> [SKIP][176] ([Intel XE#2248])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#1420])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          NOTRUN -> [SKIP][178] ([Intel XE#2284]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#584])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@xe_pm@s3-d3hot-basic-exec.html

  * igt@xe_pxp@pxp-termination-key-update-post-rpm:
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#4733])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-rpm.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-lnl:          NOTRUN -> [SKIP][181] ([Intel XE#944])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          NOTRUN -> [SKIP][182] ([Intel XE#944]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-bmg:          [PASS][183] -> [ABORT][184] ([Intel XE#7169])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_spin_batch@spin-mem-copy.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_spin_batch@spin-mem-copy.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          NOTRUN -> [SKIP][185] ([Intel XE#3342])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear:
    - shard-lnl:          [FAIL][186] ([Intel XE#5993]) -> [PASS][187] +3 other tests pass
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - shard-bmg:          [DMESG-WARN][188] -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [SKIP][190] ([Intel XE#2291]) -> [PASS][191] +3 other tests pass
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][192] ([Intel XE#4633]) -> [PASS][193]
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][194] ([Intel XE#4302]) -> [PASS][195]
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][196] ([Intel XE#3009]) -> [PASS][197]
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_dp_aux_dev.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_dp_aux_dev.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][198] ([Intel XE#2316]) -> [PASS][199] +3 other tests pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3:
    - shard-bmg:          [ABORT][200] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][201] +1 other test pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][202] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][203] +1 other test pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [DMESG-WARN][204] ([Intel XE#3428] / [Intel XE#5208]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-dp2:
    - shard-bmg:          [DMESG-WARN][206] ([Intel XE#3428]) -> [PASS][207] +1 other test pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [SKIP][208] ([Intel XE#1503]) -> [PASS][209]
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-lnl:          [SKIP][210] -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-1/igt@kms_pm_backlight@fade-with-dpms.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_rpm@universal-planes:
    - shard-lnl:          [SKIP][212] ([Intel XE#7197]) -> [PASS][213]
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_pm_rpm@universal-planes.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][214] ([Intel XE#1435]) -> [PASS][215]
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_universal_plane@universal-plane-functional:
    - shard-bmg:          [INCOMPLETE][216] -> [PASS][217] +1 other test pass
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_universal_plane@universal-plane-functional.html

  * igt@kms_vrr@flipline:
    - shard-lnl:          [FAIL][218] ([Intel XE#4227]) -> [PASS][219] +1 other test pass
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-1/igt@kms_vrr@flipline.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_vrr@flipline.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][220] ([Intel XE#6321]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_balancer@once-cm-parallel-userptr:
    - shard-bmg:          [ABORT][222] ([Intel XE#7169]) -> [PASS][223]
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_exec_balancer@once-cm-parallel-userptr.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_exec_balancer@once-cm-parallel-userptr.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
    - shard-bmg:          [ABORT][224] -> [PASS][225] +1 other test pass
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [SKIP][226] ([Intel XE#2341]) -> [FAIL][227] ([Intel XE#1178] / [Intel XE#3304])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_content_protection@atomic.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          [FAIL][228] ([Intel XE#3304]) -> [SKIP][229] ([Intel XE#7194])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][230] ([Intel XE#2312]) -> [SKIP][231] ([Intel XE#2311]) +9 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][232] ([Intel XE#2311]) -> [SKIP][233] ([Intel XE#2312]) +10 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][234] ([Intel XE#4141]) -> [ABORT][235] ([Intel XE#5545])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][236] ([Intel XE#4141]) -> [SKIP][237] ([Intel XE#2312]) +3 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][238] ([Intel XE#2312]) -> [SKIP][239] ([Intel XE#4141]) +4 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][240] ([Intel XE#2312]) -> [SKIP][241] ([Intel XE#2313]) +11 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][242] ([Intel XE#2313]) -> [SKIP][243] ([Intel XE#2312]) +9 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][244] ([Intel XE#4596]) -> [SKIP][245] ([Intel XE#5021])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][246] ([Intel XE#2426]) -> [SKIP][247] ([Intel XE#2509])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][248] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][249] ([Intel XE#5466])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [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#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [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#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [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#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
  [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
  [Intel XE#7197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * IGT: IGT_8740 -> IGT_8742
  * Linux: xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04 -> xe-pw-161293v1

  IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8742: 8742
  xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04: d9124a6be3c7bdaeb14c3629013dde27929dbf04
  xe-pw-161293v1: 161293v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/index.html

[-- Attachment #2: Type: text/html, Size: 75666 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* RE: ✗ Xe.CI.BAT: failure for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-06 17:34 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-09 15:10   ` Cavitt, Jonathan
  0 siblings, 0 replies; 15+ messages in thread
From: Cavitt, Jonathan @ 2026-02-09 15:10 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org; +Cc: Cavitt, Jonathan

[-- Attachment #1: Type: text/plain, Size: 2265 bytes --]

Issue is unrelated to patch series, as patch series adds functionality
for new ioctl without impacting existing behaviors.  Perhaps there was
an earlier system taint that resulted in this occurring?
-Jonathan Cavitt

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, February 6, 2026 9:34 AM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: intel-xe@lists.freedesktop.org
Subject: ✗ Xe.CI.BAT: failure for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl

Patch Details
Series:
drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
URL:
https://patchwork.freedesktop.org/series/161293/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/index.html
CI Bug Log - changes from xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04_BAT -> xe-pw-161293v1_BAT
Summary

FAILURE

Serious unknown changes coming with xe-pw-161293v1_BAT absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161293v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (12 -> 12)

No changes in participating hosts

Possible new issues

Here are the unknown changes that may have been introduced in xe-pw-161293v1_BAT:

IGT changes
Possible regressions

  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
     *   bat-bmg-3: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html>

Build changes

  *   IGT: IGT_8740 -> IGT_8742
  *   Linux: xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04 -> xe-pw-161293v1

IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8742: 8742
xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04: d9124a6be3c7bdaeb14c3629013dde27929dbf04
xe-pw-161293v1: 161293v1

[-- Attachment #2: Type: text/html, Size: 12338 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* RE: ✗ Xe.CI.FULL: failure for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
  2026-02-07 16:58 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-09 15:11   ` Cavitt, Jonathan
  0 siblings, 0 replies; 15+ messages in thread
From: Cavitt, Jonathan @ 2026-02-09 15:11 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org; +Cc: Cavitt, Jonathan

[-- Attachment #1: Type: text/plain, Size: 63572 bytes --]

The issues here are unrelated to the patch series, as the patch series
does not impact the KMS/Display system.
-Jonathan Cavitt

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Saturday, February 7, 2026 8:59 AM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: intel-xe@lists.freedesktop.org
Subject: ✗ Xe.CI.FULL: failure for drm/xe/xe_vm: Implement xe_vm_get_property_ioctl

Patch Details
Series:
drm/xe/xe_vm: Implement xe_vm_get_property_ioctl
URL:
https://patchwork.freedesktop.org/series/161293/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/index.html
CI Bug Log - changes from xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04_FULL -> xe-pw-161293v1_FULL
Summary

FAILURE

Serious unknown changes coming with xe-pw-161293v1_FULL absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161293v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (2 -> 2)

No changes in participating hosts

Possible new issues

Here are the unknown changes that may have been introduced in xe-pw-161293v1_FULL:

IGT changes
Possible regressions

  *   igt@kms_vblank@wait-idle-hang:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_vblank@wait-idle-hang.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_vblank@wait-idle-hang.html>
  *   igt@kms_vblank@wait-idle-hang@pipe-a-dp-2:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html>

Known issues

Here are the changes found in xe-pw-161293v1_FULL that come from known issues:

IGT changes
Issues hit

  *   igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2233<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233>)
  *   igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
  *   igt@kms_big_fb@linear-32bpp-rotate-270:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +7 other tests skip
  *   igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#7059<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059>)
  *   igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html> (Intel XE#7059<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059>)
  *   igt@kms_big_fb@x-tiled-64bpp-rotate-90:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +1 other test skip
  *   igt@kms_big_fb@y-tiled-16bpp-rotate-0:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +10 other tests skip
  *   igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +3 other tests skip
  *   igt@kms_big_fb@yf-tiled-addfb:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
  *   igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
  *   igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +4 other tests skip
  *   igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
  *   igt@kms_bw@linear-tiling-1-displays-2160x1440p:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +18 other tests skip
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +16 other tests skip
  *   igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +2 other tests skip
  *   igt@kms_cdclk@plane-scaling:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_cdclk@plane-scaling.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
  *   igt@kms_chamelium_color@degamma:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_chamelium_color@degamma.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>)
  *   igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests skip
  *   igt@kms_chamelium_hpd@common-hpd-after-suspend:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +6 other tests skip
  *   igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-edp-1:
     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-edp-1.html> (Intel XE#6968<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968>) +3 other tests fail
  *   igt@kms_content_protection@atomic@pipe-a-dp-2:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_content_protection@atomic@pipe-a-dp-2.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>)
  *   igt@kms_content_protection@dp-mst-lic-type-0:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390> / Intel XE#6974<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974>)
  *   igt@kms_content_protection@legacy:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_content_protection@legacy.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test skip
  *   igt@kms_content_protection@legacy-hdcp14:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_content_protection@legacy-hdcp14.html> (Intel XE#7194<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194>)
  *   igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html> (Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>) +1 other test fail
  *   igt@kms_cursor_crc@cursor-onscreen-max-size:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +5 other tests skip
  *   igt@kms_cursor_crc@cursor-rapid-movement-256x85:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>)
  *   igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test skip
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test skip
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> (Intel XE#6715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
  *   igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html> (Intel XE#4210<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210>)
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>)
  *   igt@kms_dp_link_training@non-uhbr-sst:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-sst.html> (Intel XE#4354<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354>)
  *   igt@kms_dp_linktrain_fallback@dp-fallback:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html> (Intel XE#4294<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294>)
  *   igt@kms_dp_linktrain_fallback@dsc-fallback:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html> (Intel XE#4331<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331>)
  *   igt@kms_feature_discovery@display-2x:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@kms_feature_discovery@display-2x.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_feature_discovery@display-2x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
  *   igt@kms_feature_discovery@psr2:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_feature_discovery@psr2.html> (Intel XE#2374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374>)
  *   igt@kms_flip@2x-flip-vs-wf_vblank:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +2 other tests skip
  *   igt@kms_flip@2x-nonexisting-fb:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_flip@2x-nonexisting-fb.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +1 other test skip
  *   igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +2 other tests skip
  *   igt@kms_flip@flip-vs-expired-vblank@a-edp1:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +1 other test fail
  *   igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1 other test incomplete
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#7178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178>)
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#7178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178>) +3 other tests skip
  *   igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html> (Intel XE#7179<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179>)
  *   igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html> (Intel XE#6312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +31 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +13 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html> (Intel XE#7061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061>)
  *   igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html> (Intel XE#7061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +17 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +7 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +30 other tests skip
  *   igt@kms_hdmi_inject@inject-4k:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html> (Intel XE#1470<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470>)
  *   igt@kms_hdr@brightness-with-hdr:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
  *   igt@kms_joiner@basic-force-big-joiner:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html> (Intel XE#7086<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086>)
  *   igt@kms_joiner@invalid-modeset-force-big-joiner:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#7086<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086>) +1 other test skip
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>)
  *   igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-0:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-0.html> (Intel XE#7130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130>) +14 other tests skip
  *   igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html> (Intel XE#7111<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111> / Intel XE#7130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130>) +1 other test skip
  *   igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-a-plane-0:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-a-plane-0.html> (Intel XE#7130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130>) +8 other tests skip
  *   igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html> (Intel XE#7111<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111> / Intel XE#7130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130> / Intel XE#7131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131>) +1 other test skip
  *   igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html> (Intel XE#7131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131>) +1 other test skip
  *   igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html> (Intel XE#7111<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111> / Intel XE#7131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131>) +1 other test skip
  *   igt@kms_plane_lowres@tiling-yf:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html> (Intel XE#2393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>)
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> (Intel XE#6886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886>) +4 other tests skip
  *   igt@kms_pm_backlight@fade-with-suspend:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
  *   igt@kms_pm_dc@dc5-retention-flops:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309>)
  *   igt@kms_pm_dc@dc6-psr:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html> (Intel XE#2392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392>)
  *   igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>)
  *   igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +9 other tests skip
  *   igt@kms_psr@pr-basic:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_psr@pr-basic.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +1 other test skip
  *   igt@kms_psr@psr-basic:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_psr@psr-basic.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +11 other tests skip
  *   igt@kms_rotation_crc@primary-rotation-90:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1 other test skip
  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1 other test skip
  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>)
  *   igt@kms_sharpness_filter@invalid-plane-with-filter:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html> (Intel XE#6503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>) +3 other tests skip
  *   igt@kms_tv_load_detect@load-detect:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html> (Intel XE#2450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450>)
  *   igt@kms_vblank@ts-continuation-suspend:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_vblank@ts-continuation-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_vblank@ts-continuation-suspend.html> (Intel XE#3428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428>) +1 other test dmesg-warn
  *   igt@kms_vrr@seamless-rr-switch-drrs:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
  *   igt@xe_compute@ccs-mode-compute-kernel:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_compute@ccs-mode-compute-kernel.html> (Intel XE#6599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599>)
  *   igt@xe_eudebug@basic-vms:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-4/igt@xe_eudebug@basic-vms.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>)
  *   igt@xe_eudebug@vma-ufence:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_eudebug@vma-ufence.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +9 other tests skip
  *   igt@xe_eudebug_online@pagefault-write:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_eudebug_online@pagefault-write.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837> / Intel XE#6665<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665>) +7 other tests skip
  *   igt@xe_eudebug_online@stopped-thread:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@xe_eudebug_online@stopped-thread.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837> / Intel XE#6665<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665>)
  *   igt@xe_eudebug_sriov@deny-sriov:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_eudebug_sriov@deny-sriov.html> (Intel XE#5793<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793>)
  *   igt@xe_evict@evict-small-multi-queue-cm:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-cm.html> (Intel XE#7140<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140>) +3 other tests skip
  *   igt@xe_evict_ccs@evict-overcommit-simple:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-simple.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>)
  *   igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +10 other tests skip
  *   igt@xe_exec_basic@multigpu-once-userptr-invalidate:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +3 other tests skip
  *   igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html> (Intel XE#7136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +13 other tests skip
  *   igt@xe_exec_fault_mode@twice-multi-queue-prefetch:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html> (Intel XE#7136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +3 other tests skip
  *   igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem.html> (Intel XE#6874<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +7 other tests skip
  *   igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html> (Intel XE#6874<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +34 other tests skip
  *   igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html> (Intel XE#5007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007>)
  *   igt@xe_exec_system_allocator@many-stride-new-prefetch:
     *   shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html> (Intel XE#7098<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098>)
  *   igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html> (Intel XE#5625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625>)
  *   igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html> (Intel XE#4943<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943>) +4 other tests skip
  *   igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html> (Intel XE#4943<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943>) +25 other tests skip
  *   igt@xe_exec_threads@threads-many-queues:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_exec_threads@threads-many-queues.html> (Intel XE#7166<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166>)
  *   igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race.html> (Intel XE#7138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +2 other tests skip
  *   igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html> (Intel XE#7138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +8 other tests skip
  *   igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
  *   igt@xe_module_load@load:
     *   shard-bmg: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_module_load@load.html>) (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>)
  *   igt@xe_multigpu_svm@mgpu-coherency-prefetch:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html> (Intel XE#6964<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964>)
  *   igt@xe_multigpu_svm@mgpu-latency-copy-prefetch:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html> (Intel XE#6964<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964>)
  *   igt@xe_oa@oa-tlb-invalidate:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
  *   igt@xe_pat@pat-index-xehpc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420>)
  *   igt@xe_pm@d3cold-multiple-execs:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) +1 other test skip
  *   igt@xe_pm@s3-d3hot-basic-exec:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@xe_pm@s3-d3hot-basic-exec.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
  *   igt@xe_pxp@pxp-termination-key-update-post-rpm:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-rpm.html> (Intel XE#4733<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733>)
  *   igt@xe_query@multigpu-query-hwconfig:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@xe_query@multigpu-query-hwconfig.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
  *   igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests skip
  *   igt@xe_spin_batch@spin-mem-copy:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_spin_batch@spin-mem-copy.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@xe_spin_batch@spin-mem-copy.html> (Intel XE#7169<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169>)
  *   igt@xe_sriov_flr@flr-vf1-clear:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>)

Possible fixes

  *   igt@kms_async_flips@async-flip-with-page-flip-events-linear:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html> (Intel XE#5993<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html> +3 other tests pass
  *   igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html>
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> +3 other tests pass
  *   igt@kms_cursor_legacy@flip-vs-cursor-legacy:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html> (Intel XE#4633<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html>
  *   igt@kms_display_modes@extended-mode-basic:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#4302<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html>
  *   igt@kms_dp_aux_dev:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_dp_aux_dev.html> (Intel XE#3009<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_dp_aux_dev.html>
  *   igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> +3 other tests pass
  *   igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3:
     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html> (Intel XE#5545<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545> / Intel XE#6652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html> +1 other test pass
  *   igt@kms_flip@flip-vs-expired-vblank-interruptible:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> +1 other test pass
  *   igt@kms_flip@flip-vs-suspend-interruptible:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#3428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428> / Intel XE#5208<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_flip@flip-vs-suspend-interruptible.html>
  *   igt@kms_flip@flip-vs-suspend-interruptible@d-dp2:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html> (Intel XE#3428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html> +1 other test pass
  *   igt@kms_hdr@invalid-metadata-sizes:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_hdr@invalid-metadata-sizes.html>
  *   igt@kms_pm_backlight@fade-with-dpms:
     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-1/igt@kms_pm_backlight@fade-with-dpms.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_pm_backlight@fade-with-dpms.html>
  *   igt@kms_pm_rpm@universal-planes:
     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html> (Intel XE#7197<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-8/igt@kms_pm_rpm@universal-planes.html>
  *   igt@kms_setmode@invalid-clone-single-crtc-stealing:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html>
  *   igt@kms_universal_plane@universal-plane-functional:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-4/igt@kms_universal_plane@universal-plane-functional.html> +1 other test pass
  *   igt@kms_vrr@flipline:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-lnl-1/igt@kms_vrr@flipline.html> (Intel XE#4227<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-lnl-7/igt@kms_vrr@flipline.html> +1 other test pass
  *   igt@xe_evict@evict-mixed-many-threads-small:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#6321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html>
  *   igt@xe_exec_balancer@once-cm-parallel-userptr:
     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-10/igt@xe_exec_balancer@once-cm-parallel-userptr.html> (Intel XE#7169<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@xe_exec_balancer@once-cm-parallel-userptr.html>
  *   igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> +1 other test pass

Warnings

  *   igt@kms_content_protection@atomic:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_content_protection@atomic.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@kms_content_protection@atomic.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>)
  *   igt@kms_content_protection@atomic-hdcp14:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14.html> (Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html> (Intel XE#7194<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194>)
  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +9 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +10 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#5545<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +3 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +11 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9 other tests skip
  *   igt@kms_plane_multiple@2x-tiling-y:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html> (Intel XE#4596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html> (Intel XE#5021<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021>)
  *   igt@kms_tiled_display@basic-test-pattern-with-chamelium:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2509<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509>)
  *   igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html> (Intel XE#5466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466> / Intel XE#6652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161293v1/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html> (Intel XE#5466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466>)

Build changes

  *   IGT: IGT_8740 -> IGT_8742
  *   Linux: xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04 -> xe-pw-161293v1

IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8742: 8742
xe-4519-d9124a6be3c7bdaeb14c3629013dde27929dbf04: d9124a6be3c7bdaeb14c3629013dde27929dbf04
xe-pw-161293v1: 161293v1

[-- Attachment #2: Type: text/html, Size: 114843 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* RE: [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault
  2026-02-06 16:47 ` [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault Jonathan Cavitt
@ 2026-02-13 20:58   ` Lin, Shuicheng
  2026-02-13 21:03   ` Matthew Brost
  1 sibling, 0 replies; 15+ messages in thread
From: Lin, Shuicheng @ 2026-02-13 20:58 UTC (permalink / raw)
  To: Cavitt, Jonathan, intel-xe@lists.freedesktop.org
  Cc: Gupta, Saurabhg, Zuo, Alex, joonas.lahtinen@linux.intel.com,
	Brost, Matthew, Zhang, Jianxun, dri-devel@lists.freedesktop.org,
	Wajdeczko, Michal, Mrozek, Michal, Jadav, Raag, Briano, Ivan,
	Auld, Matthew

On Fri, Feb 6, 2026 8:48 AM Jonathan Cavitt wrote:
> Add an address precision field to the pagefault consumer.  This captures the
> fact that pagefaults are reported on a SZ_4K granularity by GuC, meaning the
> reported pagefault address is only the address of the page where the faulting
> access occurred rather than the exact address of the fault.  This field is
> necessary in case more reporters are added where the granularity can be
> different.
> 
> v2:
> - Keep u8 values together (Matt Brost)
> 
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>

LGTM.
Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>

> ---
>  drivers/gpu/drm/xe/xe_guc_pagefault.c   | 1 +
>  drivers/gpu/drm/xe/xe_pagefault.c       | 2 ++
>  drivers/gpu/drm/xe/xe_pagefault_types.h | 8 +++++++-
>  3 files changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_pagefault.c
> b/drivers/gpu/drm/xe/xe_guc_pagefault.c
> index 719a18187a31..79b790fedda8 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pagefault.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pagefault.c
> @@ -74,6 +74,7 @@ int xe_guc_pagefault_handler(struct xe_guc *guc, u32
> *msg, u32 len)
>  				      << PFD_VIRTUAL_ADDR_HI_SHIFT) |
>  		(FIELD_GET(PFD_VIRTUAL_ADDR_LO, msg[2]) <<
>  		 PFD_VIRTUAL_ADDR_LO_SHIFT);
> +	pf.consumer.addr_precision = 12;
>  	pf.consumer.asid = FIELD_GET(PFD_ASID, msg[1]);
>  	pf.consumer.access_type = FIELD_GET(PFD_ACCESS_TYPE, msg[2]);
>  	pf.consumer.fault_type = FIELD_GET(PFD_FAULT_TYPE, msg[2]); diff --
> git a/drivers/gpu/drm/xe/xe_pagefault.c
> b/drivers/gpu/drm/xe/xe_pagefault.c
> index 922a4f3344b1..a24de27eb303 100644
> --- a/drivers/gpu/drm/xe/xe_pagefault.c
> +++ b/drivers/gpu/drm/xe/xe_pagefault.c
> @@ -231,6 +231,7 @@ static void xe_pagefault_print(struct xe_pagefault
> *pf)  {
>  	xe_gt_info(pf->gt, "\n\tASID: %d\n"
>  		   "\tFaulted Address: 0x%08x%08x\n"
> +		   "\tAddress Precision: %lu\n"
>  		   "\tFaultType: %d\n"
>  		   "\tAccessType: %d\n"
>  		   "\tFaultLevel: %d\n"
> @@ -239,6 +240,7 @@ static void xe_pagefault_print(struct xe_pagefault
> *pf)
>  		   pf->consumer.asid,
>  		   upper_32_bits(pf->consumer.page_addr),
>  		   lower_32_bits(pf->consumer.page_addr),
> +		   BIT(pf->consumer.addr_precision),
>  		   pf->consumer.fault_type,
>  		   pf->consumer.access_type,
>  		   pf->consumer.fault_level,
> diff --git a/drivers/gpu/drm/xe/xe_pagefault_types.h
> b/drivers/gpu/drm/xe/xe_pagefault_types.h
> index d3b516407d60..333db12713ef 100644
> --- a/drivers/gpu/drm/xe/xe_pagefault_types.h
> +++ b/drivers/gpu/drm/xe/xe_pagefault_types.h
> @@ -67,6 +67,12 @@ struct xe_pagefault {
>  		u64 page_addr;
>  		/** @consumer.asid: address space ID */
>  		u32 asid;
> +		/**
> +		 * @consumer.addr_precision: precision of the page fault
> address.
> +		 * u8 rather than u32 to keep compact - actual precision is
> +		 * BIT(consumer.addr_precision).  Currently only 12
> +		 */
> +		u8 addr_precision;
>  		/**
>  		 * @consumer.access_type: access type, u8 rather than enum
> to
>  		 * keep size compact
> @@ -85,7 +91,7 @@ struct xe_pagefault {
>  		/** @consumer.engine_instance: engine instance */
>  		u8 engine_instance;
>  		/** consumer.reserved: reserved bits for future expansion */
> -		u8 reserved[7];
> +		u8 reserved[6];
>  	} consumer;
>  	/**
>  	 * @producer: State for the producer (i.e., HW/FW interface).
> Populated
> --
> 2.43.0


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault
  2026-02-06 16:47 ` [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault Jonathan Cavitt
  2026-02-13 20:58   ` Lin, Shuicheng
@ 2026-02-13 21:03   ` Matthew Brost
  2026-02-13 21:09     ` Cavitt, Jonathan
  1 sibling, 1 reply; 15+ messages in thread
From: Matthew Brost @ 2026-02-13 21:03 UTC (permalink / raw)
  To: Jonathan Cavitt
  Cc: intel-xe, saurabhg.gupta, alex.zuo, joonas.lahtinen,
	jianxun.zhang, shuicheng.lin, dri-devel, Michal.Wajdeczko,
	michal.mrozek, raag.jadav, ivan.briano, matthew.auld,
	dafna.hirschfeld

On Fri, Feb 06, 2026 at 04:47:34PM +0000, Jonathan Cavitt wrote:
> Add an address precision field to the pagefault consumer.  This captures
> the fact that pagefaults are reported on a SZ_4K granularity by GuC,
> meaning the reported pagefault address is only the address of the page
> where the faulting access occurred rather than the exact address of the
> fault.  This field is necessary in case more reporters are added where
> the granularity can be different.
> 
> v2:
> - Keep u8 values together (Matt Brost)
> 
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>

See [1]. I'm going to ask that a u64 remain completely reserved in
xe_pagefault, as I plan to use this in the fault-storm mitigation
algorithm, which requires enough space for a pointer in xe_pagefault
(u64-sized).

Matt 

[1] https://patchwork.freedesktop.org/patch/704578/?series=161560&rev=1

> ---
>  drivers/gpu/drm/xe/xe_guc_pagefault.c   | 1 +
>  drivers/gpu/drm/xe/xe_pagefault.c       | 2 ++
>  drivers/gpu/drm/xe/xe_pagefault_types.h | 8 +++++++-
>  3 files changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_pagefault.c b/drivers/gpu/drm/xe/xe_guc_pagefault.c
> index 719a18187a31..79b790fedda8 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pagefault.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pagefault.c
> @@ -74,6 +74,7 @@ int xe_guc_pagefault_handler(struct xe_guc *guc, u32 *msg, u32 len)
>  				      << PFD_VIRTUAL_ADDR_HI_SHIFT) |
>  		(FIELD_GET(PFD_VIRTUAL_ADDR_LO, msg[2]) <<
>  		 PFD_VIRTUAL_ADDR_LO_SHIFT);
> +	pf.consumer.addr_precision = 12;
>  	pf.consumer.asid = FIELD_GET(PFD_ASID, msg[1]);
>  	pf.consumer.access_type = FIELD_GET(PFD_ACCESS_TYPE, msg[2]);
>  	pf.consumer.fault_type = FIELD_GET(PFD_FAULT_TYPE, msg[2]);
> diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
> index 922a4f3344b1..a24de27eb303 100644
> --- a/drivers/gpu/drm/xe/xe_pagefault.c
> +++ b/drivers/gpu/drm/xe/xe_pagefault.c
> @@ -231,6 +231,7 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
>  {
>  	xe_gt_info(pf->gt, "\n\tASID: %d\n"
>  		   "\tFaulted Address: 0x%08x%08x\n"
> +		   "\tAddress Precision: %lu\n"
>  		   "\tFaultType: %d\n"
>  		   "\tAccessType: %d\n"
>  		   "\tFaultLevel: %d\n"
> @@ -239,6 +240,7 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
>  		   pf->consumer.asid,
>  		   upper_32_bits(pf->consumer.page_addr),
>  		   lower_32_bits(pf->consumer.page_addr),
> +		   BIT(pf->consumer.addr_precision),
>  		   pf->consumer.fault_type,
>  		   pf->consumer.access_type,
>  		   pf->consumer.fault_level,
> diff --git a/drivers/gpu/drm/xe/xe_pagefault_types.h b/drivers/gpu/drm/xe/xe_pagefault_types.h
> index d3b516407d60..333db12713ef 100644
> --- a/drivers/gpu/drm/xe/xe_pagefault_types.h
> +++ b/drivers/gpu/drm/xe/xe_pagefault_types.h
> @@ -67,6 +67,12 @@ struct xe_pagefault {
>  		u64 page_addr;
>  		/** @consumer.asid: address space ID */
>  		u32 asid;
> +		/**
> +		 * @consumer.addr_precision: precision of the page fault address.
> +		 * u8 rather than u32 to keep compact - actual precision is
> +		 * BIT(consumer.addr_precision).  Currently only 12
> +		 */
> +		u8 addr_precision;
>  		/**
>  		 * @consumer.access_type: access type, u8 rather than enum to
>  		 * keep size compact
> @@ -85,7 +91,7 @@ struct xe_pagefault {
>  		/** @consumer.engine_instance: engine instance */
>  		u8 engine_instance;
>  		/** consumer.reserved: reserved bits for future expansion */
> -		u8 reserved[7];
> +		u8 reserved[6];
>  	} consumer;
>  	/**
>  	 * @producer: State for the producer (i.e., HW/FW interface). Populated
> -- 
> 2.43.0
> 

^ permalink raw reply	[flat|nested] 15+ messages in thread

* RE: [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault
  2026-02-13 21:03   ` Matthew Brost
@ 2026-02-13 21:09     ` Cavitt, Jonathan
  0 siblings, 0 replies; 15+ messages in thread
From: Cavitt, Jonathan @ 2026-02-13 21:09 UTC (permalink / raw)
  To: Brost, Matthew
  Cc: intel-xe@lists.freedesktop.org, Gupta,  Saurabhg, Zuo, Alex,
	joonas.lahtinen@linux.intel.com, Zhang, Jianxun, Lin, Shuicheng,
	dri-devel@lists.freedesktop.org, Wajdeczko, Michal,
	Mrozek, Michal, Jadav, Raag, Briano, Ivan, Auld, Matthew,
	dafna.hirschfeld@intel.com, Cavitt, Jonathan

-----Original Message-----
From: Brost, Matthew <matthew.brost@intel.com> 
Sent: Friday, February 13, 2026 1:03 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: intel-xe@lists.freedesktop.org; Gupta, Saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; joonas.lahtinen@linux.intel.com; Zhang, Jianxun <jianxun.zhang@intel.com>; Lin, Shuicheng <shuicheng.lin@intel.com>; dri-devel@lists.freedesktop.org; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>; Mrozek, Michal <michal.mrozek@intel.com>; Jadav, Raag <raag.jadav@intel.com>; Briano, Ivan <ivan.briano@intel.com>; Auld, Matthew <matthew.auld@intel.com>; dafna.hirschfeld@intel.com
Subject: Re: [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault
> 
> On Fri, Feb 06, 2026 at 04:47:34PM +0000, Jonathan Cavitt wrote:
> > Add an address precision field to the pagefault consumer.  This captures
> > the fact that pagefaults are reported on a SZ_4K granularity by GuC,
> > meaning the reported pagefault address is only the address of the page
> > where the faulting access occurred rather than the exact address of the
> > fault.  This field is necessary in case more reporters are added where
> > the granularity can be different.
> > 
> > v2:
> > - Keep u8 values together (Matt Brost)
> > 
> > Suggested-by: Matthew Brost <matthew.brost@intel.com>
> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> 
> See [1]. I'm going to ask that a u64 remain completely reserved in
> xe_pagefault, as I plan to use this in the fault-storm mitigation
> algorithm, which requires enough space for a pointer in xe_pagefault
> (u64-sized).

I'm not certain about the logistics of adding data to the
struct without pulling from the reserve space, but I'll see what's
doable given the address precision requirement...
-Jonathan Cavitt

> 
> Matt 
> 
> [1] https://patchwork.freedesktop.org/patch/704578/?series=161560&rev=1
> 
> > ---
> >  drivers/gpu/drm/xe/xe_guc_pagefault.c   | 1 +
> >  drivers/gpu/drm/xe/xe_pagefault.c       | 2 ++
> >  drivers/gpu/drm/xe/xe_pagefault_types.h | 8 +++++++-
> >  3 files changed, 10 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_guc_pagefault.c b/drivers/gpu/drm/xe/xe_guc_pagefault.c
> > index 719a18187a31..79b790fedda8 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_pagefault.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_pagefault.c
> > @@ -74,6 +74,7 @@ int xe_guc_pagefault_handler(struct xe_guc *guc, u32 *msg, u32 len)
> >  				      << PFD_VIRTUAL_ADDR_HI_SHIFT) |
> >  		(FIELD_GET(PFD_VIRTUAL_ADDR_LO, msg[2]) <<
> >  		 PFD_VIRTUAL_ADDR_LO_SHIFT);
> > +	pf.consumer.addr_precision = 12;
> >  	pf.consumer.asid = FIELD_GET(PFD_ASID, msg[1]);
> >  	pf.consumer.access_type = FIELD_GET(PFD_ACCESS_TYPE, msg[2]);
> >  	pf.consumer.fault_type = FIELD_GET(PFD_FAULT_TYPE, msg[2]);
> > diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
> > index 922a4f3344b1..a24de27eb303 100644
> > --- a/drivers/gpu/drm/xe/xe_pagefault.c
> > +++ b/drivers/gpu/drm/xe/xe_pagefault.c
> > @@ -231,6 +231,7 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
> >  {
> >  	xe_gt_info(pf->gt, "\n\tASID: %d\n"
> >  		   "\tFaulted Address: 0x%08x%08x\n"
> > +		   "\tAddress Precision: %lu\n"
> >  		   "\tFaultType: %d\n"
> >  		   "\tAccessType: %d\n"
> >  		   "\tFaultLevel: %d\n"
> > @@ -239,6 +240,7 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
> >  		   pf->consumer.asid,
> >  		   upper_32_bits(pf->consumer.page_addr),
> >  		   lower_32_bits(pf->consumer.page_addr),
> > +		   BIT(pf->consumer.addr_precision),
> >  		   pf->consumer.fault_type,
> >  		   pf->consumer.access_type,
> >  		   pf->consumer.fault_level,
> > diff --git a/drivers/gpu/drm/xe/xe_pagefault_types.h b/drivers/gpu/drm/xe/xe_pagefault_types.h
> > index d3b516407d60..333db12713ef 100644
> > --- a/drivers/gpu/drm/xe/xe_pagefault_types.h
> > +++ b/drivers/gpu/drm/xe/xe_pagefault_types.h
> > @@ -67,6 +67,12 @@ struct xe_pagefault {
> >  		u64 page_addr;
> >  		/** @consumer.asid: address space ID */
> >  		u32 asid;
> > +		/**
> > +		 * @consumer.addr_precision: precision of the page fault address.
> > +		 * u8 rather than u32 to keep compact - actual precision is
> > +		 * BIT(consumer.addr_precision).  Currently only 12
> > +		 */
> > +		u8 addr_precision;
> >  		/**
> >  		 * @consumer.access_type: access type, u8 rather than enum to
> >  		 * keep size compact
> > @@ -85,7 +91,7 @@ struct xe_pagefault {
> >  		/** @consumer.engine_instance: engine instance */
> >  		u8 engine_instance;
> >  		/** consumer.reserved: reserved bits for future expansion */
> > -		u8 reserved[7];
> > +		u8 reserved[6];
> >  	} consumer;
> >  	/**
> >  	 * @producer: State for the producer (i.e., HW/FW interface). Populated
> > -- 
> > 2.43.0
> > 
> 

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2026-02-13 21:09 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 16:47 [PATCH v33 0/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
2026-02-06 16:47 ` [PATCH v33 1/5] drm/xe/xe_pagefault: Disallow writes to read-only VMAs Jonathan Cavitt
2026-02-06 16:47 ` [PATCH v33 2/5] drm/xe/xe_pagefault: Track address precision per pagefault Jonathan Cavitt
2026-02-13 20:58   ` Lin, Shuicheng
2026-02-13 21:03   ` Matthew Brost
2026-02-13 21:09     ` Cavitt, Jonathan
2026-02-06 16:47 ` [PATCH v33 3/5] drm/xe/uapi: Define drm_xe_vm_get_property Jonathan Cavitt
2026-02-06 16:47 ` [PATCH v33 4/5] drm/xe/xe_vm: Add per VM fault info Jonathan Cavitt
2026-02-06 16:47 ` [PATCH v33 5/5] drm/xe/xe_vm: Implement xe_vm_get_property_ioctl Jonathan Cavitt
2026-02-06 16:52 ` ✗ CI.checkpatch: warning for " Patchwork
2026-02-06 16:53 ` ✓ CI.KUnit: success " Patchwork
2026-02-06 17:34 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-09 15:10   ` Cavitt, Jonathan
2026-02-07 16:58 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-09 15:11   ` Cavitt, Jonathan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox