* [PATCH v2 1/2] drm: Add common drm_user_fence helper
[not found] <20260827133226.4076593-1-srinivasan.shanmugam@amd.com>
@ 2026-08-27 13:32 ` Srinivasan Shanmugam
2026-08-27 13:43 ` sashiko-bot
2026-08-27 13:32 ` [PATCH v2 2/2] drm/xe: Convert xe_user_fence to drm_user_fence Srinivasan Shanmugam
` (4 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Srinivasan Shanmugam @ 2026-08-27 13:32 UTC (permalink / raw)
To: Christian König, Alex Deucher
Cc: amd-gfx, Srinivasan Shanmugam, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Sumit Semwal,
Matthew Brost, Thomas Hellström, dri-devel, intel-xe,
linux-media, linaro-mm-sig, linux-kernel
Introduce a common DRM user fence helper providing the kref-managed,
MM-borrowing dma-fence-callback-to-workqueue pattern used by drivers
that must access userspace memory from a kthread context when a GPU
fence signals.
XE uses this pattern (xe_sync.c) to write a fence completion value
to a userspace VA. AMDGPU will use the same pattern to signal a
per-queue eventfd from a user-queue EOP fence callback.
The helper provides:
- struct drm_user_fence: embeddable base structure
- struct drm_user_fence_ops: worker/destroy callbacks
- drm_user_fence_init(): initialize and grab the process MM
- drm_user_fence_get/put(): reference counting
- drm_user_fence_add_callback(): attach to a dma-fence
The worker callback receives a bool indicating whether the process
MM was successfully obtained, allowing drivers to handle the
unavailable-MM case (log, skip the userspace write, etc.) without
duplicating the mmget/kthread_use_mm/mmput boilerplate.
Suggested-by: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: dri-devel@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
Cc: linux-media@vger.kernel.org
Cc: linaro-mm-sig@lists.linaro.org
Cc: linux-kernel@vger.kernel.org
Cc: amd-gfx@lists.freedesktop.org
Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
---
v2:
- Move INIT_WORK() to drm_user_fence_init() so the work_struct is
initialized once at object creation, fixing lockdep class divergence
caused by two different INIT_WORK() call sites. (Sashiko review)
- drm_user_fence_add_callback() now consumes the fence reference in
all paths: transferred to the callback on success, put immediately
on the already-signaled and error paths. Callers must not put the
fence after this call. (Sashiko review)
- Add drm_user_fence_cancel() to allow drivers to safely detach a
pending callback before context teardown, preventing use-after-free
when a foreign dma-fence signals after driver unload. (Sashiko review)
- Fix missing newline at end of new files.
drivers/gpu/drm/Makefile | 1 +
drivers/gpu/drm/drm_user_fence.c | 164 +++++++++++++++++++++++++++++++
include/drm/drm_user_fence.h | 71 +++++++++++++
3 files changed, 236 insertions(+)
create mode 100644 drivers/gpu/drm/drm_user_fence.c
create mode 100644 include/drm/drm_user_fence.h
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index e97faabcd783..52de1f474535 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -69,6 +69,7 @@ drm-y := \
drm_syncobj.o \
drm_sysfs.o \
drm_trace_points.o \
+ drm_user_fence.o \
drm_vblank.o \
drm_vblank_work.o \
drm_vma_manager.o \
diff --git a/drivers/gpu/drm/drm_user_fence.c b/drivers/gpu/drm/drm_user_fence.c
new file mode 100644
index 000000000000..a3b14245163a
--- /dev/null
+++ b/drivers/gpu/drm/drm_user_fence.c
@@ -0,0 +1,164 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 The Linux Foundation
+ *
+ * Common DRM user fence helper.
+ *
+ * When a GPU dma-fence signals, drivers often need to write a value to a
+ * userspace VA or notify userspace via an eventfd. Both operations require
+ * a valid process MM, which is not available in IRQ context.
+ *
+ * This helper queues a work item on fence signal. The work item borrows the
+ * process MM via kthread_use_mm() and calls ops->worker(), which the driver
+ * implements to perform the actual userspace access.
+ */
+
+#include <linux/kthread.h>
+#include <linux/sched/mm.h>
+#include <linux/workqueue.h>
+
+#include <drm/drm_user_fence.h>
+
+static void drm_user_fence_destroy(struct kref *kref)
+{
+ struct drm_user_fence *ufence =
+ container_of(kref, struct drm_user_fence, refcount);
+
+ mmdrop(ufence->mm);
+ ufence->ops->destroy(ufence);
+}
+
+/**
+ * drm_user_fence_get - Acquire a reference to a user fence
+ * @ufence: user fence
+ */
+void drm_user_fence_get(struct drm_user_fence *ufence)
+{
+ kref_get(&ufence->refcount);
+}
+EXPORT_SYMBOL_GPL(drm_user_fence_get);
+
+/**
+ * drm_user_fence_put - Release a reference to a user fence
+ * @ufence: user fence
+ */
+void drm_user_fence_put(struct drm_user_fence *ufence)
+{
+ kref_put(&ufence->refcount, drm_user_fence_destroy);
+}
+EXPORT_SYMBOL_GPL(drm_user_fence_put);
+
+static void drm_user_fence_work(struct work_struct *w)
+{
+ struct drm_user_fence *ufence =
+ container_of(w, struct drm_user_fence, work);
+ bool mm_ok = false;
+
+ if (mmget_not_zero(ufence->mm)) {
+ kthread_use_mm(ufence->mm);
+ mm_ok = true;
+ }
+
+ ufence->ops->worker(ufence, mm_ok);
+
+ if (mm_ok) {
+ kthread_unuse_mm(ufence->mm);
+ mmput(ufence->mm);
+ }
+
+ drm_user_fence_put(ufence);
+}
+
+static void drm_user_fence_cb(struct dma_fence *fence, struct dma_fence_cb *cb)
+{
+ struct drm_user_fence *ufence =
+ container_of(cb, struct drm_user_fence, cb);
+
+ queue_work(ufence->wq, &ufence->work);
+ dma_fence_put(fence);
+}
+
+/**
+ * drm_user_fence_init - Initialize a user fence
+ * @ufence: user fence to initialize
+ * @wq: workqueue to run the worker on (must be ordered if sequencing matters)
+ * @ops: driver operations
+ *
+ * Must be called from process context. Grabs a reference to current->mm.
+ */
+void drm_user_fence_init(struct drm_user_fence *ufence,
+ struct workqueue_struct *wq,
+ const struct drm_user_fence_ops *ops)
+{
+ kref_init(&ufence->refcount);
+ ufence->mm = current->mm;
+ mmgrab(ufence->mm);
+ ufence->wq = wq;
+ ufence->ops = ops;
+ INIT_WORK(&ufence->work, drm_user_fence_work);
+}
+EXPORT_SYMBOL_GPL(drm_user_fence_init);
+
+/**
+ * drm_user_fence_add_callback - Attach a user fence to a dma-fence
+ * @ufence: user fence
+ * @fence: dma-fence to watch; ownership of this reference is transferred
+ * to the callback — caller must NOT put it afterward.
+ *
+ * When @fence signals, a work item is queued that calls ops->worker() with
+ * the process MM active. If @fence has already signaled the work item is
+ * queued immediately.
+ *
+ * On any return value the caller's fence reference is consumed.
+ *
+ * Return: 0 on success, negative errno on error.
+ */
+int drm_user_fence_add_callback(struct drm_user_fence *ufence,
+ struct dma_fence *fence)
+{
+ int err;
+
+ drm_user_fence_get(ufence);
+ err = dma_fence_add_callback(fence, &ufence->cb, drm_user_fence_cb);
+ if (err == -ENOENT) {
+ /* fence already signaled — queue work and release fence */
+ queue_work(ufence->wq, &ufence->work);
+ dma_fence_put(fence);
+ err = 0;
+ } else if (err) {
+ drm_user_fence_put(ufence);
+ dma_fence_put(fence);
+ }
+ /* on success: fence ref transferred to drm_user_fence_cb */
+
+ return err;
+}
+EXPORT_SYMBOL_GPL(drm_user_fence_add_callback);
+
+/**
+ * drm_user_fence_cancel - Cancel a pending user fence callback
+ * @ufence: user fence
+ * @fence: the same dma-fence passed to drm_user_fence_add_callback()
+ *
+ * Attempts to remove the pending callback before driver context teardown.
+ * Must be called before the driver tears down its workqueue or ops.
+ *
+ * If the callback has already fired this is a no-op and returns false.
+ * If removal succeeds the caller must call drm_user_fence_put() to
+ * release the reference taken by drm_user_fence_add_callback(), and
+ * must also call dma_fence_put() to release the fence reference that
+ * was transferred at add_callback time.
+ *
+ * Return: true if callback was removed, false if it had already fired.
+ */
+bool drm_user_fence_cancel(struct drm_user_fence *ufence,
+ struct dma_fence *fence)
+{
+ if (dma_fence_remove_callback(fence, &ufence->cb)) {
+ dma_fence_put(fence);
+ drm_user_fence_put(ufence);
+ return true;
+ }
+ return false;
+}
+EXPORT_SYMBOL_GPL(drm_user_fence_cancel);
diff --git a/include/drm/drm_user_fence.h b/include/drm/drm_user_fence.h
new file mode 100644
index 000000000000..0252ce776749
--- /dev/null
+++ b/include/drm/drm_user_fence.h
@@ -0,0 +1,71 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2024 The Linux Foundation
+ */
+
+#ifndef __DRM_USER_FENCE_H__
+#define __DRM_USER_FENCE_H__
+
+#include <linux/dma-fence.h>
+#include <linux/kref.h>
+#include <linux/workqueue.h>
+
+struct drm_user_fence;
+
+/**
+ * struct drm_user_fence_ops - driver callbacks for a DRM user fence
+ */
+struct drm_user_fence_ops {
+ /**
+ * @worker: Called from workqueue context.
+ *
+ * If @mm_ok is true, kthread_use_mm() is active and userspace memory
+ * (copy_to_user, eventfd_signal, etc.) may be accessed safely.
+ * If @mm_ok is false, the process MM was already gone; the driver
+ * should log a warning and skip the userspace write.
+ *
+ * wake_up() or other post-signal housekeeping should also happen here.
+ */
+ void (*worker)(struct drm_user_fence *ufence, bool mm_ok);
+
+ /**
+ * @destroy: Called when the last reference is dropped.
+ * Free the containing structure here.
+ */
+ void (*destroy)(struct drm_user_fence *ufence);
+};
+
+/**
+ * struct drm_user_fence - embeddable DRM user fence
+ *
+ * Drivers embed this in their own structure and implement
+ * &drm_user_fence_ops. Call drm_user_fence_init() at creation and
+ * drm_user_fence_add_callback() to arm on a dma-fence.
+ * Call drm_user_fence_cancel() before driver teardown.
+ */
+struct drm_user_fence {
+ /** @refcount: Reference count. */
+ struct kref refcount;
+ /** @mm: Process MM grabbed at init time. */
+ struct mm_struct *mm;
+ /** @work: Work item queued when the dma-fence signals. */
+ struct work_struct work;
+ /** @cb: dma-fence callback. */
+ struct dma_fence_cb cb;
+ /** @wq: Workqueue to run @work on. */
+ struct workqueue_struct *wq;
+ /** @ops: Driver operations. */
+ const struct drm_user_fence_ops *ops;
+};
+
+void drm_user_fence_init(struct drm_user_fence *ufence,
+ struct workqueue_struct *wq,
+ const struct drm_user_fence_ops *ops);
+void drm_user_fence_get(struct drm_user_fence *ufence);
+void drm_user_fence_put(struct drm_user_fence *ufence);
+int drm_user_fence_add_callback(struct drm_user_fence *ufence,
+ struct dma_fence *fence);
+bool drm_user_fence_cancel(struct drm_user_fence *ufence,
+ struct dma_fence *fence);
+
+#endif /* __DRM_USER_FENCE_H__ */
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH v2 1/2] drm: Add common drm_user_fence helper
2026-08-27 13:32 ` [PATCH v2 1/2] drm: Add common drm_user_fence helper Srinivasan Shanmugam
@ 2026-08-27 13:43 ` sashiko-bot
0 siblings, 0 replies; 8+ messages in thread
From: sashiko-bot @ 2026-08-27 13:43 UTC (permalink / raw)
To: Srinivasan Shanmugam; +Cc: intel-xe, dri-devel, media-ci
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] drm_user_fence_cancel() causes a Use-After-Free if the fence has signaled, because it requires the caller to pass a fence pointer without requiring the caller to hold a separate reference.
- [High] Contradictory documentation in drm_user_fence_cancel() instructs the caller to put references that the function already puts internally, leading to double-free bugs.
--
commit dfafc94b5c524854a64ed37e415adef39795ad80
Author: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
drm: Add common drm_user_fence helper
This commit introduces a common DRM user fence helper providing a pattern
to access userspace memory from a kthread context when a GPU fence signals.
It implements a kref-managed, dma-fence-callback-to-workqueue pattern that
borrows the process MM.
> diff --git a/drivers/gpu/drm/drm_user_fence.c b/drivers/gpu/drm/drm_user_fence.c
> new file mode 100644
> index 0000000000000..a3b14245163ae
> --- /dev/null
> +++ b/drivers/gpu/drm/drm_user_fence.c
[ ... ]
> +/**
> + * drm_user_fence_cancel - Cancel a pending user fence callback
> + * @ufence: user fence
> + * @fence: the same dma-fence passed to drm_user_fence_add_callback()
> + *
> + * Attempts to remove the pending callback before driver context teardown.
> + * Must be called before the driver tears down its workqueue or ops.
> + *
> + * If the callback has already fired this is a no-op and returns false.
> + * If removal succeeds the caller must call drm_user_fence_put() to
> + * release the reference taken by drm_user_fence_add_callback(), and
> + * must also call dma_fence_put() to release the fence reference that
> + * was transferred at add_callback time.
[Severity: High]
The kernel-doc instructions here state that the caller must call
drm_user_fence_put() and dma_fence_put() upon success.
However, looking at the implementation of drm_user_fence_cancel() below,
it internally executes dma_fence_put() and drm_user_fence_put() before
returning true.
If a driver strictly follows this documentation, will it lead to double-free
bugs when they try to drop the references again?
> + *
> + * Return: true if callback was removed, false if it had already fired.
> + */
> +bool drm_user_fence_cancel(struct drm_user_fence *ufence,
> + struct dma_fence *fence)
> +{
> + if (dma_fence_remove_callback(fence, &ufence->cb)) {
[Severity: High]
Can this result in a use-after-free if the fence has already signaled?
According to the drm_user_fence_add_callback() design, the caller transfers
its fence reference to the callback. If the fence signals asynchronously, the
callback fires and internally drops that reference via dma_fence_put(). If
that was the last reference, the fence object is freed.
When the driver later initiates teardown and calls drm_user_fence_cancel(),
it passes this potentially dangling fence pointer to
dma_fence_remove_callback(), which dereferences it to acquire a spinlock.
Is there a way for the caller to safely cancel the callback without taking
and holding an additional reference to the fence?
> + dma_fence_put(fence);
> + drm_user_fence_put(ufence);
> + return true;
> + }
> + return false;
> +}
> +EXPORT_SYMBOL_GPL(drm_user_fence_cancel);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260827133226.4076593-1-srinivasan.shanmugam@amd.com?part=1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 2/2] drm/xe: Convert xe_user_fence to drm_user_fence
[not found] <20260827133226.4076593-1-srinivasan.shanmugam@amd.com>
2026-08-27 13:32 ` [PATCH v2 1/2] drm: Add common drm_user_fence helper Srinivasan Shanmugam
@ 2026-08-27 13:32 ` Srinivasan Shanmugam
2026-08-27 13:43 ` sashiko-bot
2026-08-27 13:39 ` ✗ CI.checkpatch: warning for series starting with [v2,1/2] drm: Add common drm_user_fence helper Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Srinivasan Shanmugam @ 2026-08-27 13:32 UTC (permalink / raw)
To: Christian König, Alex Deucher
Cc: amd-gfx, Srinivasan Shanmugam, Matthew Brost,
Thomas Hellström, Rodrigo Vivi, Mika Kuoppala, David Airlie,
Simona Vetter, Sumit Semwal, intel-xe, dri-devel, linux-media,
linaro-mm-sig, linux-kernel
Replace the open-coded user fence implementation in xe_sync.c with the
new common drm_user_fence helper.
struct xe_user_fence now embeds struct drm_user_fence as its base.
XE-specific fields (xe_device pointer for the ufence_wq wake-up,
userspace VA, expected value, signalled flag) remain in the wrapper.
The local user_fence_destroy/get/put/worker/kick_ufence/user_fence_cb
functions are removed. Their logic moves to xe_ufence_ops.worker and
xe_ufence_ops.destroy, which are called by drm_user_fence_work().
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: intel-xe@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org
Cc: linux-media@vger.kernel.org
Cc: linaro-mm-sig@lists.linaro.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
---
v2:
- Remove unconditional dma_fence_put(fence) after
drm_user_fence_add_callback() in xe_sync_entry_signal(). The fence
reference is now consumed by drm_user_fence_add_callback() in all
paths — transferred to the callback on success, released internally
on the already-signaled and error paths. (Sashiko review)
drivers/gpu/drm/xe/xe_sync.c | 112 ++++++++++++-----------------
drivers/gpu/drm/xe/xe_sync_types.h | 1 -
2 files changed, 44 insertions(+), 69 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
index 37866768d64c..7549123f8486 100644
--- a/drivers/gpu/drm/xe/xe_sync.c
+++ b/drivers/gpu/drm/xe/xe_sync.c
@@ -6,12 +6,11 @@
#include "xe_sync.h"
#include <linux/dma-fence-array.h>
-#include <linux/kthread.h>
-#include <linux/sched/mm.h>
#include <linux/uaccess.h>
#include <drm/drm_print.h>
#include <drm/drm_syncobj.h>
+#include <drm/drm_user_fence.h>
#include <uapi/drm/xe_drm.h>
#include "xe_device.h"
@@ -19,36 +18,51 @@
#include "xe_macros.h"
#include "xe_sched_job_types.h"
+/*
+ * xe_user_fence wraps drm_user_fence with XE-specific fields.
+ * The drm_user_fence base handles MM borrowing and work-item lifetime.
+ */
struct xe_user_fence {
- struct xe_device *xe;
- struct kref refcount;
- struct dma_fence_cb cb;
- struct work_struct worker;
- struct mm_struct *mm;
- u64 __user *addr;
- u64 value;
- int signalled;
+ struct drm_user_fence base;
+ struct xe_device *xe;
+ u64 __user *addr;
+ u64 value;
+ int signalled;
};
-static void user_fence_destroy(struct kref *kref)
+static void xe_ufence_worker(struct drm_user_fence *base, bool mm_ok)
{
- struct xe_user_fence *ufence = container_of(kref, struct xe_user_fence,
- refcount);
+ struct xe_user_fence *ufence = container_of(base, struct xe_user_fence, base);
- mmdrop(ufence->mm);
- kfree(ufence);
-}
+ /*
+ * Mark signalled before waking waiters so UMD can safely reuse
+ * the same ufence without hitting -EBUSY.
+ */
+ WRITE_ONCE(ufence->signalled, 1);
-static void user_fence_get(struct xe_user_fence *ufence)
-{
- kref_get(&ufence->refcount);
+ if (mm_ok) {
+ if (copy_to_user(ufence->addr, &ufence->value, sizeof(ufence->value)))
+ XE_WARN_ON("Copy to user failed");
+ } else {
+ drm_dbg(&ufence->xe->drm,
+ "mmget_not_zero() failed, ufence wasn't signaled\n");
+ }
+
+ wake_up_all(&ufence->xe->ufence_wq);
}
-static void user_fence_put(struct xe_user_fence *ufence)
+static void xe_ufence_destroy(struct drm_user_fence *base)
{
- kref_put(&ufence->refcount, user_fence_destroy);
+ struct xe_user_fence *ufence = container_of(base, struct xe_user_fence, base);
+
+ kfree(ufence);
}
+static const struct drm_user_fence_ops xe_ufence_ops = {
+ .worker = xe_ufence_worker,
+ .destroy = xe_ufence_destroy,
+};
+
static struct xe_user_fence *user_fence_create(struct xe_device *xe, u64 addr,
u64 value)
{
@@ -63,51 +77,22 @@ static struct xe_user_fence *user_fence_create(struct xe_device *xe, u64 addr,
if (!ufence)
return ERR_PTR(-ENOMEM);
- ufence->xe = xe;
- kref_init(&ufence->refcount);
- ufence->addr = ptr;
+ ufence->xe = xe;
+ ufence->addr = ptr;
ufence->value = value;
- ufence->mm = current->mm;
- mmgrab(ufence->mm);
+ drm_user_fence_init(&ufence->base, xe->ordered_wq, &xe_ufence_ops);
return ufence;
}
-static void user_fence_worker(struct work_struct *w)
-{
- struct xe_user_fence *ufence = container_of(w, struct xe_user_fence, worker);
-
- WRITE_ONCE(ufence->signalled, 1);
- if (mmget_not_zero(ufence->mm)) {
- kthread_use_mm(ufence->mm);
- if (copy_to_user(ufence->addr, &ufence->value, sizeof(ufence->value)))
- XE_WARN_ON("Copy to user failed");
- kthread_unuse_mm(ufence->mm);
- mmput(ufence->mm);
- } else {
- drm_dbg(&ufence->xe->drm, "mmget_not_zero() failed, ufence wasn't signaled\n");
- }
-
- /*
- * Wake up waiters only after updating the ufence state, allowing the UMD
- * to safely reuse the same ufence without encountering -EBUSY errors.
- */
- wake_up_all(&ufence->xe->ufence_wq);
- user_fence_put(ufence);
-}
-
-static void kick_ufence(struct xe_user_fence *ufence, struct dma_fence *fence)
+static void user_fence_get(struct xe_user_fence *ufence)
{
- INIT_WORK(&ufence->worker, user_fence_worker);
- queue_work(ufence->xe->ordered_wq, &ufence->worker);
- dma_fence_put(fence);
+ drm_user_fence_get(&ufence->base);
}
-static void user_fence_cb(struct dma_fence *fence, struct dma_fence_cb *cb)
+static void user_fence_put(struct xe_user_fence *ufence)
{
- struct xe_user_fence *ufence = container_of(cb, struct xe_user_fence, cb);
-
- kick_ufence(ufence, fence);
+ drm_user_fence_put(&ufence->base);
}
int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef,
@@ -282,24 +267,15 @@ void xe_sync_entry_signal(struct xe_sync_entry *sync, struct dma_fence *fence)
} else if (sync->syncobj) {
drm_syncobj_replace_fence(sync->syncobj, fence);
} else if (sync->ufence) {
- int err;
-
drm_syncobj_add_point(sync->ufence_syncobj,
sync->ufence_chain_fence,
fence, sync->ufence_timeline_value);
sync->ufence_chain_fence = NULL;
fence = drm_syncobj_fence_get(sync->ufence_syncobj);
- user_fence_get(sync->ufence);
- err = dma_fence_add_callback(fence, &sync->ufence->cb,
- user_fence_cb);
- if (err == -ENOENT) {
- kick_ufence(sync->ufence, fence);
- } else if (err) {
+ if (drm_user_fence_add_callback(&sync->ufence->base, fence))
XE_WARN_ON("failed to add user fence");
- user_fence_put(sync->ufence);
- dma_fence_put(fence);
- }
+ /* fence ref consumed by drm_user_fence_add_callback */
}
}
diff --git a/drivers/gpu/drm/xe/xe_sync_types.h b/drivers/gpu/drm/xe/xe_sync_types.h
index b88f1833e28c..67048199b070 100644
--- a/drivers/gpu/drm/xe/xe_sync_types.h
+++ b/drivers/gpu/drm/xe/xe_sync_types.h
@@ -12,7 +12,6 @@ struct drm_syncobj;
struct dma_fence;
struct dma_fence_chain;
struct drm_xe_sync;
-struct user_fence;
struct xe_sync_entry {
struct drm_syncobj *syncobj;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH v2 2/2] drm/xe: Convert xe_user_fence to drm_user_fence
2026-08-27 13:32 ` [PATCH v2 2/2] drm/xe: Convert xe_user_fence to drm_user_fence Srinivasan Shanmugam
@ 2026-08-27 13:43 ` sashiko-bot
0 siblings, 0 replies; 8+ messages in thread
From: sashiko-bot @ 2026-08-27 13:43 UTC (permalink / raw)
To: Srinivasan Shanmugam; +Cc: media-ci, dri-devel, intel-xe
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] Missing memory barrier between setting ufence->signalled and copy_to_user() allows spurious -EBUSY errors on weakly ordered architectures.
Pre-existing issues:
- [High] Userspace can trigger a kernel warning (WARN_ON) by unmapping the user fence memory before it signals, creating a local Denial of Service vector.
--
commit 59eae6961ce055613e8672c56bafdaedc5de05d7
Author: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
drm/xe: Convert xe_user_fence to drm_user_fence
This commit replaces the open-coded user fence implementation in xe_sync.c
with the new common drm_user_fence helper. It embeds the base structure
and delegates the worker logic to standard ops.
> diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
> index 37866768d64c2..7549123f84869 100644
> --- a/drivers/gpu/drm/xe/xe_sync.c
> +++ b/drivers/gpu/drm/xe/xe_sync.c
[ ... ]
> @@ -19,36 +18,51 @@
> struct xe_user_fence {
> - struct xe_device *xe;
> - struct kref refcount;
> - struct dma_fence_cb cb;
> - struct work_struct worker;
> - struct mm_struct *mm;
> - u64 __user *addr;
> - u64 value;
> - int signalled;
> + struct drm_user_fence base;
> + struct xe_device *xe;
> + u64 __user *addr;
> + u64 value;
> + int signalled;
> };
>
> -static void user_fence_destroy(struct kref *kref)
> +static void xe_ufence_worker(struct drm_user_fence *base, bool mm_ok)
> {
> - struct xe_user_fence *ufence = container_of(kref, struct xe_user_fence,
> - refcount);
> + struct xe_user_fence *ufence = container_of(base, struct xe_user_fence, base);
>
> - mmdrop(ufence->mm);
> - kfree(ufence);
> -}
> + /*
> + * Mark signalled before waking waiters so UMD can safely reuse
> + * the same ufence without hitting -EBUSY.
> + */
> + WRITE_ONCE(ufence->signalled, 1);
>
> + if (mm_ok) {
[Severity: High]
Does this code need a memory barrier here?
The xe_ufence_worker() updates the kernel state (ufence->signalled) and then
writes to user memory sequentially without a memory barrier. If the CPU
reorders these stores (which is possible on weakly ordered architectures
like ARM64), userspace can observe the user memory change via polling,
immediately issue an unmap ioctl, and the kernel's check_ufence() may
read the stale ufence->signalled == 0 state.
This sequence could cause userspace to receive an unexpected -EBUSY error
when unmapping the VM area, causing the UMD to fail or abort. This was
introduced because the removed kthread_use_mm() call previously acted as
an implicit full memory barrier. Should an smp_wmb() be added here?
> + if (copy_to_user(ufence->addr, &ufence->value, sizeof(ufence->value)))
> + XE_WARN_ON("Copy to user failed");
[Severity: High]
This is a pre-existing issue, but can userspace trigger a kernel warning
here by unmapping the user fence memory before it signals?
If a user application creates a user fence pointing to valid mapped memory,
and then calls munmap() or mprotect() on the address to revoke write access
before the GPU signals the fence, the asynchronous copy_to_user() in
xe_ufence_worker() will naturally fail. This hits the unconditional
XE_WARN_ON(), which allows unprivileged userspace to spam the kernel log
and cause a kernel panic if panic_on_warn is enabled.
Could this XE_WARN_ON() be replaced with drm_dbg(), or removed entirely?
> + } else {
> + drm_dbg(&ufence->xe->drm,
> + "mmget_not_zero() failed, ufence wasn't signaled\n");
> + }
> +
> + wake_up_all(&ufence->xe->ufence_wq);
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260827133226.4076593-1-srinivasan.shanmugam@amd.com?part=2
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.checkpatch: warning for series starting with [v2,1/2] drm: Add common drm_user_fence helper
[not found] <20260827133226.4076593-1-srinivasan.shanmugam@amd.com>
2026-08-27 13:32 ` [PATCH v2 1/2] drm: Add common drm_user_fence helper Srinivasan Shanmugam
2026-08-27 13:32 ` [PATCH v2 2/2] drm/xe: Convert xe_user_fence to drm_user_fence Srinivasan Shanmugam
@ 2026-08-27 13:39 ` Patchwork
2026-08-27 13:40 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-08-27 13:39 UTC (permalink / raw)
To: Srinivasan Shanmugam; +Cc: intel-xe
== Series Details ==
Series: series starting with [v2,1/2] drm: Add common drm_user_fence helper
URL : https://patchwork.freedesktop.org/series/172880/
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
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 59343124d678bbacfc6abaafbcf22bfc9bd9ff6c
Author: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
Date: Thu Aug 27 19:02:26 2026 +0530
drm/xe: Convert xe_user_fence to drm_user_fence
Replace the open-coded user fence implementation in xe_sync.c with the
new common drm_user_fence helper.
struct xe_user_fence now embeds struct drm_user_fence as its base.
XE-specific fields (xe_device pointer for the ufence_wq wake-up,
userspace VA, expected value, signalled flag) remain in the wrapper.
The local user_fence_destroy/get/put/worker/kick_ufence/user_fence_cb
functions are removed. Their logic moves to xe_ufence_ops.worker and
xe_ufence_ops.destroy, which are called by drm_user_fence_work().
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: intel-xe@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org
Cc: linux-media@vger.kernel.org
Cc: linaro-mm-sig@lists.linaro.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
+ /mt/dim checkpatch c2f7f4803ab7055fa94f87bea53b90257d042c60 drm-intel
3631ff513f83 drm: Add common drm_user_fence helper
-:61: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#61:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 242 lines checked
59343124d678 drm/xe: Convert xe_user_fence to drm_user_fence
^ permalink raw reply [flat|nested] 8+ messages in thread* ✓ CI.KUnit: success for series starting with [v2,1/2] drm: Add common drm_user_fence helper
[not found] <20260827133226.4076593-1-srinivasan.shanmugam@amd.com>
` (2 preceding siblings ...)
2026-08-27 13:39 ` ✗ CI.checkpatch: warning for series starting with [v2,1/2] drm: Add common drm_user_fence helper Patchwork
@ 2026-08-27 13:40 ` Patchwork
2026-08-27 14:31 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-27 15:53 ` ✓ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-08-27 13:40 UTC (permalink / raw)
To: Srinivasan Shanmugam; +Cc: intel-xe
== Series Details ==
Series: series starting with [v2,1/2] drm: Add common drm_user_fence helper
URL : https://patchwork.freedesktop.org/series/172880/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:39:21] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:39:25] 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
[13:39:58] Starting KUnit Kernel (1/1)...
[13:39:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:39:58] ================== guc_buf (11 subtests) ===================
[13:39:58] [PASSED] test_smallest
[13:39:58] [PASSED] test_largest
[13:39:58] [PASSED] test_granular
[13:39:58] [PASSED] test_unique
[13:39:58] [PASSED] test_overlap
[13:39:58] [PASSED] test_reusable
[13:39:58] [PASSED] test_too_big
[13:39:58] [PASSED] test_flush
[13:39:58] [PASSED] test_lookup
[13:39:58] [PASSED] test_data
[13:39:58] [PASSED] test_class
[13:39:58] ===================== [PASSED] guc_buf =====================
[13:39:58] =================== guc_dbm (7 subtests) ===================
[13:39:58] [PASSED] test_empty
[13:39:58] [PASSED] test_default
[13:39:58] ======================== test_size ========================
[13:39:58] [PASSED] 4
[13:39:58] [PASSED] 8
[13:39:58] [PASSED] 32
[13:39:58] [PASSED] 256
[13:39:58] ==================== [PASSED] test_size ====================
[13:39:58] ======================= test_reuse ========================
[13:39:58] [PASSED] 4
[13:39:58] [PASSED] 8
[13:39:58] [PASSED] 32
[13:39:58] [PASSED] 256
[13:39:58] =================== [PASSED] test_reuse ====================
[13:39:58] =================== test_range_overlap ====================
[13:39:58] [PASSED] 4
[13:39:58] [PASSED] 8
[13:39:58] [PASSED] 32
[13:39:58] [PASSED] 256
[13:39:58] =============== [PASSED] test_range_overlap ================
[13:39:58] =================== test_range_compact ====================
[13:39:58] [PASSED] 4
[13:39:58] [PASSED] 8
[13:39:58] [PASSED] 32
[13:39:58] [PASSED] 256
[13:39:58] =============== [PASSED] test_range_compact ================
[13:39:58] ==================== test_range_spare =====================
[13:39:58] [PASSED] 4
[13:39:58] [PASSED] 8
[13:39:58] [PASSED] 32
[13:39:58] [PASSED] 256
[13:39:58] ================ [PASSED] test_range_spare =================
[13:39:58] ===================== [PASSED] guc_dbm =====================
[13:39:58] =================== guc_idm (6 subtests) ===================
[13:39:58] [PASSED] bad_init
[13:39:58] [PASSED] no_init
[13:39:58] [PASSED] init_fini
[13:39:58] [PASSED] check_used
[13:39:58] [PASSED] check_quota
[13:39:58] [PASSED] check_all
[13:39:58] ===================== [PASSED] guc_idm =====================
[13:39:58] =============== guc_klv_helpers (9 subtests) ===============
[13:39:58] [PASSED] test_count
[13:39:58] [PASSED] test_encode_u32
[13:39:58] [PASSED] test_encode_u64
[13:39:58] [PASSED] test_encode_string
[13:39:58] [PASSED] test_encode_object_raw
[13:39:58] [PASSED] test_encode_object_klv
[13:39:58] [PASSED] test_encode_object_nested
[13:39:58] [PASSED] test_encode_object_basic
[13:39:58] [PASSED] test_print
[13:39:58] ================= [PASSED] guc_klv_helpers =================
[13:39:58] =================== xe_log (4 subtests) ====================
[13:39:58] [PASSED] demo_cper
[13:39:58] [PASSED] demo_dmesg
[13:39:58] ======================= test_dmesg ========================
[13:39:58] [PASSED] test_fatal
[13:39:58] [PASSED] test_fatal_tile
[13:39:58] [PASSED] test_fatal_gt
[13:39:58] [PASSED] test_fatal_comp
[13:39:58] [PASSED] test_fatal_comp_tile
[13:39:58] [PASSED] test_fatal_comp_gt
[13:39:58] [PASSED] test_fatal_all
[13:39:58] [PASSED] test_recoverable
[13:39:58] [PASSED] test_recoverable_tile
[13:39:58] [PASSED] test_recoverable_gt
[13:39:58] [PASSED] test_recoverable_comp
[13:39:58] [PASSED] test_recoverable_comp_tile
[13:39:58] [PASSED] test_recoverable_comp_gt
[13:39:58] [PASSED] test_recoverable_all
[13:39:58] [PASSED] test_info
[13:39:58] [PASSED] test_info_tile
[13:39:58] [PASSED] test_info_gt
[13:39:58] [PASSED] test_info_err
[13:39:58] [PASSED] test_info_comp
[13:39:58] [PASSED] test_info_comp_tile
[13:39:58] [PASSED] test_info_comp_gt
[13:39:58] [PASSED] test_info_all
[13:39:58] [PASSED] test_hw_fatal
[13:39:58] [PASSED] test_hw_recoverable
[13:39:58] [PASSED] test_hw_corrected
[13:39:58] [PASSED] test_hw_informational
[13:39:58] =================== [PASSED] test_dmesg ====================
[13:39:58] ====================== test_invalid =======================
[13:39:58] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[13:39:58] ================== [SKIPPED] test_invalid ==================
[13:39:58] ===================== [PASSED] xe_log ======================
[13:39:58] ================== no_relay (3 subtests) ===================
[13:39:58] [PASSED] xe_drops_guc2pf_if_not_ready
[13:39:58] [PASSED] xe_drops_guc2vf_if_not_ready
[13:39:58] [PASSED] xe_rejects_send_if_not_ready
[13:39:58] ==================== [PASSED] no_relay =====================
[13:39:58] ================== pf_relay (14 subtests) ==================
[13:39:58] [PASSED] pf_rejects_guc2pf_too_short
[13:39:58] [PASSED] pf_rejects_guc2pf_too_long
[13:39:58] [PASSED] pf_rejects_guc2pf_no_payload
[13:39:58] [PASSED] pf_fails_no_payload
[13:39:58] [PASSED] pf_fails_bad_origin
[13:39:58] [PASSED] pf_fails_bad_type
[13:39:58] [PASSED] pf_txn_reports_error
[13:39:58] [PASSED] pf_txn_sends_pf2guc
[13:39:58] [PASSED] pf_sends_pf2guc
[13:39:58] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:39:58] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:39:58] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:39:58] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:39:58] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:39:58] ==================== [PASSED] pf_relay =====================
[13:39:58] ================== vf_relay (3 subtests) ===================
[13:39:58] [PASSED] vf_rejects_guc2vf_too_short
[13:39:58] [PASSED] vf_rejects_guc2vf_too_long
[13:39:58] [PASSED] vf_rejects_guc2vf_no_payload
[13:39:58] ==================== [PASSED] vf_relay =====================
[13:39:58] ================ pf_gt_config (9 subtests) =================
[13:39:58] [PASSED] fair_contexts_1vf
[13:39:58] [PASSED] fair_doorbells_1vf
[13:39:58] [PASSED] fair_ggtt_1vf
[13:39:58] ====================== fair_vram_1vf ======================
[13:39:58] [PASSED] 3.50 GiB
[13:39:58] [PASSED] 11.5 GiB
[13:39:58] [PASSED] 15.5 GiB
[13:39:58] [PASSED] 31.5 GiB
[13:39:58] [PASSED] 63.5 GiB
[13:39:58] [PASSED] 1.91 GiB
[13:39:58] ================== [PASSED] fair_vram_1vf ==================
[13:39:58] ================ fair_vram_1vf_admin_only =================
[13:39:58] [PASSED] 3.50 GiB
[13:39:58] [PASSED] 11.5 GiB
[13:39:58] [PASSED] 15.5 GiB
[13:39:58] [PASSED] 31.5 GiB
[13:39:58] [PASSED] 63.5 GiB
[13:39:58] [PASSED] 1.91 GiB
[13:39:58] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:39:58] ====================== fair_contexts ======================
[13:39:58] [PASSED] 1 VF
[13:39:58] [PASSED] 2 VFs
[13:39:58] [PASSED] 3 VFs
[13:39:58] [PASSED] 4 VFs
[13:39:58] [PASSED] 5 VFs
[13:39:58] [PASSED] 6 VFs
[13:39:58] [PASSED] 7 VFs
[13:39:58] [PASSED] 8 VFs
[13:39:58] [PASSED] 9 VFs
[13:39:58] [PASSED] 10 VFs
[13:39:58] [PASSED] 11 VFs
[13:39:58] [PASSED] 12 VFs
[13:39:58] [PASSED] 13 VFs
[13:39:58] [PASSED] 14 VFs
[13:39:58] [PASSED] 15 VFs
[13:39:58] [PASSED] 16 VFs
[13:39:58] [PASSED] 17 VFs
[13:39:58] [PASSED] 18 VFs
[13:39:58] [PASSED] 19 VFs
[13:39:58] [PASSED] 20 VFs
[13:39:58] [PASSED] 21 VFs
[13:39:58] [PASSED] 22 VFs
[13:39:58] [PASSED] 23 VFs
[13:39:58] [PASSED] 24 VFs
[13:39:58] [PASSED] 25 VFs
[13:39:58] [PASSED] 26 VFs
[13:39:58] [PASSED] 27 VFs
[13:39:58] [PASSED] 28 VFs
[13:39:58] [PASSED] 29 VFs
[13:39:58] [PASSED] 30 VFs
[13:39:58] [PASSED] 31 VFs
[13:39:58] [PASSED] 32 VFs
[13:39:58] [PASSED] 33 VFs
[13:39:58] [PASSED] 34 VFs
[13:39:58] [PASSED] 35 VFs
[13:39:58] [PASSED] 36 VFs
[13:39:58] [PASSED] 37 VFs
[13:39:58] [PASSED] 38 VFs
[13:39:58] [PASSED] 39 VFs
[13:39:58] [PASSED] 40 VFs
[13:39:58] [PASSED] 41 VFs
[13:39:58] [PASSED] 42 VFs
[13:39:58] [PASSED] 43 VFs
[13:39:58] [PASSED] 44 VFs
[13:39:58] [PASSED] 45 VFs
[13:39:58] [PASSED] 46 VFs
[13:39:58] [PASSED] 47 VFs
[13:39:58] [PASSED] 48 VFs
[13:39:58] [PASSED] 49 VFs
[13:39:58] [PASSED] 50 VFs
[13:39:58] [PASSED] 51 VFs
[13:39:58] [PASSED] 52 VFs
[13:39:58] [PASSED] 53 VFs
[13:39:58] [PASSED] 54 VFs
[13:39:58] [PASSED] 55 VFs
[13:39:58] [PASSED] 56 VFs
[13:39:58] [PASSED] 57 VFs
[13:39:58] [PASSED] 58 VFs
[13:39:58] [PASSED] 59 VFs
[13:39:58] [PASSED] 60 VFs
[13:39:58] [PASSED] 61 VFs
[13:39:58] [PASSED] 62 VFs
[13:39:58] [PASSED] 63 VFs
[13:39:58] ================== [PASSED] fair_contexts ==================
[13:39:58] ===================== fair_doorbells ======================
[13:39:58] [PASSED] 1 VF
[13:39:58] [PASSED] 2 VFs
[13:39:58] [PASSED] 3 VFs
[13:39:58] [PASSED] 4 VFs
[13:39:58] [PASSED] 5 VFs
[13:39:58] [PASSED] 6 VFs
[13:39:58] [PASSED] 7 VFs
[13:39:58] [PASSED] 8 VFs
[13:39:58] [PASSED] 9 VFs
[13:39:58] [PASSED] 10 VFs
[13:39:58] [PASSED] 11 VFs
[13:39:58] [PASSED] 12 VFs
[13:39:58] [PASSED] 13 VFs
[13:39:58] [PASSED] 14 VFs
[13:39:58] [PASSED] 15 VFs
[13:39:58] [PASSED] 16 VFs
[13:39:58] [PASSED] 17 VFs
[13:39:58] [PASSED] 18 VFs
[13:39:58] [PASSED] 19 VFs
[13:39:58] [PASSED] 20 VFs
[13:39:58] [PASSED] 21 VFs
[13:39:58] [PASSED] 22 VFs
[13:39:58] [PASSED] 23 VFs
[13:39:58] [PASSED] 24 VFs
[13:39:58] [PASSED] 25 VFs
[13:39:58] [PASSED] 26 VFs
[13:39:58] [PASSED] 27 VFs
[13:39:58] [PASSED] 28 VFs
[13:39:58] [PASSED] 29 VFs
[13:39:58] [PASSED] 30 VFs
[13:39:58] [PASSED] 31 VFs
[13:39:58] [PASSED] 32 VFs
[13:39:58] [PASSED] 33 VFs
[13:39:58] [PASSED] 34 VFs
[13:39:58] [PASSED] 35 VFs
[13:39:58] [PASSED] 36 VFs
[13:39:58] [PASSED] 37 VFs
[13:39:58] [PASSED] 38 VFs
[13:39:58] [PASSED] 39 VFs
[13:39:58] [PASSED] 40 VFs
[13:39:58] [PASSED] 41 VFs
[13:39:58] [PASSED] 42 VFs
[13:39:58] [PASSED] 43 VFs
[13:39:58] [PASSED] 44 VFs
[13:39:58] [PASSED] 45 VFs
[13:39:58] [PASSED] 46 VFs
[13:39:58] [PASSED] 47 VFs
[13:39:58] [PASSED] 48 VFs
[13:39:58] [PASSED] 49 VFs
[13:39:58] [PASSED] 50 VFs
[13:39:58] [PASSED] 51 VFs
[13:39:58] [PASSED] 52 VFs
[13:39:58] [PASSED] 53 VFs
[13:39:58] [PASSED] 54 VFs
[13:39:58] [PASSED] 55 VFs
[13:39:58] [PASSED] 56 VFs
[13:39:58] [PASSED] 57 VFs
[13:39:58] [PASSED] 58 VFs
[13:39:58] [PASSED] 59 VFs
[13:39:58] [PASSED] 60 VFs
[13:39:58] [PASSED] 61 VFs
[13:39:58] [PASSED] 62 VFs
[13:39:58] [PASSED] 63 VFs
[13:39:58] ================= [PASSED] fair_doorbells ==================
[13:39:58] ======================== fair_ggtt ========================
[13:39:58] [PASSED] 1 VF
[13:39:58] [PASSED] 2 VFs
[13:39:58] [PASSED] 3 VFs
[13:39:58] [PASSED] 4 VFs
[13:39:58] [PASSED] 5 VFs
[13:39:58] [PASSED] 6 VFs
[13:39:58] [PASSED] 7 VFs
[13:39:58] [PASSED] 8 VFs
[13:39:58] [PASSED] 9 VFs
[13:39:58] [PASSED] 10 VFs
[13:39:58] [PASSED] 11 VFs
[13:39:58] [PASSED] 12 VFs
[13:39:58] [PASSED] 13 VFs
[13:39:58] [PASSED] 14 VFs
[13:39:58] [PASSED] 15 VFs
[13:39:58] [PASSED] 16 VFs
[13:39:58] [PASSED] 17 VFs
[13:39:58] [PASSED] 18 VFs
[13:39:58] [PASSED] 19 VFs
[13:39:58] [PASSED] 20 VFs
[13:39:58] [PASSED] 21 VFs
[13:39:58] [PASSED] 22 VFs
[13:39:58] [PASSED] 23 VFs
[13:39:58] [PASSED] 24 VFs
[13:39:58] [PASSED] 25 VFs
[13:39:58] [PASSED] 26 VFs
[13:39:58] [PASSED] 27 VFs
[13:39:58] [PASSED] 28 VFs
[13:39:58] [PASSED] 29 VFs
[13:39:58] [PASSED] 30 VFs
[13:39:58] [PASSED] 31 VFs
[13:39:58] [PASSED] 32 VFs
[13:39:58] [PASSED] 33 VFs
[13:39:58] [PASSED] 34 VFs
[13:39:58] [PASSED] 35 VFs
[13:39:58] [PASSED] 36 VFs
[13:39:58] [PASSED] 37 VFs
[13:39:58] [PASSED] 38 VFs
[13:39:58] [PASSED] 39 VFs
[13:39:58] [PASSED] 40 VFs
[13:39:58] [PASSED] 41 VFs
[13:39:58] [PASSED] 42 VFs
[13:39:58] [PASSED] 43 VFs
[13:39:58] [PASSED] 44 VFs
[13:39:58] [PASSED] 45 VFs
[13:39:58] [PASSED] 46 VFs
[13:39:58] [PASSED] 47 VFs
[13:39:58] [PASSED] 48 VFs
[13:39:58] [PASSED] 49 VFs
[13:39:58] [PASSED] 50 VFs
[13:39:58] [PASSED] 51 VFs
[13:39:58] [PASSED] 52 VFs
[13:39:58] [PASSED] 53 VFs
[13:39:58] [PASSED] 54 VFs
[13:39:58] [PASSED] 55 VFs
[13:39:58] [PASSED] 56 VFs
[13:39:58] [PASSED] 57 VFs
[13:39:58] [PASSED] 58 VFs
[13:39:58] [PASSED] 59 VFs
[13:39:58] [PASSED] 60 VFs
[13:39:58] [PASSED] 61 VFs
[13:39:58] [PASSED] 62 VFs
[13:39:58] [PASSED] 63 VFs
[13:39:58] ==================== [PASSED] fair_ggtt ====================
[13:39:58] ======================== fair_vram ========================
[13:39:58] [PASSED] 1 VF
[13:39:58] [PASSED] 2 VFs
[13:39:58] [PASSED] 3 VFs
[13:39:58] [PASSED] 4 VFs
[13:39:58] [PASSED] 5 VFs
[13:39:58] [PASSED] 6 VFs
[13:39:58] [PASSED] 7 VFs
[13:39:58] [PASSED] 8 VFs
[13:39:58] [PASSED] 9 VFs
[13:39:58] [PASSED] 10 VFs
[13:39:58] [PASSED] 11 VFs
[13:39:58] [PASSED] 12 VFs
[13:39:58] [PASSED] 13 VFs
[13:39:58] [PASSED] 14 VFs
[13:39:58] [PASSED] 15 VFs
[13:39:58] [PASSED] 16 VFs
[13:39:58] [PASSED] 17 VFs
[13:39:58] [PASSED] 18 VFs
[13:39:58] [PASSED] 19 VFs
[13:39:58] [PASSED] 20 VFs
[13:39:58] [PASSED] 21 VFs
[13:39:58] [PASSED] 22 VFs
[13:39:58] [PASSED] 23 VFs
[13:39:58] [PASSED] 24 VFs
[13:39:58] [PASSED] 25 VFs
[13:39:58] [PASSED] 26 VFs
[13:39:58] [PASSED] 27 VFs
[13:39:58] [PASSED] 28 VFs
[13:39:58] [PASSED] 29 VFs
[13:39:58] [PASSED] 30 VFs
[13:39:58] [PASSED] 31 VFs
[13:39:58] [PASSED] 32 VFs
[13:39:58] [PASSED] 33 VFs
[13:39:58] [PASSED] 34 VFs
[13:39:58] [PASSED] 35 VFs
[13:39:58] [PASSED] 36 VFs
[13:39:58] [PASSED] 37 VFs
[13:39:58] [PASSED] 38 VFs
[13:39:58] [PASSED] 39 VFs
[13:39:58] [PASSED] 40 VFs
[13:39:58] [PASSED] 41 VFs
[13:39:58] [PASSED] 42 VFs
[13:39:58] [PASSED] 43 VFs
[13:39:58] [PASSED] 44 VFs
[13:39:58] [PASSED] 45 VFs
[13:39:58] [PASSED] 46 VFs
[13:39:58] [PASSED] 47 VFs
[13:39:58] [PASSED] 48 VFs
[13:39:58] [PASSED] 49 VFs
[13:39:58] [PASSED] 50 VFs
[13:39:58] [PASSED] 51 VFs
[13:39:58] [PASSED] 52 VFs
[13:39:58] [PASSED] 53 VFs
[13:39:58] [PASSED] 54 VFs
[13:39:58] [PASSED] 55 VFs
[13:39:58] [PASSED] 56 VFs
[13:39:58] [PASSED] 57 VFs
[13:39:58] [PASSED] 58 VFs
[13:39:58] [PASSED] 59 VFs
[13:39:58] [PASSED] 60 VFs
[13:39:58] [PASSED] 61 VFs
[13:39:58] [PASSED] 62 VFs
[13:39:58] [PASSED] 63 VFs
[13:39:58] ==================== [PASSED] fair_vram ====================
[13:39:58] ================== [PASSED] pf_gt_config ===================
[13:39:58] ===================== lmtt (1 subtest) =====================
[13:39:58] ======================== test_ops =========================
[13:39:58] [PASSED] 2-level
[13:39:58] [PASSED] multi-level
[13:39:58] ==================== [PASSED] test_ops =====================
[13:39:58] ====================== [PASSED] lmtt =======================
[13:39:58] ================= sriov_packet (1 subtest) =================
[13:39:58] [PASSED] test_descriptor_init
[13:39:58] ================== [PASSED] sriov_packet ===================
[13:39:58] ================= pf_service (11 subtests) =================
[13:39:58] [PASSED] pf_negotiate_any
[13:39:58] [PASSED] pf_negotiate_base_match
[13:39:58] [PASSED] pf_negotiate_base_newer
[13:39:58] [PASSED] pf_negotiate_base_next
[13:39:58] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:39:58] [PASSED] pf_negotiate_base_prev
[13:39:58] [PASSED] pf_negotiate_latest_match
[13:39:58] [PASSED] pf_negotiate_latest_newer
[13:39:58] [PASSED] pf_negotiate_latest_next
[13:39:58] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:39:58] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:39:58] =================== [PASSED] pf_service ====================
[13:39:58] ================= xe_guc_g2g (2 subtests) ==================
[13:39:58] ============== xe_live_guc_g2g_kunit_default ==============
[13:39:58] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:39:58] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:39:58] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:39:58] =================== [SKIPPED] xe_guc_g2g ===================
[13:39:58] =================== xe_mocs (2 subtests) ===================
[13:39:58] ================ xe_live_mocs_kernel_kunit ================
[13:39:58] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:39:58] ================ xe_live_mocs_reset_kunit =================
[13:39:58] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:39:58] ==================== [SKIPPED] xe_mocs =====================
[13:39:58] ================= xe_migrate (2 subtests) ==================
[13:39:58] ================= xe_migrate_sanity_kunit =================
[13:39:58] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:39:58] ================== xe_validate_ccs_kunit ==================
[13:39:58] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:39:58] =================== [SKIPPED] xe_migrate ===================
[13:39:58] ================== xe_dma_buf (1 subtest) ==================
[13:39:58] ==================== xe_dma_buf_kunit =====================
[13:39:58] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:39:58] =================== [SKIPPED] xe_dma_buf ===================
[13:39:58] ================= xe_bo_shrink (1 subtest) =================
[13:39:58] =================== xe_bo_shrink_kunit ====================
[13:39:58] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:39:58] ================== [SKIPPED] xe_bo_shrink ==================
[13:39:58] ==================== xe_bo (2 subtests) ====================
[13:39:58] ================== xe_ccs_migrate_kunit ===================
[13:39:58] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:39:58] ==================== xe_bo_evict_kunit ====================
[13:39:58] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:39:58] ===================== [SKIPPED] xe_bo ======================
[13:39:58] =================== xe_any (9 subtests) ====================
[13:39:58] [PASSED] test_to_xe
[13:39:58] [PASSED] test_to_dev
[13:39:58] [PASSED] test_to_pdev
[13:39:58] [PASSED] test_to_drm
[13:39:58] [PASSED] test_if_pdev
[13:39:58] [PASSED] test_if_xe
[13:39:58] [PASSED] test_if_tile
[13:39:58] [PASSED] test_if_gt
[13:39:58] [PASSED] test_to_id
[13:39:58] ===================== [PASSED] xe_any ======================
[13:39:58] ==================== args (13 subtests) ====================
[13:39:58] [PASSED] count_args_test
[13:39:58] [PASSED] call_args_example
[13:39:58] [PASSED] call_args_test
[13:39:58] [PASSED] drop_first_arg_example
[13:39:58] [PASSED] drop_first_arg_test
[13:39:58] [PASSED] first_arg_example
[13:39:58] [PASSED] first_arg_test
[13:39:58] [PASSED] last_arg_example
[13:39:58] [PASSED] last_arg_test
[13:39:58] [PASSED] pick_arg_example
[13:39:58] [PASSED] if_args_example
[13:39:58] [PASSED] if_args_test
[13:39:58] [PASSED] sep_comma_example
[13:39:58] ====================== [PASSED] args =======================
[13:39:58] =================== xe_pci (3 subtests) ====================
[13:39:58] ==================== check_graphics_ip ====================
[13:39:58] [PASSED] 12.00 Xe_LP
[13:39:58] [PASSED] 12.10 Xe_LP+
[13:39:58] [PASSED] 12.55 Xe_HPG
[13:39:58] [PASSED] 12.60 Xe_HPC
[13:39:58] [PASSED] 12.70 Xe_LPG
[13:39:58] [PASSED] 12.71 Xe_LPG
[13:39:58] [PASSED] 12.74 Xe_LPG+
[13:39:58] [PASSED] 20.01 Xe2_HPG
[13:39:58] [PASSED] 20.02 Xe2_HPG
[13:39:58] [PASSED] 20.04 Xe2_LPG
[13:39:58] [PASSED] 30.00 Xe3_LPG
[13:39:58] [PASSED] 30.01 Xe3_LPG
[13:39:58] [PASSED] 30.03 Xe3_LPG
[13:39:58] [PASSED] 30.04 Xe3_LPG
[13:39:58] [PASSED] 30.05 Xe3_LPG
[13:39:58] [PASSED] 35.10 Xe3p_LPG
[13:39:58] [PASSED] 35.11 Xe3p_XPC
[13:39:58] ================ [PASSED] check_graphics_ip ================
[13:39:58] ===================== check_media_ip ======================
[13:39:58] [PASSED] 12.00 Xe_M
[13:39:58] [PASSED] 12.55 Xe_HPM
[13:39:58] [PASSED] 13.00 Xe_LPM+
[13:39:58] [PASSED] 13.01 Xe2_HPM
[13:39:58] [PASSED] 20.00 Xe2_LPM
[13:39:58] [PASSED] 30.00 Xe3_LPM
[13:39:58] [PASSED] 30.02 Xe3_LPM
[13:39:58] [PASSED] 35.00 Xe3p_LPM
[13:39:58] [PASSED] 35.03 Xe3p_HPM
[13:39:58] ================= [PASSED] check_media_ip ==================
[13:39:58] =================== check_platform_desc ===================
[13:39:58] [PASSED] 0x9A60 (TIGERLAKE)
[13:39:58] [PASSED] 0x9A68 (TIGERLAKE)
[13:39:58] [PASSED] 0x9A70 (TIGERLAKE)
[13:39:58] [PASSED] 0x9A40 (TIGERLAKE)
[13:39:58] [PASSED] 0x9A49 (TIGERLAKE)
[13:39:58] [PASSED] 0x9A59 (TIGERLAKE)
[13:39:58] [PASSED] 0x9A78 (TIGERLAKE)
[13:39:58] [PASSED] 0x9AC0 (TIGERLAKE)
[13:39:58] [PASSED] 0x9AC9 (TIGERLAKE)
[13:39:58] [PASSED] 0x9AD9 (TIGERLAKE)
[13:39:58] [PASSED] 0x9AF8 (TIGERLAKE)
[13:39:58] [PASSED] 0x4C80 (ROCKETLAKE)
[13:39:58] [PASSED] 0x4C8A (ROCKETLAKE)
[13:39:58] [PASSED] 0x4C8B (ROCKETLAKE)
[13:39:58] [PASSED] 0x4C8C (ROCKETLAKE)
[13:39:58] [PASSED] 0x4C90 (ROCKETLAKE)
[13:39:58] [PASSED] 0x4C9A (ROCKETLAKE)
[13:39:58] [PASSED] 0x4680 (ALDERLAKE_S)
[13:39:58] [PASSED] 0x4682 (ALDERLAKE_S)
[13:39:58] [PASSED] 0x4688 (ALDERLAKE_S)
[13:39:58] [PASSED] 0x468A (ALDERLAKE_S)
[13:39:58] [PASSED] 0x468B (ALDERLAKE_S)
[13:39:58] [PASSED] 0x4690 (ALDERLAKE_S)
[13:39:58] [PASSED] 0x4692 (ALDERLAKE_S)
[13:39:58] [PASSED] 0x4693 (ALDERLAKE_S)
[13:39:58] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46AA (ALDERLAKE_P)
[13:39:58] [PASSED] 0x462A (ALDERLAKE_P)
[13:39:58] [PASSED] 0x4626 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x4628 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:39:58] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:39:58] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:39:58] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:39:58] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:39:58] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:39:58] [PASSED] 0xA721 (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA720 (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:39:58] [PASSED] 0xA780 (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA781 (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA782 (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA783 (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA788 (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA789 (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA78A (ALDERLAKE_S)
[13:39:58] [PASSED] 0xA78B (ALDERLAKE_S)
[13:39:58] [PASSED] 0x4905 (DG1)
[13:39:58] [PASSED] 0x4906 (DG1)
[13:39:58] [PASSED] 0x4907 (DG1)
[13:39:58] [PASSED] 0x4908 (DG1)
[13:39:58] [PASSED] 0x4909 (DG1)
[13:39:58] [PASSED] 0x56C0 (DG2)
[13:39:58] [PASSED] 0x56C2 (DG2)
[13:39:58] [PASSED] 0x56C1 (DG2)
[13:39:58] [PASSED] 0x7D51 (METEORLAKE)
[13:39:58] [PASSED] 0x7DD1 (METEORLAKE)
[13:39:58] [PASSED] 0x7D41 (METEORLAKE)
[13:39:58] [PASSED] 0x7D67 (METEORLAKE)
[13:39:58] [PASSED] 0xB640 (METEORLAKE)
[13:39:58] [PASSED] 0x56A0 (DG2)
[13:39:58] [PASSED] 0x56A1 (DG2)
[13:39:58] [PASSED] 0x56A2 (DG2)
[13:39:58] [PASSED] 0x56BE (DG2)
[13:39:58] [PASSED] 0x56BF (DG2)
[13:39:58] [PASSED] 0x5690 (DG2)
[13:39:58] [PASSED] 0x5691 (DG2)
[13:39:58] [PASSED] 0x5692 (DG2)
[13:39:58] [PASSED] 0x56A5 (DG2)
[13:39:58] [PASSED] 0x56A6 (DG2)
[13:39:58] [PASSED] 0x56B0 (DG2)
[13:39:58] [PASSED] 0x56B1 (DG2)
[13:39:58] [PASSED] 0x56BA (DG2)
[13:39:58] [PASSED] 0x56BB (DG2)
[13:39:58] [PASSED] 0x56BC (DG2)
[13:39:58] [PASSED] 0x56BD (DG2)
[13:39:58] [PASSED] 0x5693 (DG2)
[13:39:58] [PASSED] 0x5694 (DG2)
[13:39:58] [PASSED] 0x5695 (DG2)
[13:39:58] [PASSED] 0x56A3 (DG2)
[13:39:58] [PASSED] 0x56A4 (DG2)
[13:39:58] [PASSED] 0x56B2 (DG2)
[13:39:58] [PASSED] 0x56B3 (DG2)
[13:39:58] [PASSED] 0x5696 (DG2)
[13:39:58] [PASSED] 0x5697 (DG2)
[13:39:58] [PASSED] 0xB69 (PVC)
[13:39:58] [PASSED] 0xB6E (PVC)
[13:39:58] [PASSED] 0xBD4 (PVC)
[13:39:58] [PASSED] 0xBD5 (PVC)
[13:39:58] [PASSED] 0xBD6 (PVC)
[13:39:58] [PASSED] 0xBD7 (PVC)
[13:39:58] [PASSED] 0xBD8 (PVC)
[13:39:58] [PASSED] 0xBD9 (PVC)
[13:39:58] [PASSED] 0xBDA (PVC)
[13:39:58] [PASSED] 0xBDB (PVC)
[13:39:58] [PASSED] 0xBE0 (PVC)
[13:39:58] [PASSED] 0xBE1 (PVC)
[13:39:58] [PASSED] 0xBE5 (PVC)
[13:39:58] [PASSED] 0x7D40 (METEORLAKE)
[13:39:58] [PASSED] 0x7D45 (METEORLAKE)
[13:39:58] [PASSED] 0x7D55 (METEORLAKE)
[13:39:58] [PASSED] 0x7D60 (METEORLAKE)
[13:39:58] [PASSED] 0x7DD5 (METEORLAKE)
[13:39:58] [PASSED] 0x6420 (LUNARLAKE)
[13:39:58] [PASSED] 0x64A0 (LUNARLAKE)
[13:39:58] [PASSED] 0x64B0 (LUNARLAKE)
[13:39:58] [PASSED] 0xE202 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE209 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE20B (BATTLEMAGE)
[13:39:58] [PASSED] 0xE20C (BATTLEMAGE)
[13:39:58] [PASSED] 0xE20D (BATTLEMAGE)
[13:39:58] [PASSED] 0xE210 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE211 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE212 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE216 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE220 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE221 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE222 (BATTLEMAGE)
[13:39:58] [PASSED] 0xE223 (BATTLEMAGE)
[13:39:58] [PASSED] 0xB080 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB081 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB082 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB083 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB084 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB085 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB086 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB087 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB08F (PANTHERLAKE)
[13:39:58] [PASSED] 0xB090 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:39:58] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:39:58] [PASSED] 0xFD80 (PANTHERLAKE)
[13:39:58] [PASSED] 0xFD81 (PANTHERLAKE)
[13:39:58] [PASSED] 0xD740 (NOVALAKE_S)
[13:39:58] [PASSED] 0xD741 (NOVALAKE_S)
[13:39:58] [PASSED] 0xD742 (NOVALAKE_S)
[13:39:58] [PASSED] 0xD743 (NOVALAKE_S)
[13:39:58] [PASSED] 0xD745 (NOVALAKE_S)
[13:39:58] [PASSED] 0xD74A (NOVALAKE_S)
[13:39:58] [PASSED] 0xD74B (NOVALAKE_S)
[13:39:58] [PASSED] 0x674C (CRESCENTISLAND)
[13:39:58] [PASSED] 0x674D (CRESCENTISLAND)
[13:39:58] [PASSED] 0x674E (CRESCENTISLAND)
[13:39:58] [PASSED] 0x674F (CRESCENTISLAND)
[13:39:58] [PASSED] 0x6750 (CRESCENTISLAND)
[13:39:58] [PASSED] 0xD750 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD751 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD752 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD753 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD754 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD755 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD756 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD757 (NOVALAKE_P)
[13:39:58] [PASSED] 0xD75F (NOVALAKE_P)
[13:39:58] =============== [PASSED] check_platform_desc ===============
[13:39:58] ===================== [PASSED] xe_pci ======================
[13:39:58] ============= xe_rtp_tables_test (5 subtests) ==============
[13:39:58] ================== xe_rtp_table_gt_test ===================
[13:39:58] [PASSED] gt_was/14011060649
[13:39:58] [PASSED] gt_was/14011059788
[13:39:58] [PASSED] gt_was/14015795083
[13:39:58] [PASSED] gt_was/16021867713
[13:39:58] [PASSED] gt_was/14019449301
[13:39:58] [PASSED] gt_was/16028005424
[13:39:58] [PASSED] gt_was/14026578760
[13:39:58] [PASSED] gt_was/1409420604
[13:39:58] [PASSED] gt_was/1408615072
[13:39:58] [PASSED] gt_was/22010523718
[13:39:58] [PASSED] gt_was/14011006942
[13:39:58] [PASSED] gt_was/14014830051
[13:39:58] [PASSED] gt_was/18018781329
[13:39:58] [PASSED] gt_was/1509235366
[13:39:58] [PASSED] gt_was/18018781329
[13:39:58] [PASSED] gt_was/16016694945
[13:39:58] [PASSED] gt_was/14018575942
[13:39:58] [PASSED] gt_was/22016670082
[13:39:58] [PASSED] gt_was/22016670082
[13:39:58] [PASSED] gt_was/14017421178
[13:39:58] [PASSED] gt_was/16025250150
[13:39:58] [PASSED] gt_was/14021871409
[13:39:58] [PASSED] gt_was/16021865536
[13:39:58] [PASSED] gt_was/14021486841
[13:39:58] [PASSED] gt_was/14025160223
[13:39:58] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:39:58] [PASSED] gt_was/14025635424
[13:39:58] [PASSED] gt_was/16028005424
[13:39:58] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:39:58] ================== xe_rtp_table_gt_test ===================
[13:39:58] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:39:58] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:39:58] [PASSED] gt_tunings/Tuning: L3 cache
[13:39:58] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:39:58] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:39:58] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:39:58] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:39:58] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:39:58] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:39:58] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:39:58] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:39:58] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:39:58] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:39:58] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:39:58] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:39:58] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:39:58] ================== xe_rtp_table_oob_test ==================
[13:39:58] [PASSED] oob_was/1607983814
[13:39:58] [PASSED] oob_was/16010904313
[13:39:58] [PASSED] oob_was/18022495364
[13:39:58] [PASSED] oob_was/22012773006
[13:39:58] [PASSED] oob_was/14014475959
[13:39:58] [PASSED] oob_was/22011391025
[13:39:58] [PASSED] oob_was/22012727170
[13:39:58] [PASSED] oob_was/22012727685
[13:39:58] [PASSED] oob_was/22016596838
[13:39:58] [PASSED] oob_was/18020744125
[13:39:58] [PASSED] oob_was/1409600907
[13:39:58] [PASSED] oob_was/22014953428
[13:39:58] [PASSED] oob_was/16017236439
[13:39:58] [PASSED] oob_was/14019821291
[13:39:58] [PASSED] oob_was/14015076503
[13:39:58] [PASSED] oob_was/14018913170
[13:39:58] [PASSED] oob_was/14018094691
[13:39:58] [PASSED] oob_was/18024947630
[13:39:58] [PASSED] oob_was/16022287689
[13:39:58] [PASSED] oob_was/13011645652
[13:39:58] [PASSED] oob_was/14022293748
[13:39:58] [PASSED] oob_was/22019794406
[13:39:58] [PASSED] oob_was/22019338487
[13:39:58] [PASSED] oob_was/16023588340
[13:39:58] [PASSED] oob_was/14019789679
[13:39:58] [PASSED] oob_was/14022866841
[13:39:58] [PASSED] oob_was/16021333562
[13:39:58] [PASSED] oob_was/14016712196
[13:39:58] [PASSED] oob_was/14015568240
[13:39:58] [PASSED] oob_was/18013179988
[13:39:58] [PASSED] oob_was/1508761755
[13:39:58] [PASSED] oob_was/16023105232
[13:39:58] [PASSED] oob_was/16026508708
[13:39:58] [PASSED] oob_was/14020001231
[13:39:58] [PASSED] oob_was/16023683509
[13:39:58] [PASSED] oob_was/14025515070
[13:39:58] [PASSED] oob_was/15015404425_disable
[13:39:58] [PASSED] oob_was/16026007364
[13:39:58] [PASSED] oob_was/14020316580
[13:39:58] [PASSED] oob_was/14025883347
[13:39:58] [PASSED] oob_was/16029380221
[13:39:58] [PASSED] oob_was/22022079272
[13:39:58] [PASSED] oob_was/16029897822
[13:39:58] [PASSED] oob_was/14027054324
[13:39:58] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:39:58] ================ xe_rtp_table_dev_oob_test ================
[13:39:58] [PASSED] device_oob_was/22010954014
[13:39:58] [PASSED] device_oob_was/15015404425
[13:39:58] [PASSED] device_oob_was/22019338487_display
[13:39:58] [PASSED] device_oob_was/14022085890
[13:39:58] [PASSED] device_oob_was/14026539277
[13:39:58] [PASSED] device_oob_was/14026633728
[13:39:58] [PASSED] device_oob_was/14026746987
[13:39:58] [PASSED] device_oob_was/14026779378
[13:39:58] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:39:58] ========== xe_rtp_table_missing_upper_bound_test ==========
[13:39:58] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:39:58] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:39:58] [PASSED] register_whitelist/1806527549
[13:39:58] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:39:58] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:39:58] [PASSED] register_whitelist/16014440446
[13:39:58] [PASSED] register_whitelist/16017236439
[13:39:58] [PASSED] register_whitelist/16020183090
[13:39:58] [PASSED] register_whitelist/14024997852
[13:39:58] [PASSED] register_whitelist/14024997852
[13:39:58] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:39:58] =============== [PASSED] xe_rtp_tables_test ================
[13:39:58] =================== xe_rtp (3 subtests) ====================
[13:39:58] =================== xe_rtp_rules_tests ====================
[13:39:58] [PASSED] no
[13:39:58] [PASSED] yes
[13:39:58] [PASSED] no-and-no
[13:39:58] [PASSED] no-and-yes
[13:39:58] [PASSED] yes-and-no
[13:39:58] [PASSED] yes-and-yes
[13:39:58] [PASSED] no-or-no
[13:39:58] [PASSED] no-or-yes
[13:39:58] [PASSED] yes-or-no
[13:39:58] [PASSED] yes-or-yes
[13:39:58] [PASSED] no-yes-or-yes-no
[13:39:58] [PASSED] no-yes-or-yes-yes
[13:39:58] [PASSED] yes-yes-or-no-yes
[13:39:58] [PASSED] yes-yes-or-yes-yes
[13:39:58] [PASSED] no-no-or-yes-or-no
[13:39:58] [PASSED] or
[13:39:58] [PASSED] or-yes
[13:39:58] [PASSED] or-no
[13:39:58] [PASSED] yes-or
[13:39:58] [PASSED] no-or
[13:39:58] [PASSED] no-or-or-yes
[13:39:58] [PASSED] yes-or-or-no
[13:39:58] [PASSED] no-or-or-no
[13:39:58] [PASSED] missing-context-engine-class
[13:39:58] [PASSED] missing-context-engine-class-or-yes
[13:39:58] [PASSED] missing-context-engine-class-or-or-yes
[13:39:58] =============== [PASSED] xe_rtp_rules_tests ================
[13:39:58] =============== xe_rtp_process_to_sr_tests ================
[13:39:58] [PASSED] coalesce-same-reg
[13:39:58] [PASSED] coalesce-same-reg-literal-and-func
[13:39:58] [PASSED] no-match-no-add
[13:39:58] [PASSED] two-regs-two-entries
[13:39:58] [PASSED] clr-one-set-other
[13:39:58] [PASSED] set-field
[13:39:58] [PASSED] conflict-duplicate
[13:39:58] [PASSED] conflict-not-disjoint
[13:39:58] [PASSED] conflict-not-disjoint-literal-and-func
[13:39:58] [PASSED] conflict-reg-type
[13:39:58] [PASSED] bad-mcr-reg-forced-to-regular
[13:39:58] [PASSED] bad-regular-reg-forced-to-mcr
[13:39:58] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:39:58] ================== xe_rtp_process_tests ===================
[13:39:58] [PASSED] active1
[13:39:58] [PASSED] active2
[13:39:58] [PASSED] active-inactive
[13:39:58] [PASSED] inactive-active
[13:39:58] [PASSED] inactive-active-inactive
[13:39:58] [PASSED] inactive-inactive-inactive
[13:39:58] ============== [PASSED] xe_rtp_process_tests ===============
[13:39:58] ===================== [PASSED] xe_rtp ======================
[13:39:58] ==================== xe_wa (1 subtest) =====================
[13:39:58] ======================== xe_wa_gt =========================
[13:39:58] [PASSED] TIGERLAKE B0
[13:39:58] [PASSED] DG1 A0
[13:39:58] [PASSED] DG1 B0
[13:39:58] [PASSED] ALDERLAKE_S A0
[13:39:58] [PASSED] ALDERLAKE_S B0
[13:39:58] [PASSED] ALDERLAKE_S C0
[13:39:58] [PASSED] ALDERLAKE_S D0
[13:39:58] [PASSED] ALDERLAKE_P A0
[13:39:58] [PASSED] ALDERLAKE_P B0
[13:39:58] [PASSED] ALDERLAKE_P C0
[13:39:58] [PASSED] ALDERLAKE_S RPLS D0
[13:39:58] [PASSED] ALDERLAKE_P RPLU E0
[13:39:58] [PASSED] DG2 G10 C0
[13:39:58] [PASSED] DG2 G11 B1
[13:39:58] [PASSED] DG2 G12 A1
[13:39:58] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:39:58] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:39:58] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:39:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:39:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:39:58] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:39:58] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:39:58] ==================== [PASSED] xe_wa_gt =====================
[13:39:58] ====================== [PASSED] xe_wa ======================
[13:39:58] ============================================================
[13:39:58] Testing complete. Ran 789 tests: passed: 761, skipped: 28
[13:39:58] Elapsed time: 37.744s total, 4.420s configuring, 32.608s building, 0.686s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:39:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:40:00] 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
[13:40:25] Starting KUnit Kernel (1/1)...
[13:40:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:40:25] ============ drm_test_pick_cmdline (2 subtests) ============
[13:40:25] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:40:25] =============== drm_test_pick_cmdline_named ===============
[13:40:25] [PASSED] NTSC
[13:40:25] [PASSED] NTSC-J
[13:40:25] [PASSED] PAL
[13:40:25] [PASSED] PAL-M
[13:40:25] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:40:25] ============== [PASSED] drm_test_pick_cmdline ==============
[13:40:25] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:40:25] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:40:25] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:40:25] =========== drm_validate_clone_mode (2 subtests) ===========
[13:40:25] ============== drm_test_check_in_clone_mode ===============
[13:40:25] [PASSED] in_clone_mode
[13:40:25] [PASSED] not_in_clone_mode
[13:40:25] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:40:25] =============== drm_test_check_valid_clones ===============
[13:40:25] [PASSED] not_in_clone_mode
[13:40:25] [PASSED] valid_clone
[13:40:25] [PASSED] invalid_clone
[13:40:25] =========== [PASSED] drm_test_check_valid_clones ===========
[13:40:25] ============= [PASSED] drm_validate_clone_mode =============
[13:40:25] ============= drm_validate_modeset (1 subtest) =============
[13:40:25] [PASSED] drm_test_check_connector_changed_modeset
[13:40:25] ============== [PASSED] drm_validate_modeset ===============
[13:40:25] ====== drm_test_bridge_get_current_state (1 subtest) =======
[13:40:25] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:40:25] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:40:25] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:40:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:40:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:40:25] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[13:40:25] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:40:25] ============== drm_bridge_alloc (2 subtests) ===============
[13:40:25] [PASSED] drm_test_drm_bridge_alloc_basic
[13:40:25] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:40:25] ================ [PASSED] drm_bridge_alloc =================
[13:40:25] ============= drm_bridge_bus_fmt (5 subtests) ==============
[13:40:25] [PASSED] drm_test_bridge_rgb_yuv_rgb
[13:40:25] [PASSED] drm_test_bridge_must_convert_to_yuv444
[13:40:25] [PASSED] drm_test_bridge_hdmi_auto_rgb
[13:40:25] [PASSED] drm_test_bridge_auto_first
[13:40:25] [PASSED] drm_test_bridge_rgb_yuv_no_path
[13:40:25] =============== [PASSED] drm_bridge_bus_fmt ================
[13:40:25] ============= drm_cmdline_parser (40 subtests) =============
[13:40:25] [PASSED] drm_test_cmdline_force_d_only
[13:40:25] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:40:25] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:40:25] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:40:25] [PASSED] drm_test_cmdline_force_e_only
[13:40:25] [PASSED] drm_test_cmdline_res
[13:40:25] [PASSED] drm_test_cmdline_res_vesa
[13:40:25] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:40:25] [PASSED] drm_test_cmdline_res_rblank
[13:40:25] [PASSED] drm_test_cmdline_res_bpp
[13:40:25] [PASSED] drm_test_cmdline_res_refresh
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:40:25] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:40:25] [PASSED] drm_test_cmdline_res_margins_force_on
[13:40:25] [PASSED] drm_test_cmdline_res_vesa_margins
[13:40:25] [PASSED] drm_test_cmdline_name
[13:40:25] [PASSED] drm_test_cmdline_name_bpp
[13:40:25] [PASSED] drm_test_cmdline_name_option
[13:40:25] [PASSED] drm_test_cmdline_name_bpp_option
[13:40:25] [PASSED] drm_test_cmdline_rotate_0
[13:40:25] [PASSED] drm_test_cmdline_rotate_90
[13:40:25] [PASSED] drm_test_cmdline_rotate_180
[13:40:25] [PASSED] drm_test_cmdline_rotate_270
[13:40:25] [PASSED] drm_test_cmdline_hmirror
[13:40:25] [PASSED] drm_test_cmdline_vmirror
[13:40:25] [PASSED] drm_test_cmdline_margin_options
[13:40:25] [PASSED] drm_test_cmdline_multiple_options
[13:40:25] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:40:25] [PASSED] drm_test_cmdline_extra_and_option
[13:40:25] [PASSED] drm_test_cmdline_freestanding_options
[13:40:25] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:40:25] [PASSED] drm_test_cmdline_panel_orientation
[13:40:25] ================ drm_test_cmdline_invalid =================
[13:40:25] [PASSED] margin_only
[13:40:25] [PASSED] interlace_only
[13:40:25] [PASSED] res_missing_x
[13:40:25] [PASSED] res_missing_y
[13:40:25] [PASSED] res_bad_y
[13:40:25] [PASSED] res_missing_y_bpp
[13:40:25] [PASSED] res_bad_bpp
[13:40:25] [PASSED] res_bad_refresh
[13:40:25] [PASSED] res_bpp_refresh_force_on_off
[13:40:25] [PASSED] res_invalid_mode
[13:40:25] [PASSED] res_bpp_wrong_place_mode
[13:40:25] [PASSED] name_bpp_refresh
[13:40:25] [PASSED] name_refresh
[13:40:25] [PASSED] name_refresh_wrong_mode
[13:40:25] [PASSED] name_refresh_invalid_mode
[13:40:25] [PASSED] rotate_multiple
[13:40:25] [PASSED] rotate_invalid_val
[13:40:25] [PASSED] rotate_truncated
[13:40:25] [PASSED] invalid_option
[13:40:25] [PASSED] invalid_tv_option
[13:40:25] [PASSED] truncated_tv_option
[13:40:25] ============ [PASSED] drm_test_cmdline_invalid =============
[13:40:25] =============== drm_test_cmdline_tv_options ===============
[13:40:25] [PASSED] NTSC
[13:40:25] [PASSED] NTSC_443
[13:40:25] [PASSED] NTSC_J
[13:40:25] [PASSED] PAL
[13:40:25] [PASSED] PAL_M
[13:40:25] [PASSED] PAL_N
[13:40:25] [PASSED] SECAM
[13:40:25] [PASSED] MONO_525
[13:40:25] [PASSED] MONO_625
[13:40:25] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:40:25] =============== [PASSED] drm_cmdline_parser ================
[13:40:25] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:40:25] [PASSED] drm_test_connector_hdmi_init_valid
[13:40:25] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:40:25] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:40:25] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:40:25] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:40:25] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:40:25] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:40:25] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:40:25] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:40:25] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:40:25] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:40:25] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:40:25] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:40:25] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:40:25] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:40:25] [PASSED] drm_test_connector_hdmi_init_null_product
[13:40:25] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:40:25] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:40:25] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:40:25] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:40:25] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:40:25] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:40:25] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:40:25] ========= drm_test_connector_hdmi_init_type_valid =========
[13:40:25] [PASSED] HDMI-A
[13:40:25] [PASSED] HDMI-B
[13:40:25] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:40:25] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:40:25] [PASSED] Unknown
[13:40:25] [PASSED] VGA
[13:40:25] [PASSED] DVI-I
[13:40:25] [PASSED] DVI-D
[13:40:25] [PASSED] DVI-A
[13:40:25] [PASSED] Composite
[13:40:25] [PASSED] SVIDEO
[13:40:25] [PASSED] LVDS
[13:40:25] [PASSED] Component
[13:40:25] [PASSED] DIN
[13:40:25] [PASSED] DP
[13:40:25] [PASSED] TV
[13:40:25] [PASSED] eDP
[13:40:25] [PASSED] Virtual
[13:40:25] [PASSED] DSI
[13:40:25] [PASSED] DPI
[13:40:25] [PASSED] Writeback
[13:40:25] [PASSED] SPI
[13:40:25] [PASSED] USB
[13:40:25] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:40:25] ============ [PASSED] drmm_connector_hdmi_init =============
[13:40:25] ============= drmm_connector_init (3 subtests) =============
[13:40:25] [PASSED] drm_test_drmm_connector_init
[13:40:25] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:40:25] ========= drm_test_drmm_connector_init_type_valid =========
[13:40:25] [PASSED] Unknown
[13:40:25] [PASSED] VGA
[13:40:25] [PASSED] DVI-I
[13:40:25] [PASSED] DVI-D
[13:40:25] [PASSED] DVI-A
[13:40:25] [PASSED] Composite
[13:40:25] [PASSED] SVIDEO
[13:40:25] [PASSED] LVDS
[13:40:25] [PASSED] Component
[13:40:25] [PASSED] DIN
[13:40:25] [PASSED] DP
[13:40:25] [PASSED] HDMI-A
[13:40:25] [PASSED] HDMI-B
[13:40:25] [PASSED] TV
[13:40:25] [PASSED] eDP
[13:40:25] [PASSED] Virtual
[13:40:25] [PASSED] DSI
[13:40:25] [PASSED] DPI
[13:40:25] [PASSED] Writeback
[13:40:25] [PASSED] SPI
[13:40:25] [PASSED] USB
[13:40:25] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:40:25] =============== [PASSED] drmm_connector_init ===============
[13:40:25] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_init
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:40:25] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:40:25] [PASSED] Unknown
[13:40:25] [PASSED] VGA
[13:40:25] [PASSED] DVI-I
[13:40:25] [PASSED] DVI-D
[13:40:25] [PASSED] DVI-A
[13:40:25] [PASSED] Composite
[13:40:25] [PASSED] SVIDEO
[13:40:25] [PASSED] LVDS
[13:40:25] [PASSED] Component
[13:40:25] [PASSED] DIN
[13:40:25] [PASSED] DP
[13:40:25] [PASSED] HDMI-A
[13:40:25] [PASSED] HDMI-B
[13:40:25] [PASSED] TV
[13:40:25] [PASSED] eDP
[13:40:25] [PASSED] Virtual
[13:40:25] [PASSED] DSI
[13:40:25] [PASSED] DPI
[13:40:25] [PASSED] Writeback
[13:40:25] [PASSED] SPI
[13:40:25] [PASSED] USB
[13:40:25] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:40:25] ======== drm_test_drm_connector_dynamic_init_name =========
[13:40:25] [PASSED] Unknown
[13:40:25] [PASSED] VGA
[13:40:25] [PASSED] DVI-I
[13:40:25] [PASSED] DVI-D
[13:40:25] [PASSED] DVI-A
[13:40:25] [PASSED] Composite
[13:40:25] [PASSED] SVIDEO
[13:40:25] [PASSED] LVDS
[13:40:25] [PASSED] Component
[13:40:25] [PASSED] DIN
[13:40:25] [PASSED] DP
[13:40:25] [PASSED] HDMI-A
[13:40:25] [PASSED] HDMI-B
[13:40:25] [PASSED] TV
[13:40:25] [PASSED] eDP
[13:40:25] [PASSED] Virtual
[13:40:25] [PASSED] DSI
[13:40:25] [PASSED] DPI
[13:40:25] [PASSED] Writeback
[13:40:25] [PASSED] SPI
[13:40:25] [PASSED] USB
[13:40:25] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:40:25] =========== [PASSED] drm_connector_dynamic_init ============
[13:40:25] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:40:25] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:40:25] ======= drm_connector_dynamic_register (7 subtests) ========
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:40:25] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:40:25] ========= [PASSED] drm_connector_dynamic_register ==========
[13:40:25] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:40:25] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:40:25] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:40:25] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:40:25] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:40:25] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:40:25] [PASSED] NTSC
[13:40:25] [PASSED] NTSC-443
[13:40:25] [PASSED] NTSC-J
[13:40:25] [PASSED] PAL
[13:40:25] [PASSED] PAL-M
[13:40:25] [PASSED] PAL-N
[13:40:25] [PASSED] SECAM
[13:40:25] [PASSED] Mono
[13:40:25] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:40:25] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:40:25] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:40:25] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:40:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:40:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:40:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:40:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:40:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:40:25] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:40:25] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:40:25] [PASSED] VIC 96
[13:40:25] [PASSED] VIC 97
[13:40:25] [PASSED] VIC 101
[13:40:25] [PASSED] VIC 102
[13:40:25] [PASSED] VIC 106
[13:40:25] [PASSED] VIC 107
[13:40:25] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:40:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:40:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:40:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:40:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:40:25] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:40:25] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:40:25] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:40:25] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:40:25] [PASSED] Automatic
[13:40:25] [PASSED] Full
[13:40:25] [PASSED] Limited 16:235
[13:40:25] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:40:25] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:40:25] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:40:25] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:40:25] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:40:25] [PASSED] RGB
[13:40:25] [PASSED] YUV 4:2:0
[13:40:25] [PASSED] YUV 4:2:2
[13:40:25] [PASSED] YUV 4:4:4
[13:40:25] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:40:25] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:40:25] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:40:25] ============= drm_damage_helper (21 subtests) ==============
[13:40:25] [PASSED] drm_test_damage_iter_no_damage
[13:40:25] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:40:25] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:40:25] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:40:25] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:40:25] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:40:25] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:40:25] [PASSED] drm_test_damage_iter_simple_damage
[13:40:25] [PASSED] drm_test_damage_iter_single_damage
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:40:25] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:40:25] [PASSED] drm_test_damage_iter_damage
[13:40:25] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:40:25] [PASSED] drm_test_damage_iter_damage_one_outside
[13:40:25] [PASSED] drm_test_damage_iter_damage_src_moved
[13:40:25] [PASSED] drm_test_damage_iter_damage_not_visible
[13:40:25] ================ [PASSED] drm_damage_helper ================
[13:40:25] ============== drm_dp_mst_helper (3 subtests) ==============
[13:40:25] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:40:25] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:40:25] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:40:25] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:40:25] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:40:25] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:40:25] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:40:25] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:40:25] [PASSED] Link rate 2000000 lane count 4
[13:40:25] [PASSED] Link rate 2000000 lane count 2
[13:40:25] [PASSED] Link rate 2000000 lane count 1
[13:40:25] [PASSED] Link rate 1350000 lane count 4
[13:40:25] [PASSED] Link rate 1350000 lane count 2
[13:40:25] [PASSED] Link rate 1350000 lane count 1
[13:40:25] [PASSED] Link rate 1000000 lane count 4
[13:40:25] [PASSED] Link rate 1000000 lane count 2
[13:40:25] [PASSED] Link rate 1000000 lane count 1
[13:40:25] [PASSED] Link rate 810000 lane count 4
[13:40:25] [PASSED] Link rate 810000 lane count 2
[13:40:25] [PASSED] Link rate 810000 lane count 1
[13:40:25] [PASSED] Link rate 540000 lane count 4
[13:40:25] [PASSED] Link rate 540000 lane count 2
[13:40:25] [PASSED] Link rate 540000 lane count 1
[13:40:25] [PASSED] Link rate 270000 lane count 4
[13:40:25] [PASSED] Link rate 270000 lane count 2
[13:40:25] [PASSED] Link rate 270000 lane count 1
[13:40:25] [PASSED] Link rate 162000 lane count 4
[13:40:25] [PASSED] Link rate 162000 lane count 2
[13:40:25] [PASSED] Link rate 162000 lane count 1
[13:40:25] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:40:25] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:40:25] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:40:25] [PASSED] DP_POWER_UP_PHY with port number
[13:40:25] [PASSED] DP_POWER_DOWN_PHY with port number
[13:40:25] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:40:25] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:40:25] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:40:25] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:40:25] [PASSED] DP_QUERY_PAYLOAD with port number
[13:40:25] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:40:25] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:40:25] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:40:25] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:40:25] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:40:25] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:40:25] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:40:25] [PASSED] DP_REMOTE_I2C_READ with port number
[13:40:25] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:40:25] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:40:25] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:40:25] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:40:25] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:40:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:40:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:40:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:40:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:40:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:40:25] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:40:25] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:40:25] ================ [PASSED] drm_dp_mst_helper ================
[13:40:25] ================== drm_exec (7 subtests) ===================
[13:40:25] [PASSED] sanitycheck
[13:40:25] [PASSED] test_lock
[13:40:25] [PASSED] test_lock_unlock
[13:40:25] [PASSED] test_duplicates
[13:40:25] [PASSED] test_prepare
[13:40:25] [PASSED] test_prepare_array
[13:40:25] [PASSED] test_multiple_loops
[13:40:25] ==================== [PASSED] drm_exec =====================
[13:40:25] =========== drm_format_helper_test (17 subtests) ===========
[13:40:25] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:40:25] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:40:25] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:40:25] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:40:25] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:40:25] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:40:25] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:40:25] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:40:25] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:40:25] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:40:25] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:40:25] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:40:25] ==================== drm_test_fb_swab =====================
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ================ [PASSED] drm_test_fb_swab =================
[13:40:25] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:40:25] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:40:25] [PASSED] single_pixel_source_buffer
[13:40:25] [PASSED] single_pixel_clip_rectangle
[13:40:25] [PASSED] well_known_colors
[13:40:25] [PASSED] destination_pitch
[13:40:25] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:40:25] ================= drm_test_fb_clip_offset =================
[13:40:25] [PASSED] pass through
[13:40:25] [PASSED] horizontal offset
[13:40:25] [PASSED] vertical offset
[13:40:25] [PASSED] horizontal and vertical offset
[13:40:25] [PASSED] horizontal offset (custom pitch)
[13:40:25] [PASSED] vertical offset (custom pitch)
[13:40:25] [PASSED] horizontal and vertical offset (custom pitch)
[13:40:25] ============= [PASSED] drm_test_fb_clip_offset =============
[13:40:25] =================== drm_test_fb_memcpy ====================
[13:40:25] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:40:25] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:40:25] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:40:25] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:40:25] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:40:25] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:40:25] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:40:25] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:40:25] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:40:25] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:40:25] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:40:25] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:40:25] =============== [PASSED] drm_test_fb_memcpy ================
[13:40:25] ============= [PASSED] drm_format_helper_test ==============
[13:40:25] ================= drm_format (18 subtests) =================
[13:40:25] [PASSED] drm_test_format_block_width_invalid
[13:40:25] [PASSED] drm_test_format_block_width_one_plane
[13:40:25] [PASSED] drm_test_format_block_width_two_plane
[13:40:25] [PASSED] drm_test_format_block_width_three_plane
[13:40:25] [PASSED] drm_test_format_block_width_tiled
[13:40:25] [PASSED] drm_test_format_block_height_invalid
[13:40:25] [PASSED] drm_test_format_block_height_one_plane
[13:40:25] [PASSED] drm_test_format_block_height_two_plane
[13:40:25] [PASSED] drm_test_format_block_height_three_plane
[13:40:25] [PASSED] drm_test_format_block_height_tiled
[13:40:25] [PASSED] drm_test_format_min_pitch_invalid
[13:40:25] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:40:25] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:40:25] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:40:25] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:40:25] [PASSED] drm_test_format_min_pitch_two_plane
[13:40:25] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:40:25] [PASSED] drm_test_format_min_pitch_tiled
[13:40:25] =================== [PASSED] drm_format ====================
[13:40:25] ============== drm_framebuffer (10 subtests) ===============
[13:40:25] ========== drm_test_framebuffer_check_src_coords ==========
[13:40:25] [PASSED] Success: source fits into fb
[13:40:25] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:40:25] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:40:25] [PASSED] Fail: overflowing fb with source width
[13:40:25] [PASSED] Fail: overflowing fb with source height
[13:40:25] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:40:25] [PASSED] drm_test_framebuffer_cleanup
[13:40:25] =============== drm_test_framebuffer_create ===============
[13:40:25] [PASSED] ABGR8888 normal sizes
[13:40:25] [PASSED] ABGR8888 max sizes
[13:40:25] [PASSED] ABGR8888 pitch greater than min required
[13:40:25] [PASSED] ABGR8888 pitch less than min required
[13:40:25] [PASSED] ABGR8888 Invalid width
[13:40:25] [PASSED] ABGR8888 Invalid buffer handle
[13:40:25] [PASSED] No pixel format
[13:40:25] [PASSED] ABGR8888 Width 0
[13:40:25] [PASSED] ABGR8888 Height 0
[13:40:25] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:40:25] [PASSED] ABGR8888 Large buffer offset
[13:40:25] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:40:25] [PASSED] ABGR8888 Invalid flag
[13:40:25] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:40:25] [PASSED] ABGR8888 Valid buffer modifier
[13:40:25] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:40:25] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] NV12 Normal sizes
[13:40:25] [PASSED] NV12 Max sizes
[13:40:25] [PASSED] NV12 Invalid pitch
[13:40:25] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:40:25] [PASSED] NV12 different modifier per-plane
[13:40:25] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:40:25] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] NV12 Modifier for inexistent plane
[13:40:25] [PASSED] NV12 Handle for inexistent plane
[13:40:25] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:40:25] [PASSED] YVU420 Normal sizes
[13:40:25] [PASSED] YVU420 Max sizes
[13:40:25] [PASSED] YVU420 Invalid pitch
[13:40:25] [PASSED] YVU420 Different pitches
[13:40:25] [PASSED] YVU420 Different buffer offsets/pitches
[13:40:25] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:40:25] [PASSED] YVU420 Valid modifier
[13:40:25] [PASSED] YVU420 Different modifiers per plane
[13:40:25] [PASSED] YVU420 Modifier for inexistent plane
[13:40:25] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:40:25] [PASSED] X0L2 Normal sizes
[13:40:25] [PASSED] X0L2 Max sizes
[13:40:25] [PASSED] X0L2 Invalid pitch
[13:40:25] [PASSED] X0L2 Pitch greater than minimum required
[13:40:25] [PASSED] X0L2 Handle for inexistent plane
[13:40:25] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:40:25] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:40:25] [PASSED] X0L2 Valid modifier
[13:40:25] [PASSED] X0L2 Modifier for inexistent plane
[13:40:25] =========== [PASSED] drm_test_framebuffer_create ===========
[13:40:25] [PASSED] drm_test_framebuffer_free
[13:40:25] [PASSED] drm_test_framebuffer_init
[13:40:25] [PASSED] drm_test_framebuffer_init_bad_format
[13:40:25] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:40:25] [PASSED] drm_test_framebuffer_lookup
[13:40:25] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:40:25] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:40:25] ================= [PASSED] drm_framebuffer =================
[13:40:25] ================ drm_gem_shmem (8 subtests) ================
[13:40:25] [PASSED] drm_gem_shmem_test_obj_create
[13:40:25] [PASSED] drm_gem_shmem_test_obj_create_private
[13:40:25] [PASSED] drm_gem_shmem_test_pin_pages
[13:40:25] [PASSED] drm_gem_shmem_test_vmap
[13:40:25] [PASSED] drm_gem_shmem_test_get_sg_table
[13:40:25] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:40:25] [PASSED] drm_gem_shmem_test_madvise
[13:40:25] [PASSED] drm_gem_shmem_test_purge
[13:40:25] ================== [PASSED] drm_gem_shmem ==================
[13:40:25] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:40:25] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:40:25] [PASSED] Automatic
[13:40:25] [PASSED] Full
[13:40:25] [PASSED] Limited 16:235
[13:40:25] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:40:25] [PASSED] drm_test_check_disable_connector
[13:40:25] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:40:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:40:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:40:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:40:25] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:40:25] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:40:25] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:40:25] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:40:25] [PASSED] drm_test_check_output_bpc_dvi
[13:40:25] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:40:25] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:40:25] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:40:25] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:40:25] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:40:25] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:40:25] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:40:25] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:40:25] ============ drm_test_check_hdmi_color_format =============
[13:40:25] [PASSED] AUTO -> RGB
[13:40:25] [PASSED] YCBCR422 -> YUV422
[13:40:25] [PASSED] YCBCR420 -> YUV420
[13:40:25] [PASSED] YCBCR444 -> YUV444
[13:40:25] [PASSED] RGB -> RGB
[13:40:25] ======== [PASSED] drm_test_check_hdmi_color_format =========
[13:40:25] ======== drm_test_check_hdmi_color_format_420_only ========
[13:40:25] [PASSED] RGB should fail
[13:40:25] [PASSED] YUV444 should fail
[13:40:25] [PASSED] YUV422 should fail
[13:40:25] [PASSED] YUV420 should work
[13:40:25] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[13:40:25] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:40:25] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:40:25] [PASSED] drm_test_check_broadcast_rgb_value
[13:40:25] [PASSED] drm_test_check_bpc_8_value
[13:40:25] [PASSED] drm_test_check_bpc_10_value
[13:40:25] [PASSED] drm_test_check_bpc_12_value
[13:40:25] [PASSED] drm_test_check_format_value
[13:40:25] [PASSED] drm_test_check_tmds_char_value
[13:40:25] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:40:25] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[13:40:25] [PASSED] drm_test_check_mode_valid
[13:40:25] [PASSED] drm_test_check_mode_valid_reject
[13:40:25] [PASSED] drm_test_check_mode_valid_reject_rate
[13:40:26] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:40:26] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[13:40:26] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[13:40:26] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[13:40:26] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:40:26] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:40:26] [PASSED] drm_test_check_infoframes
[13:40:26] [PASSED] drm_test_check_reject_avi_infoframe
[13:40:26] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:40:26] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:40:26] [PASSED] drm_test_check_reject_audio_infoframe
[13:40:26] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:40:26] ================= drm_managed (2 subtests) =================
[13:40:26] [PASSED] drm_test_managed_release_action
[13:40:26] [PASSED] drm_test_managed_run_action
[13:40:26] =================== [PASSED] drm_managed ===================
[13:40:26] =================== drm_mm (6 subtests) ====================
[13:40:26] [PASSED] drm_test_mm_init
[13:40:26] [PASSED] drm_test_mm_debug
[13:40:26] [PASSED] drm_test_mm_align32
[13:40:26] [PASSED] drm_test_mm_align64
[13:40:26] [PASSED] drm_test_mm_lowest
[13:40:26] [PASSED] drm_test_mm_highest
[13:40:26] ===================== [PASSED] drm_mm ======================
[13:40:26] ============= drm_modes_analog_tv (5 subtests) =============
[13:40:26] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:40:26] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:40:26] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:40:26] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:40:26] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:40:26] =============== [PASSED] drm_modes_analog_tv ===============
[13:40:26] ============== drm_plane_helper (2 subtests) ===============
[13:40:26] =============== drm_test_check_plane_state ================
[13:40:26] [PASSED] clipping_simple
[13:40:26] [PASSED] clipping_rotate_reflect
[13:40:26] [PASSED] positioning_simple
[13:40:26] [PASSED] upscaling
[13:40:26] [PASSED] downscaling
[13:40:26] [PASSED] rounding1
[13:40:26] [PASSED] rounding2
[13:40:26] [PASSED] rounding3
[13:40:26] [PASSED] rounding4
[13:40:26] =========== [PASSED] drm_test_check_plane_state ============
[13:40:26] =========== drm_test_check_invalid_plane_state ============
[13:40:26] [PASSED] positioning_invalid
[13:40:26] [PASSED] upscaling_invalid
[13:40:26] [PASSED] downscaling_invalid
[13:40:26] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:40:26] ================ [PASSED] drm_plane_helper =================
[13:40:26] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:40:26] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:40:26] [PASSED] None
[13:40:26] [PASSED] PAL
[13:40:26] [PASSED] NTSC
[13:40:26] [PASSED] Both, NTSC Default
[13:40:26] [PASSED] Both, PAL Default
[13:40:26] [PASSED] Both, NTSC Default, with PAL on command-line
[13:40:26] [PASSED] Both, PAL Default, with NTSC on command-line
[13:40:26] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:40:26] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:40:26] ================== drm_rect (9 subtests) ===================
[13:40:26] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:40:26] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:40:26] [PASSED] drm_test_rect_clip_scaled_clipped
[13:40:26] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:40:26] ================= drm_test_rect_intersect =================
[13:40:26] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:40:26] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:40:26] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:40:26] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:40:26] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:40:26] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:40:26] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:40:26] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:40:26] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:40:26] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:40:26] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:40:26] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:40:26] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:40:26] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:40:26] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:40:26] ============= [PASSED] drm_test_rect_intersect =============
[13:40:26] ================ drm_test_rect_calc_hscale ================
[13:40:26] [PASSED] normal use
[13:40:26] [PASSED] out of max range
[13:40:26] [PASSED] out of min range
[13:40:26] [PASSED] zero dst
[13:40:26] [PASSED] negative src
[13:40:26] [PASSED] negative dst
[13:40:26] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:40:26] ================ drm_test_rect_calc_vscale ================
[13:40:26] [PASSED] normal use
[13:40:26] [PASSED] out of max range
[13:40:26] [PASSED] out of min range
[13:40:26] [PASSED] zero dst
[13:40:26] [PASSED] negative src
[13:40:26] [PASSED] negative dst
[13:40:26] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:40:26] ================== drm_test_rect_rotate ===================
[13:40:26] [PASSED] reflect-x
[13:40:26] [PASSED] reflect-y
[13:40:26] [PASSED] rotate-0
[13:40:26] [PASSED] rotate-90
[13:40:26] [PASSED] rotate-180
[13:40:26] [PASSED] rotate-270
[13:40:26] ============== [PASSED] drm_test_rect_rotate ===============
[13:40:26] ================ drm_test_rect_rotate_inv =================
[13:40:26] [PASSED] reflect-x
[13:40:26] [PASSED] reflect-y
[13:40:26] [PASSED] rotate-0
[13:40:26] [PASSED] rotate-90
[13:40:26] [PASSED] rotate-180
[13:40:26] [PASSED] rotate-270
[13:40:26] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:40:26] ==================== [PASSED] drm_rect =====================
[13:40:26] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:40:26] ============ drm_test_sysfb_build_fourcc_list =============
[13:40:26] [PASSED] no native formats
[13:40:26] [PASSED] XRGB8888 as native format
[13:40:26] [PASSED] remove duplicates
[13:40:26] [PASSED] convert alpha formats
[13:40:26] [PASSED] random formats
[13:40:26] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:40:26] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:40:26] ================== drm_fixp (2 subtests) ===================
[13:40:26] [PASSED] drm_test_int2fixp
[13:40:26] [PASSED] drm_test_sm2fixp
[13:40:26] ==================== [PASSED] drm_fixp =====================
[13:40:26] ============================================================
[13:40:26] Testing complete. Ran 637 tests: passed: 637
[13:40:26] Elapsed time: 27.046s total, 1.813s configuring, 25.016s building, 0.192s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:40:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:40:28] 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
[13:40:38] Starting KUnit Kernel (1/1)...
[13:40:38] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:40:38] ================= ttm_device (5 subtests) ==================
[13:40:38] [PASSED] ttm_device_init_basic
[13:40:38] [PASSED] ttm_device_init_multiple
[13:40:38] [PASSED] ttm_device_fini_basic
[13:40:38] [PASSED] ttm_device_init_no_vma_man
[13:40:38] ================== ttm_device_init_pools ==================
[13:40:38] [PASSED] No DMA allocations, no DMA32 required
[13:40:38] [PASSED] DMA allocations, DMA32 required
[13:40:38] [PASSED] No DMA allocations, DMA32 required
[13:40:38] [PASSED] DMA allocations, no DMA32 required
[13:40:38] ============== [PASSED] ttm_device_init_pools ==============
[13:40:38] =================== [PASSED] ttm_device ====================
[13:40:38] ================== ttm_pool (8 subtests) ===================
[13:40:38] ================== ttm_pool_alloc_basic ===================
[13:40:38] [PASSED] One page
[13:40:38] [PASSED] More than one page
[13:40:38] [PASSED] Above the allocation limit
[13:40:38] [PASSED] One page, with coherent DMA mappings enabled
[13:40:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:40:38] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:40:38] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:40:38] [PASSED] One page
[13:40:38] [PASSED] More than one page
[13:40:38] [PASSED] Above the allocation limit
[13:40:38] [PASSED] One page, with coherent DMA mappings enabled
[13:40:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:40:38] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:40:38] [PASSED] ttm_pool_alloc_order_caching_match
[13:40:38] [PASSED] ttm_pool_alloc_caching_mismatch
[13:40:38] [PASSED] ttm_pool_alloc_order_mismatch
[13:40:38] [PASSED] ttm_pool_free_dma_alloc
[13:40:38] [PASSED] ttm_pool_free_no_dma_alloc
[13:40:38] [PASSED] ttm_pool_fini_basic
[13:40:38] ==================== [PASSED] ttm_pool =====================
[13:40:38] ================ ttm_resource (8 subtests) =================
[13:40:38] ================= ttm_resource_init_basic =================
[13:40:38] [PASSED] Init resource in TTM_PL_SYSTEM
[13:40:38] [PASSED] Init resource in TTM_PL_VRAM
[13:40:38] [PASSED] Init resource in a private placement
[13:40:38] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:40:38] ============= [PASSED] ttm_resource_init_basic =============
[13:40:38] [PASSED] ttm_resource_init_pinned
[13:40:38] [PASSED] ttm_resource_fini_basic
[13:40:38] [PASSED] ttm_resource_manager_init_basic
[13:40:38] [PASSED] ttm_resource_manager_usage_basic
[13:40:38] [PASSED] ttm_resource_manager_set_used_basic
[13:40:38] [PASSED] ttm_sys_man_alloc_basic
[13:40:38] [PASSED] ttm_sys_man_free_basic
[13:40:38] ================== [PASSED] ttm_resource ===================
[13:40:38] =================== ttm_tt (15 subtests) ===================
[13:40:38] ==================== ttm_tt_init_basic ====================
[13:40:38] [PASSED] Page-aligned size
[13:40:38] [PASSED] Extra pages requested
[13:40:38] ================ [PASSED] ttm_tt_init_basic ================
[13:40:38] [PASSED] ttm_tt_init_misaligned
[13:40:38] [PASSED] ttm_tt_fini_basic
[13:40:38] [PASSED] ttm_tt_fini_sg
[13:40:38] [PASSED] ttm_tt_fini_shmem
[13:40:38] [PASSED] ttm_tt_create_basic
[13:40:38] [PASSED] ttm_tt_create_invalid_bo_type
[13:40:38] [PASSED] ttm_tt_create_ttm_exists
[13:40:38] [PASSED] ttm_tt_create_failed
[13:40:38] [PASSED] ttm_tt_destroy_basic
[13:40:38] [PASSED] ttm_tt_populate_null_ttm
[13:40:38] [PASSED] ttm_tt_populate_populated_ttm
[13:40:38] [PASSED] ttm_tt_unpopulate_basic
[13:40:38] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:40:38] [PASSED] ttm_tt_swapin_basic
[13:40:38] ===================== [PASSED] ttm_tt ======================
[13:40:38] =================== ttm_bo (14 subtests) ===================
[13:40:38] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:40:38] [PASSED] Cannot be interrupted and sleeps
[13:40:38] [PASSED] Cannot be interrupted, locks straight away
[13:40:38] [PASSED] Can be interrupted, sleeps
[13:40:38] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:40:38] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:40:38] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:40:38] [PASSED] ttm_bo_reserve_double_resv
[13:40:38] [PASSED] ttm_bo_reserve_interrupted
[13:40:38] [PASSED] ttm_bo_reserve_deadlock
[13:40:38] [PASSED] ttm_bo_unreserve_basic
[13:40:38] [PASSED] ttm_bo_unreserve_pinned
[13:40:38] [PASSED] ttm_bo_unreserve_bulk
[13:40:38] [PASSED] ttm_bo_fini_basic
[13:40:38] [PASSED] ttm_bo_fini_shared_resv
[13:40:38] [PASSED] ttm_bo_pin_basic
[13:40:38] [PASSED] ttm_bo_pin_unpin_resource
[13:40:38] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:40:38] ===================== [PASSED] ttm_bo ======================
[13:40:38] ============== ttm_bo_validate (22 subtests) ===============
[13:40:38] ============== ttm_bo_init_reserved_sys_man ===============
[13:40:38] [PASSED] Buffer object for userspace
[13:40:38] [PASSED] Kernel buffer object
[13:40:38] [PASSED] Shared buffer object
[13:40:38] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:40:38] ============== ttm_bo_init_reserved_mock_man ==============
[13:40:38] [PASSED] Buffer object for userspace
[13:40:38] [PASSED] Kernel buffer object
[13:40:38] [PASSED] Shared buffer object
[13:40:38] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:40:38] [PASSED] ttm_bo_init_reserved_resv
[13:40:38] ================== ttm_bo_validate_basic ==================
[13:40:38] [PASSED] Buffer object for userspace
[13:40:38] [PASSED] Kernel buffer object
[13:40:38] [PASSED] Shared buffer object
[13:40:38] ============== [PASSED] ttm_bo_validate_basic ==============
[13:40:38] [PASSED] ttm_bo_validate_invalid_placement
[13:40:38] ============= ttm_bo_validate_same_placement ==============
[13:40:38] [PASSED] System manager
[13:40:38] [PASSED] VRAM manager
[13:40:38] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:40:38] [PASSED] ttm_bo_validate_failed_alloc
[13:40:38] [PASSED] ttm_bo_validate_pinned
[13:40:38] [PASSED] ttm_bo_validate_busy_placement
[13:40:38] ================ ttm_bo_validate_multihop =================
[13:40:38] [PASSED] Buffer object for userspace
[13:40:38] [PASSED] Kernel buffer object
[13:40:38] [PASSED] Shared buffer object
[13:40:38] ============ [PASSED] ttm_bo_validate_multihop =============
[13:40:38] ========== ttm_bo_validate_no_placement_signaled ==========
[13:40:38] [PASSED] Buffer object in system domain, no page vector
[13:40:38] [PASSED] Buffer object in system domain with an existing page vector
[13:40:38] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:40:38] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:40:38] [PASSED] Buffer object for userspace
[13:40:38] [PASSED] Kernel buffer object
[13:40:38] [PASSED] Shared buffer object
[13:40:38] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:40:38] [PASSED] ttm_bo_validate_move_fence_signaled
[13:40:38] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:40:38] [PASSED] Waits for GPU
[13:40:38] [PASSED] Tries to lock straight away
[13:40:38] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:40:38] [PASSED] ttm_bo_validate_swapout
[13:40:38] [PASSED] ttm_bo_validate_happy_evict
[13:40:38] [PASSED] ttm_bo_validate_all_pinned_evict
[13:40:38] [PASSED] ttm_bo_validate_allowed_only_evict
[13:40:38] [PASSED] ttm_bo_validate_deleted_evict
[13:40:38] [PASSED] ttm_bo_validate_busy_domain_evict
[13:40:38] [PASSED] ttm_bo_validate_evict_gutting
[13:40:38] [PASSED] ttm_bo_validate_recrusive_evict
[13:40:38] ================= [PASSED] ttm_bo_validate =================
[13:40:38] ============================================================
[13:40:38] Testing complete. Ran 102 tests: passed: 102
[13:40:38] Elapsed time: 12.143s total, 1.823s configuring, 10.105s building, 0.188s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[13:40:38] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:40:40] 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
[13:40:49] Starting KUnit Kernel (1/1)...
[13:40:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:40:49] =============== dma-buf-fence (12 subtests) ================
[13:40:49] [PASSED] test_sanitycheck
[13:40:49] [PASSED] test_signaling
[13:40:49] [PASSED] test_add_callback
[13:40:49] [PASSED] test_late_add_callback
[13:40:49] [PASSED] test_rm_callback
[13:40:49] [PASSED] test_late_rm_callback
[13:40:49] [PASSED] test_status
[13:40:49] [PASSED] test_error
[13:40:49] [PASSED] test_wait
[13:40:49] [PASSED] test_wait_timeout
[13:40:49] [PASSED] test_stub
[13:40:49] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[13:40:49] ================== [PASSED] dma-buf-fence ==================
[13:40:49] ============ dma-buf-fence-chain (11 subtests) =============
[13:40:49] [PASSED] test_sanitycheck
[13:40:49] [PASSED] test_find_seqno
[13:40:49] [PASSED] test_find_signaled
[13:40:49] [PASSED] test_find_out_of_order
[13:40:54] [PASSED] test_find_gap
[13:40:54] [PASSED] test_find_race
[13:40:54] [PASSED] test_signal_forward
[13:40:54] [PASSED] test_signal_backward
[13:40:54] [PASSED] test_wait_forward
[13:40:54] [PASSED] test_wait_backward
[13:40:54] [PASSED] test_wait_random
[13:40:54] =============== [PASSED] dma-buf-fence-chain ===============
[13:40:54] ============ dma-buf-fence-unwrap (10 subtests) ============
[13:40:54] [PASSED] test_sanitycheck
[13:40:54] [PASSED] test_unwrap_array
[13:40:54] [PASSED] test_unwrap_chain
[13:40:54] [PASSED] test_unwrap_chain_array
[13:40:54] [PASSED] test_unwrap_merge
[13:40:54] [PASSED] test_unwrap_merge_duplicate
[13:40:54] [PASSED] test_unwrap_merge_seqno
[13:40:54] [PASSED] test_unwrap_merge_order
[13:40:54] [PASSED] test_unwrap_merge_complex
[13:40:54] [PASSED] test_unwrap_merge_complex_seqno
[13:40:54] ============== [PASSED] dma-buf-fence-unwrap ===============
[13:40:54] ================ dma-buf-resv (5 subtests) =================
[13:40:54] [PASSED] test_sanitycheck
[13:40:54] ===================== test_signaling ======================
[13:40:54] [PASSED] kernel
[13:40:54] [PASSED] write
[13:40:54] [PASSED] read
[13:40:54] [PASSED] bookkeep
[13:40:54] ================= [PASSED] test_signaling ==================
[13:40:54] ====================== test_for_each ======================
[13:40:54] [PASSED] kernel
[13:40:54] [PASSED] write
[13:40:54] [PASSED] read
[13:40:54] [PASSED] bookkeep
[13:40:54] ================== [PASSED] test_for_each ==================
[13:40:54] ================= test_for_each_unlocked ==================
[13:40:54] [PASSED] kernel
[13:40:54] [PASSED] write
[13:40:54] [PASSED] read
[13:40:54] [PASSED] bookkeep
[13:40:54] ============= [PASSED] test_for_each_unlocked ==============
[13:40:54] ===================== test_get_fences =====================
[13:40:54] [PASSED] kernel
[13:40:54] [PASSED] write
[13:40:54] [PASSED] read
[13:40:54] [PASSED] bookkeep
[13:40:54] ================= [PASSED] test_get_fences =================
[13:40:54] ================== [PASSED] dma-buf-resv ===================
[13:40:54] ============================================================
[13:40:54] Testing complete. Ran 50 tests: passed: 49, skipped: 1
[13:40:54] Elapsed time: 15.927s total, 1.807s configuring, 8.748s building, 5.354s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 8+ messages in thread* ✓ Xe.CI.BAT: success for series starting with [v2,1/2] drm: Add common drm_user_fence helper
[not found] <20260827133226.4076593-1-srinivasan.shanmugam@amd.com>
` (3 preceding siblings ...)
2026-08-27 13:40 ` ✓ CI.KUnit: success " Patchwork
@ 2026-08-27 14:31 ` Patchwork
2026-08-27 15:53 ` ✓ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-08-27 14:31 UTC (permalink / raw)
To: Srinivasan Shanmugam; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 981 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm: Add common drm_user_fence helper
URL : https://patchwork.freedesktop.org/series/172880/
State : success
== Summary ==
CI Bug Log - changes from xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60_BAT -> xe-pw-172880v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60 -> xe-pw-172880v1
IGT_9076: 8f42b0189d73d9912ad58c99cfaa4ff46c20fcc3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60: c2f7f4803ab7055fa94f87bea53b90257d042c60
xe-pw-172880v1: 172880v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/index.html
[-- Attachment #2: Type: text/html, Size: 1529 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread* ✓ Xe.CI.FULL: success for series starting with [v2,1/2] drm: Add common drm_user_fence helper
[not found] <20260827133226.4076593-1-srinivasan.shanmugam@amd.com>
` (4 preceding siblings ...)
2026-08-27 14:31 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-27 15:53 ` Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-08-27 15:53 UTC (permalink / raw)
To: Srinivasan Shanmugam; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 38765 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm: Add common drm_user_fence helper
URL : https://patchwork.freedesktop.org/series/172880/
State : success
== Summary ==
CI Bug Log - changes from xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60_FULL -> xe-pw-172880v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-172880v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: NOTRUN -> [FAIL][1] ([Intel XE#8583])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1407])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7679])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#367])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][8] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652]) +17 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2887])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7358])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6969]) +10 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2390] / [Intel XE#6974])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6974])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#309] / [Intel XE#7343])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4331] / [Intel XE#7227])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8265])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#8265])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2375])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2374] / [Intel XE#6127])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#301]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#656] / [Intel XE#7905]) +4 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2311]) +22 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7061]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4141]) +7 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2352] / [Intel XE#7399])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7061] / [Intel XE#7356])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7865]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +21 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7905]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7061])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7308])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#1503])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4298] / [Intel XE#5873])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2486])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7283]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7283])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#5020] / [Intel XE#7348])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#8399])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1489]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1406])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1127] / [Intel XE#5813])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2413])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@xe_exec_balancer@many-execqueues-parallel-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7482]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_exec_balancer@many-execqueues-parallel-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-basic:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-basic.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#8374]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#8374])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#9003])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-priority:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#8364]) +11 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#8364]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#6196])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-rebind:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#8378])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#8378]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [PASS][72] -> [ABORT][73] ([Intel XE#8007]) +1 other test abort
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_page_reclaim@binds-1g-partial:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7793]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@xe_page_reclaim@binds-1g-partial.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#7590])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@xe_pm@d3hot-i2c.html
* igt@xe_prefetch_fault@l2-prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#8815])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_prefetch_fault@l2-prefetch-fault.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#944]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_flr@flr-twice:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4273])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [FAIL][81] ([Intel XE#6569])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][82] ([Intel XE#7809]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@forked-bo@all-pipes:
- shard-bmg: [DMESG-WARN][84] ([Intel XE#1727] / [Intel XE#6819]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-3/igt@kms_cursor_legacy@forked-bo@all-pipes.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@kms_cursor_legacy@forked-bo@all-pipes.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early:
- shard-bmg: [ABORT][86] ([Intel XE#8007]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [SKIP][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [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])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-9/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-2/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-5/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-5/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-9/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-2/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-2/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-10/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-10/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-6/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-4/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-5/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-1/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-1/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-3/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-1/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-6/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-7/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-4/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-8/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-7/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-7/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-10/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-4/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-3/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-bmg-8/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-1/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-9/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-9/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-3/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-3/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-7/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-9/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-5/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-5/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-8/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-8/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-10/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-8/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-1/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-1/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-6/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-7/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-4/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-2/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-bmg-3/igt@xe_module_load@load.html
#### Warnings ####
* igt@xe_wedged@basic-wedged:
- shard-lnl: [ABORT][139] ([Intel XE#8963]) -> [DMESG-WARN][140] ([Intel XE#8963])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60/shard-lnl-8/igt@xe_wedged@basic-wedged.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/shard-lnl-8/igt@xe_wedged@basic-wedged.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[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#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8815
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9003]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9003
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60 -> xe-pw-172880v1
IGT_9076: 8f42b0189d73d9912ad58c99cfaa4ff46c20fcc3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5653-c2f7f4803ab7055fa94f87bea53b90257d042c60: c2f7f4803ab7055fa94f87bea53b90257d042c60
xe-pw-172880v1: 172880v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172880v1/index.html
[-- Attachment #2: Type: text/html, Size: 42609 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread