* [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths
@ 2026-04-08 17:52 Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 1/4] drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked() Shuicheng Lin
` (9 more replies)
0 siblings, 10 replies; 12+ messages in thread
From: Shuicheng Lin @ 2026-04-08 17:52 UTC (permalink / raw)
To: intel-xe; +Cc: Shuicheng Lin
Fix several resource leaks in the xe driver's buffer object
initialization and dma-buf import paths:
Patches 1-2 fix xe_bo_init_locked() where two early validation error
paths return without freeing a caller-provided bo, violating the
documented contract that bo is freed on failure.
Patch 3 fixes xe_dma_buf_init_obj() where the pre-allocated storage bo
is leaked when drm_gpuvm_resv_object_alloc() fails.
Patch 4 fixes xe_gem_prime_import() where the dma-buf attachment is
leaked when xe_dma_buf_init_obj() fails.
v2: Add comments in patch 3.
Shuicheng Lin (4):
drm/xe/bo: Fix bo leak on unaligned size validation in
xe_bo_init_locked()
drm/xe/bo: Fix bo leak on GGTT flag validation in xe_bo_init_locked()
drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure
drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import()
drivers/gpu/drm/xe/xe_bo.c | 8 ++++++--
drivers/gpu/drm/xe/xe_dma_buf.c | 23 ++++++++++++++++++-----
2 files changed, 24 insertions(+), 7 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 1/4] drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked()
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
@ 2026-04-08 17:52 ` Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 2/4] drm/xe/bo: Fix bo leak on GGTT flag " Shuicheng Lin
` (8 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Shuicheng Lin @ 2026-04-08 17:52 UTC (permalink / raw)
To: intel-xe; +Cc: Shuicheng Lin, stable, Matthew Brost
When type is ttm_bo_type_device and aligned_size != size, the function
returns an error without freeing a caller-provided bo, violating the
documented contract that bo is freed on failure.
Add xe_bo_free(bo) before returning the error.
Fixes: 4e03b584143e ("drm/xe/uapi: Reject bo creation of unaligned size")
Cc: stable@vger.kernel.org
Assisted-by: Claude:claude-opus-4.6
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 1db2486b7cee..26ca878099b9 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2329,8 +2329,10 @@ struct xe_bo *xe_bo_init_locked(struct xe_device *xe, struct xe_bo *bo,
alignment = SZ_4K >> PAGE_SHIFT;
}
- if (type == ttm_bo_type_device && aligned_size != size)
+ if (type == ttm_bo_type_device && aligned_size != size) {
+ xe_bo_free(bo);
return ERR_PTR(-EINVAL);
+ }
if (!bo) {
bo = xe_bo_alloc();
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 2/4] drm/xe/bo: Fix bo leak on GGTT flag validation in xe_bo_init_locked()
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 1/4] drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked() Shuicheng Lin
@ 2026-04-08 17:52 ` Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 3/4] drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure Shuicheng Lin
` (7 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Shuicheng Lin @ 2026-04-08 17:52 UTC (permalink / raw)
To: intel-xe; +Cc: Shuicheng Lin, stable, Matthew Brost
When XE_BO_FLAG_GGTT_ALL is set without XE_BO_FLAG_GGTT, the function
returns an error without freeing a caller-provided bo, violating the
documented contract that bo is freed on failure.
Add xe_bo_free(bo) before returning the error.
Fixes: 5a3b0df25d6a ("drm/xe: Allow bo mapping on multiple ggtts")
Cc: stable@vger.kernel.org
Assisted-by: Claude:claude-opus-4.6
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 26ca878099b9..b3efadbbca00 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2309,8 +2309,10 @@ struct xe_bo *xe_bo_init_locked(struct xe_device *xe, struct xe_bo *bo,
}
/* XE_BO_FLAG_GGTTx requires XE_BO_FLAG_GGTT also be set */
- if ((flags & XE_BO_FLAG_GGTT_ALL) && !(flags & XE_BO_FLAG_GGTT))
+ if ((flags & XE_BO_FLAG_GGTT_ALL) && !(flags & XE_BO_FLAG_GGTT)) {
+ xe_bo_free(bo);
return ERR_PTR(-EINVAL);
+ }
if (flags & (XE_BO_FLAG_VRAM_MASK | XE_BO_FLAG_STOLEN) &&
!(flags & XE_BO_FLAG_IGNORE_MIN_PAGE_SIZE) &&
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 3/4] drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 1/4] drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked() Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 2/4] drm/xe/bo: Fix bo leak on GGTT flag " Shuicheng Lin
@ 2026-04-08 17:52 ` Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 4/4] drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import() Shuicheng Lin
` (6 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Shuicheng Lin @ 2026-04-08 17:52 UTC (permalink / raw)
To: intel-xe; +Cc: Shuicheng Lin, stable, Matthew Brost
When drm_gpuvm_resv_object_alloc() fails, the pre-allocated storage bo
is not freed. Add xe_bo_free(storage) before returning the error.
xe_dma_buf_init_obj() calls xe_bo_init_locked(), which frees the bo on
error. Therefore, xe_dma_buf_init_obj() must also free the bo on its own
error paths. Otherwise, since xe_gem_prime_import() cannot distinguish
whether the failure originated from xe_dma_buf_init_obj() or from
xe_bo_init_locked(), it cannot safely decide whether the bo should be
freed.
Add comments documenting the ownership semantics: on success, ownership
of storage is transferred to the returned drm_gem_object; on failure,
storage is freed before returning.
v2: Add comments to explain the free logic.
Fixes: eb289a5f6cc6 ("drm/xe: Convert xe_dma_buf.c for exhaustive eviction")
Cc: stable@vger.kernel.org
Assisted-by: Claude:claude-opus-4.6
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_dma_buf.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_dma_buf.c b/drivers/gpu/drm/xe/xe_dma_buf.c
index 7f9602b3363d..c0937c090d33 100644
--- a/drivers/gpu/drm/xe/xe_dma_buf.c
+++ b/drivers/gpu/drm/xe/xe_dma_buf.c
@@ -258,6 +258,13 @@ struct dma_buf *xe_gem_prime_export(struct drm_gem_object *obj, int flags)
return ERR_PTR(ret);
}
+/*
+ * Takes ownership of @storage: on success it is transferred to the returned
+ * drm_gem_object; on failure it is freed before returning the error.
+ * This matches the contract of xe_bo_init_locked() which frees @storage on
+ * its error paths, so callers need not (and must not) free @storage after
+ * this call.
+ */
static struct drm_gem_object *
xe_dma_buf_init_obj(struct drm_device *dev, struct xe_bo *storage,
struct dma_buf *dma_buf)
@@ -271,8 +278,10 @@ xe_dma_buf_init_obj(struct drm_device *dev, struct xe_bo *storage,
int ret = 0;
dummy_obj = drm_gpuvm_resv_object_alloc(&xe->drm);
- if (!dummy_obj)
+ if (!dummy_obj) {
+ xe_bo_free(storage);
return ERR_PTR(-ENOMEM);
+ }
dummy_obj->resv = resv;
xe_validation_guard(&ctx, &xe->val, &exec, (struct xe_val_flags) {}, ret) {
@@ -281,6 +290,7 @@ xe_dma_buf_init_obj(struct drm_device *dev, struct xe_bo *storage,
if (ret)
break;
+ /* xe_bo_init_locked() frees storage on error */
bo = xe_bo_init_locked(xe, storage, NULL, resv, NULL, dma_buf->size,
0, /* Will require 1way or 2way for vm_bind */
ttm_bo_type_sg, XE_BO_FLAG_SYSTEM, &exec);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 4/4] drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import()
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (2 preceding siblings ...)
2026-04-08 17:52 ` [PATCH v2 3/4] drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure Shuicheng Lin
@ 2026-04-08 17:52 ` Shuicheng Lin
2026-04-08 18:03 ` ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2) Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Shuicheng Lin @ 2026-04-08 17:52 UTC (permalink / raw)
To: intel-xe; +Cc: Shuicheng Lin, stable, Mattheq Brost
When xe_dma_buf_init_obj() fails, the attachment from
dma_buf_dynamic_attach() is not detached. Add dma_buf_detach() before
returning the error. Note: we cannot use goto out_err here because
xe_dma_buf_init_obj() already frees bo on failure, and out_err would
double-free it.
Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: stable@vger.kernel.org
Assisted-by: Claude:claude-opus-4.6
Reviewed-by: Mattheq Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_dma_buf.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_dma_buf.c b/drivers/gpu/drm/xe/xe_dma_buf.c
index c0937c090d33..b9828da15897 100644
--- a/drivers/gpu/drm/xe/xe_dma_buf.c
+++ b/drivers/gpu/drm/xe/xe_dma_buf.c
@@ -378,12 +378,15 @@ struct drm_gem_object *xe_gem_prime_import(struct drm_device *dev,
goto out_err;
}
- /* Errors here will take care of freeing the bo. */
+ /*
+ * xe_dma_buf_init_obj() takes ownership of bo on both success
+ * and failure, so we must not touch bo after this call.
+ */
obj = xe_dma_buf_init_obj(dev, bo, dma_buf);
- if (IS_ERR(obj))
+ if (IS_ERR(obj)) {
+ dma_buf_detach(dma_buf, attach);
return obj;
-
-
+ }
get_dma_buf(dma_buf);
obj->import_attach = attach;
return obj;
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2)
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (3 preceding siblings ...)
2026-04-08 17:52 ` [PATCH v2 4/4] drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import() Shuicheng Lin
@ 2026-04-08 18:03 ` Patchwork
2026-04-08 18:04 ` ✗ CI.KUnit: failure " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-08 18:03 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2)
URL : https://patchwork.freedesktop.org/series/164476/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit b775475762527b28e22f605a46a100ef699ed9eb
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date: Wed Apr 8 17:52:55 2026 +0000
drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import()
When xe_dma_buf_init_obj() fails, the attachment from
dma_buf_dynamic_attach() is not detached. Add dma_buf_detach() before
returning the error. Note: we cannot use goto out_err here because
xe_dma_buf_init_obj() already frees bo on failure, and out_err would
double-free it.
Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: stable@vger.kernel.org
Assisted-by: Claude:claude-opus-4.6
Reviewed-by: Mattheq Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
+ /mt/dim checkpatch f074368a55893ee121ba2920497b6c25e265d190 drm-intel
2be998ef405a drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked()
-:15: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#15:
Assisted-by: Claude:claude-opus-4.6
-:15: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#15:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 11 lines checked
b6e715e755b2 drm/xe/bo: Fix bo leak on GGTT flag validation in xe_bo_init_locked()
-:15: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#15:
Assisted-by: Claude:claude-opus-4.6
-:15: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#15:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 11 lines checked
58455342774c drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure
-:25: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#25:
Assisted-by: Claude:claude-opus-4.6
-:25: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#25:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 31 lines checked
b77547576252 drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import()
-:14: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#14:
Assisted-by: Claude:claude-opus-4.6
-:14: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#14:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 19 lines checked
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.KUnit: failure for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2)
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (4 preceding siblings ...)
2026-04-08 18:03 ` ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2) Patchwork
@ 2026-04-08 18:04 ` Patchwork
2026-04-10 2:29 ` ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3) Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-08 18:04 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2)
URL : https://patchwork.freedesktop.org/series/164476/
State : failure
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:03:07] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:03:11] 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
[18:03:42] Starting KUnit Kernel (1/1)...
[18:03:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:03:43] ================== guc_buf (11 subtests) ===================
[18:03:43] [PASSED] test_smallest
[18:03:43] [PASSED] test_largest
[18:03:43] [PASSED] test_granular
[18:03:43] [PASSED] test_unique
[18:03:43] [PASSED] test_overlap
[18:03:43] [PASSED] test_reusable
[18:03:43] [PASSED] test_too_big
[18:03:43] [PASSED] test_flush
[18:03:43] [PASSED] test_lookup
[18:03:43] [PASSED] test_data
[18:03:43] [PASSED] test_class
[18:03:43] ===================== [PASSED] guc_buf =====================
[18:03:43] =================== guc_dbm (7 subtests) ===================
[18:03:43] [PASSED] test_empty
[18:03:43] [PASSED] test_default
[18:03:43] ======================== test_size ========================
[18:03:43] [PASSED] 4
[18:03:43] [PASSED] 8
[18:03:43] [PASSED] 32
[18:03:43] [PASSED] 256
[18:03:43] ==================== [PASSED] test_size ====================
[18:03:43] ======================= test_reuse ========================
[18:03:43] [PASSED] 4
[18:03:43] [PASSED] 8
[18:03:43] [PASSED] 32
[18:03:43] [PASSED] 256
[18:03:43] =================== [PASSED] test_reuse ====================
[18:03:43] =================== test_range_overlap ====================
[18:03:43] [PASSED] 4
[18:03:43] [PASSED] 8
[18:03:43] [PASSED] 32
[18:03:43] [PASSED] 256
[18:03:43] =============== [PASSED] test_range_overlap ================
[18:03:43] =================== test_range_compact ====================
[18:03:43] [PASSED] 4
[18:03:43] [PASSED] 8
[18:03:43] [PASSED] 32
[18:03:43] [PASSED] 256
[18:03:43] =============== [PASSED] test_range_compact ================
[18:03:43] ==================== test_range_spare =====================
[18:03:43] [PASSED] 4
[18:03:43] [PASSED] 8
[18:03:43] [PASSED] 32
[18:03:43] [PASSED] 256
[18:03:43] ================ [PASSED] test_range_spare =================
[18:03:43] ===================== [PASSED] guc_dbm =====================
[18:03:43] =================== guc_idm (6 subtests) ===================
[18:03:43] [PASSED] bad_init
[18:03:43] [PASSED] no_init
[18:03:43] [PASSED] init_fini
[18:03:43] [PASSED] check_used
[18:03:43] [PASSED] check_quota
[18:03:43] [PASSED] check_all
[18:03:43] ===================== [PASSED] guc_idm =====================
[18:03:43] ================== no_relay (3 subtests) ===================
[18:03:43] [PASSED] xe_drops_guc2pf_if_not_ready
[18:03:43] [PASSED] xe_drops_guc2vf_if_not_ready
[18:03:43] [PASSED] xe_rejects_send_if_not_ready
[18:03:43] ==================== [PASSED] no_relay =====================
[18:03:43] ================== pf_relay (14 subtests) ==================
[18:03:43] [PASSED] pf_rejects_guc2pf_too_short
[18:03:43] [PASSED] pf_rejects_guc2pf_too_long
[18:03:43] [PASSED] pf_rejects_guc2pf_no_payload
[18:03:43] [PASSED] pf_fails_no_payload
[18:03:43] [PASSED] pf_fails_bad_origin
[18:03:43] [PASSED] pf_fails_bad_type
[18:03:43] [PASSED] pf_txn_reports_error
[18:03:43] [PASSED] pf_txn_sends_pf2guc
[18:03:43] [PASSED] pf_sends_pf2guc
[18:03:43] [SKIPPED] pf_loopback_nop
[18:03:43] [SKIPPED] pf_loopback_echo
[18:03:43] [SKIPPED] pf_loopback_fail
[18:03:43] [SKIPPED] pf_loopback_busy
[18:03:43] [SKIPPED] pf_loopback_retry
[18:03:43] ==================== [PASSED] pf_relay =====================
[18:03:43] ================== vf_relay (3 subtests) ===================
[18:03:43] [PASSED] vf_rejects_guc2vf_too_short
[18:03:43] [PASSED] vf_rejects_guc2vf_too_long
[18:03:43] [PASSED] vf_rejects_guc2vf_no_payload
[18:03:43] ==================== [PASSED] vf_relay =====================
[18:03:43] ================ pf_gt_config (9 subtests) =================
[18:03:43] [PASSED] fair_contexts_1vf
[18:03:43] [PASSED] fair_doorbells_1vf
[18:03:43] [PASSED] fair_ggtt_1vf
[18:03:43] ====================== fair_vram_1vf ======================
[18:03:43] [PASSED] 3.50 GiB
[18:03:43] [PASSED] 11.5 GiB
[18:03:43] [PASSED] 15.5 GiB
[18:03:43] [PASSED] 31.5 GiB
[18:03:43] [PASSED] 63.5 GiB
[18:03:43] [PASSED] 1.91 GiB
[18:03:43] ================== [PASSED] fair_vram_1vf ==================
[18:03:43] ================ fair_vram_1vf_admin_only =================
[18:03:43] [PASSED] 3.50 GiB
[18:03:43] [PASSED] 11.5 GiB
[18:03:43] [PASSED] 15.5 GiB
[18:03:43] [PASSED] 31.5 GiB
[18:03:43] [PASSED] 63.5 GiB
[18:03:43] [PASSED] 1.91 GiB
[18:03:43] ============ [PASSED] fair_vram_1vf_admin_only =============
[18:03:43] ====================== fair_contexts ======================
[18:03:43] [PASSED] 1 VF
[18:03:43] [PASSED] 2 VFs
[18:03:43] [PASSED] 3 VFs
[18:03:43] [PASSED] 4 VFs
[18:03:43] [PASSED] 5 VFs
[18:03:43] [PASSED] 6 VFs
[18:03:43] [PASSED] 7 VFs
[18:03:43] [PASSED] 8 VFs
[18:03:43] [PASSED] 9 VFs
[18:03:43] [PASSED] 10 VFs
[18:03:43] [PASSED] 11 VFs
[18:03:43] [PASSED] 12 VFs
[18:03:43] [PASSED] 13 VFs
[18:03:43] [PASSED] 14 VFs
[18:03:43] [PASSED] 15 VFs
[18:03:43] [PASSED] 16 VFs
[18:03:43] [PASSED] 17 VFs
[18:03:43] [PASSED] 18 VFs
[18:03:43] [PASSED] 19 VFs
[18:03:43] [PASSED] 20 VFs
[18:03:43] [PASSED] 21 VFs
[18:03:43] [PASSED] 22 VFs
[18:03:43] [PASSED] 23 VFs
[18:03:43] [PASSED] 24 VFs
[18:03:43] [PASSED] 25 VFs
[18:03:43] [PASSED] 26 VFs
[18:03:43] [PASSED] 27 VFs
[18:03:43] [PASSED] 28 VFs
[18:03:43] [PASSED] 29 VFs
[18:03:43] [PASSED] 30 VFs
[18:03:43] [PASSED] 31 VFs
[18:03:43] [PASSED] 32 VFs
[18:03:43] [PASSED] 33 VFs
[18:03:43] [PASSED] 34 VFs
[18:03:43] [PASSED] 35 VFs
[18:03:43] [PASSED] 36 VFs
[18:03:43] [PASSED] 37 VFs
[18:03:43] [PASSED] 38 VFs
[18:03:43] [PASSED] 39 VFs
[18:03:43] [PASSED] 40 VFs
[18:03:43] [PASSED] 41 VFs
[18:03:43] [PASSED] 42 VFs
[18:03:43] [PASSED] 43 VFs
[18:03:43] [PASSED] 44 VFs
[18:03:43] [PASSED] 45 VFs
[18:03:43] [PASSED] 46 VFs
[18:03:43] [PASSED] 47 VFs
[18:03:43] [PASSED] 48 VFs
[18:03:43] [PASSED] 49 VFs
[18:03:43] [PASSED] 50 VFs
[18:03:43] [PASSED] 51 VFs
[18:03:43] [PASSED] 52 VFs
[18:03:43] [PASSED] 53 VFs
[18:03:43] [PASSED] 54 VFs
[18:03:43] [PASSED] 55 VFs
[18:03:43] [PASSED] 56 VFs
[18:03:43] [PASSED] 57 VFs
[18:03:43] [PASSED] 58 VFs
[18:03:43] [PASSED] 59 VFs
[18:03:43] [PASSED] 60 VFs
[18:03:43] [PASSED] 61 VFs
[18:03:43] [PASSED] 62 VFs
[18:03:43] [PASSED] 63 VFs
[18:03:43] ================== [PASSED] fair_contexts ==================
[18:03:43] ===================== fair_doorbells ======================
[18:03:43] [PASSED] 1 VF
[18:03:43] [PASSED] 2 VFs
[18:03:43] [PASSED] 3 VFs
[18:03:43] [PASSED] 4 VFs
[18:03:43] [PASSED] 5 VFs
[18:03:43] [PASSED] 6 VFs
[18:03:43] [PASSED] 7 VFs
[18:03:43] [PASSED] 8 VFs
[18:03:43] [PASSED] 9 VFs
[18:03:43] [PASSED] 10 VFs
[18:03:43] [PASSED] 11 VFs
[18:03:43] [PASSED] 12 VFs
[18:03:43] [PASSED] 13 VFs
[18:03:43] [PASSED] 14 VFs
[18:03:43] [PASSED] 15 VFs
[18:03:43] [PASSED] 16 VFs
[18:03:43] [PASSED] 17 VFs
[18:03:43] [PASSED] 18 VFs
[18:03:43] [PASSED] 19 VFs
[18:03:43] [PASSED] 20 VFs
[18:03:43] [PASSED] 21 VFs
[18:03:43] [PASSED] 22 VFs
[18:03:43] [PASSED] 23 VFs
[18:03:43] [PASSED] 24 VFs
[18:03:43] [PASSED] 25 VFs
[18:03:43] [PASSED] 26 VFs
[18:03:43] [PASSED] 27 VFs
[18:03:43] [PASSED] 28 VFs
[18:03:43] [PASSED] 29 VFs
[18:03:43] [PASSED] 30 VFs
[18:03:43] [PASSED] 31 VFs
[18:03:43] [PASSED] 32 VFs
[18:03:43] [PASSED] 33 VFs
[18:03:43] [PASSED] 34 VFs
[18:03:43] [PASSED] 35 VFs
[18:03:43] [PASSED] 36 VFs
[18:03:43] [PASSED] 37 VFs
[18:03:43] [PASSED] 38 VFs
[18:03:43] [PASSED] 39 VFs
[18:03:43] [PASSED] 40 VFs
[18:03:43] [PASSED] 41 VFs
[18:03:43] [PASSED] 42 VFs
[18:03:43] [PASSED] 43 VFs
[18:03:43] [PASSED] 44 VFs
[18:03:43] [PASSED] 45 VFs
[18:03:43] [PASSED] 46 VFs
[18:03:43] [PASSED] 47 VFs
[18:03:43] [PASSED] 48 VFs
[18:03:43] [PASSED] 49 VFs
[18:03:43] [PASSED] 50 VFs
[18:03:43] [PASSED] 51 VFs
[18:03:43] [PASSED] 52 VFs
[18:03:43] [PASSED] 53 VFs
[18:03:43] [PASSED] 54 VFs
[18:03:43] [PASSED] 55 VFs
[18:03:43] [PASSED] 56 VFs
[18:03:43] [PASSED] 57 VFs
[18:03:43] [PASSED] 58 VFs
[18:03:43] [PASSED] 59 VFs
[18:03:43] [PASSED] 60 VFs
[18:03:43] [PASSED] 61 VFs
[18:03:43] [PASSED] 62 VFs
[18:03:43] [PASSED] 63 VFs
[18:03:43] ================= [PASSED] fair_doorbells ==================
[18:03:43] ======================== fair_ggtt ========================
[18:03:43] [PASSED] 1 VF
[18:03:43] [PASSED] 2 VFs
[18:03:43] [PASSED] 3 VFs
[18:03:43] [PASSED] 4 VFs
[18:03:43] [PASSED] 5 VFs
[18:03:43] [PASSED] 6 VFs
[18:03:43] [PASSED] 7 VFs
[18:03:43] [PASSED] 8 VFs
[18:03:43] [PASSED] 9 VFs
[18:03:43] [PASSED] 10 VFs
[18:03:43] [PASSED] 11 VFs
[18:03:43] [PASSED] 12 VFs
[18:03:43] [PASSED] 13 VFs
[18:03:43] [PASSED] 14 VFs
[18:03:43] [PASSED] 15 VFs
[18:03:43] [PASSED] 16 VFs
[18:03:43] [PASSED] 17 VFs
[18:03:43] [PASSED] 18 VFs
[18:03:43] [PASSED] 19 VFs
[18:03:43] [PASSED] 20 VFs
[18:03:43] [PASSED] 21 VFs
[18:03:43] [PASSED] 22 VFs
[18:03:43] [PASSED] 23 VFs
[18:03:43] [PASSED] 24 VFs
[18:03:43] [PASSED] 25 VFs
[18:03:43] [PASSED] 26 VFs
[18:03:43] [PASSED] 27 VFs
[18:03:43] [PASSED] 28 VFs
[18:03:43] [PASSED] 29 VFs
[18:03:43] [PASSED] 30 VFs
[18:03:43] [PASSED] 31 VFs
[18:03:43] [PASSED] 32 VFs
[18:03:43] [PASSED] 33 VFs
[18:03:43] [PASSED] 34 VFs
[18:03:43] [PASSED] 35 VFs
[18:03:43] [PASSED] 36 VFs
[18:03:43] [PASSED] 37 VFs
[18:03:43] [PASSED] 38 VFs
[18:03:43] [PASSED] 39 VFs
[18:03:43] [PASSED] 40 VFs
[18:03:43] [PASSED] 41 VFs
[18:03:43] [PASSED] 42 VFs
[18:03:43] [PASSED] 43 VFs
[18:03:43] [PASSED] 44 VFs
[18:03:43] [PASSED] 45 VFs
[18:03:43] [PASSED] 46 VFs
[18:03:43] [PASSED] 47 VFs
[18:03:43] [PASSED] 48 VFs
[18:03:43] [PASSED] 49 VFs
[18:03:43] [PASSED] 50 VFs
[18:03:43] [PASSED] 51 VFs
[18:03:43] [PASSED] 52 VFs
[18:03:43] [PASSED] 53 VFs
[18:03:43] [PASSED] 54 VFs
[18:03:43] [PASSED] 55 VFs
[18:03:43] [PASSED] 56 VFs
[18:03:43] [PASSED] 57 VFs
[18:03:43] [PASSED] 58 VFs
[18:03:43] [PASSED] 59 VFs
[18:03:43] [PASSED] 60 VFs
[18:03:43] [PASSED] 61 VFs
[18:03:43] [PASSED] 62 VFs
[18:03:43] [PASSED] 63 VFs
[18:03:43] ==================== [PASSED] fair_ggtt ====================
[18:03:43] ======================== fair_vram ========================
[18:03:43] [PASSED] 1 VF
[18:03:43] [PASSED] 2 VFs
[18:03:43] [PASSED] 3 VFs
[18:03:43] [PASSED] 4 VFs
[18:03:43] [PASSED] 5 VFs
[18:03:43] [PASSED] 6 VFs
[18:03:43] [PASSED] 7 VFs
[18:03:43] [PASSED] 8 VFs
[18:03:43] [PASSED] 9 VFs
[18:03:43] [PASSED] 10 VFs
[18:03:43] [PASSED] 11 VFs
[18:03:43] [PASSED] 12 VFs
[18:03:43] [PASSED] 13 VFs
[18:03:43] [PASSED] 14 VFs
[18:03:43] [PASSED] 15 VFs
[18:03:43] [PASSED] 16 VFs
[18:03:43] [PASSED] 17 VFs
[18:03:43] [PASSED] 18 VFs
[18:03:43] [PASSED] 19 VFs
[18:03:43] [PASSED] 20 VFs
[18:03:43] [PASSED] 21 VFs
[18:03:43] [PASSED] 22 VFs
[18:03:43] [PASSED] 23 VFs
[18:03:43] [PASSED] 24 VFs
[18:03:43] [PASSED] 25 VFs
[18:03:43] [PASSED] 26 VFs
[18:03:43] [PASSED] 27 VFs
[18:03:43] [PASSED] 28 VFs
[18:03:43] [PASSED] 29 VFs
[18:03:43] [PASSED] 30 VFs
[18:03:43] [PASSED] 31 VFs
[18:03:43] [PASSED] 32 VFs
[18:03:43] [PASSED] 33 VFs
[18:03:43] [PASSED] 34 VFs
[18:03:43] [PASSED] 35 VFs
[18:03:43] [PASSED] 36 VFs
[18:03:43] [PASSED] 37 VFs
[18:03:43] [PASSED] 38 VFs
[18:03:43] [PASSED] 39 VFs
[18:03:43] [PASSED] 40 VFs
[18:03:43] [PASSED] 41 VFs
[18:03:43] [PASSED] 42 VFs
[18:03:43] [PASSED] 43 VFs
[18:03:43] [PASSED] 44 VFs
[18:03:43] [PASSED] 45 VFs
[18:03:43] [PASSED] 46 VFs
[18:03:43] [PASSED] 47 VFs
[18:03:43] [PASSED] 48 VFs
[18:03:43] [PASSED] 49 VFs
[18:03:43] [PASSED] 50 VFs
[18:03:43] [PASSED] 51 VFs
[18:03:43] [PASSED] 52 VFs
[18:03:43] [PASSED] 53 VFs
[18:03:43] [PASSED] 54 VFs
[18:03:43] [PASSED] 55 VFs
[18:03:43] [PASSED] 56 VFs
[18:03:43] [PASSED] 57 VFs
[18:03:43] [PASSED] 58 VFs
[18:03:43] [PASSED] 59 VFs
[18:03:43] [PASSED] 60 VFs
[18:03:43] [PASSED] 61 VFs
[18:03:43] [PASSED] 62 VFs
[18:03:43] [PASSED] 63 VFs
[18:03:43] ==================== [PASSED] fair_vram ====================
[18:03:43] ================== [PASSED] pf_gt_config ===================
[18:03:43] ===================== lmtt (1 subtest) =====================
[18:03:43] ======================== test_ops =========================
[18:03:43] [PASSED] 2-level
[18:03:43] [PASSED] multi-level
[18:03:43] ==================== [PASSED] test_ops =====================
[18:03:43] ====================== [PASSED] lmtt =======================
[18:03:43] ================= pf_service (11 subtests) =================
[18:03:43] [PASSED] pf_negotiate_any
[18:03:43] [PASSED] pf_negotiate_base_match
[18:03:43] [PASSED] pf_negotiate_base_newer
[18:03:43] [PASSED] pf_negotiate_base_next
[18:03:43] [SKIPPED] pf_negotiate_base_older
[18:03:43] [PASSED] pf_negotiate_base_prev
[18:03:43] [PASSED] pf_negotiate_latest_match
[18:03:43] [PASSED] pf_negotiate_latest_newer
[18:03:43] [PASSED] pf_negotiate_latest_next
[18:03:43] [SKIPPED] pf_negotiate_latest_older
[18:03:43] [SKIPPED] pf_negotiate_latest_prev
[18:03:43] =================== [PASSED] pf_service ====================
[18:03:43] ================= xe_guc_g2g (2 subtests) ==================
[18:03:43] ============== xe_live_guc_g2g_kunit_default ==============
[18:03:43] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[18:03:43] ============== xe_live_guc_g2g_kunit_allmem ===============
[18:03:43] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[18:03:43] =================== [SKIPPED] xe_guc_g2g ===================
[18:03:43] =================== xe_mocs (2 subtests) ===================
[18:03:43] ================ xe_live_mocs_kernel_kunit ================
[18:03:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:03:43] ================ xe_live_mocs_reset_kunit =================
[18:03:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:03:43] ==================== [SKIPPED] xe_mocs =====================
[18:03:43] ================= xe_migrate (2 subtests) ==================
[18:03:43] ================= xe_migrate_sanity_kunit =================
[18:03:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:03:43] ================== xe_validate_ccs_kunit ==================
[18:03:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:03:43] =================== [SKIPPED] xe_migrate ===================
[18:03:43] ================== xe_dma_buf (1 subtest) ==================
[18:03:43] ==================== xe_dma_buf_kunit =====================
[18:03:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:03:43] =================== [SKIPPED] xe_dma_buf ===================
[18:03:43] ================= xe_bo_shrink (1 subtest) =================
[18:03:43] =================== xe_bo_shrink_kunit ====================
[18:03:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:03:43] ================== [SKIPPED] xe_bo_shrink ==================
[18:03:43] ==================== xe_bo (2 subtests) ====================
[18:03:43] ================== xe_ccs_migrate_kunit ===================
[18:03:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:03:43] ==================== xe_bo_evict_kunit ====================
[18:03:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:03:43] ===================== [SKIPPED] xe_bo ======================
[18:03:43] ==================== args (13 subtests) ====================
[18:03:43] [PASSED] count_args_test
[18:03:43] [PASSED] call_args_example
[18:03:43] [PASSED] call_args_test
[18:03:43] [PASSED] drop_first_arg_example
[18:03:43] [PASSED] drop_first_arg_test
[18:03:43] [PASSED] first_arg_example
[18:03:43] [PASSED] first_arg_test
[18:03:43] [PASSED] last_arg_example
[18:03:43] [PASSED] last_arg_test
[18:03:43] [PASSED] pick_arg_example
[18:03:43] [PASSED] if_args_example
[18:03:43] [PASSED] if_args_test
[18:03:43] [PASSED] sep_comma_example
[18:03:43] ====================== [PASSED] args =======================
[18:03:43] =================== xe_pci (3 subtests) ====================
[18:03:43] ==================== check_graphics_ip ====================
[18:03:43] [PASSED] 12.00 Xe_LP
[18:03:43] [PASSED] 12.10 Xe_LP+
[18:03:43] [PASSED] 12.55 Xe_HPG
[18:03:43] [PASSED] 12.60 Xe_HPC
[18:03:43] [PASSED] 12.70 Xe_LPG
[18:03:43] [PASSED] 12.71 Xe_LPG
[18:03:43] [PASSED] 12.74 Xe_LPG+
[18:03:43] [PASSED] 20.01 Xe2_HPG
[18:03:43] [PASSED] 20.02 Xe2_HPG
[18:03:43] [PASSED] 20.04 Xe2_LPG
[18:03:43] [PASSED] 30.00 Xe3_LPG
[18:03:43] [PASSED] 30.01 Xe3_LPG
[18:03:43] [PASSED] 30.03 Xe3_LPG
[18:03:43] [PASSED] 30.04 Xe3_LPG
[18:03:43] [PASSED] 30.05 Xe3_LPG
[18:03:43] [PASSED] 35.10 Xe3p_LPG
[18:03:43] [PASSED] 35.11 Xe3p_XPC
[18:03:43] ================ [PASSED] check_graphics_ip ================
[18:03:43] ===================== check_media_ip ======================
[18:03:43] [PASSED] 12.00 Xe_M
[18:03:43] [PASSED] 12.55 Xe_HPM
[18:03:43] [PASSED] 13.00 Xe_LPM+
[18:03:43] [PASSED] 13.01 Xe2_HPM
[18:03:43] [PASSED] 20.00 Xe2_LPM
[18:03:43] [PASSED] 30.00 Xe3_LPM
[18:03:43] [PASSED] 30.02 Xe3_LPM
[18:03:43] [PASSED] 35.00 Xe3p_LPM
[18:03:43] [PASSED] 35.03 Xe3p_HPM
[18:03:43] ================= [PASSED] check_media_ip ==================
[18:03:43] =================== check_platform_desc ===================
[18:03:43] [PASSED] 0x9A60 (TIGERLAKE)
[18:03:43] [PASSED] 0x9A68 (TIGERLAKE)
[18:03:43] [PASSED] 0x9A70 (TIGERLAKE)
[18:03:43] [PASSED] 0x9A40 (TIGERLAKE)
[18:03:43] [PASSED] 0x9A49 (TIGERLAKE)
[18:03:43] [PASSED] 0x9A59 (TIGERLAKE)
[18:03:43] [PASSED] 0x9A78 (TIGERLAKE)
[18:03:43] [PASSED] 0x9AC0 (TIGERLAKE)
[18:03:43] [PASSED] 0x9AC9 (TIGERLAKE)
[18:03:43] [PASSED] 0x9AD9 (TIGERLAKE)
[18:03:43] [PASSED] 0x9AF8 (TIGERLAKE)
[18:03:43] [PASSED] 0x4C80 (ROCKETLAKE)
[18:03:43] [PASSED] 0x4C8A (ROCKETLAKE)
[18:03:43] [PASSED] 0x4C8B (ROCKETLAKE)
[18:03:43] [PASSED] 0x4C8C (ROCKETLAKE)
[18:03:43] [PASSED] 0x4C90 (ROCKETLAKE)
[18:03:43] [PASSED] 0x4C9A (ROCKETLAKE)
[18:03:43] [PASSED] 0x4680 (ALDERLAKE_S)
[18:03:43] [PASSED] 0x4682 (ALDERLAKE_S)
[18:03:43] [PASSED] 0x4688 (ALDERLAKE_S)
[18:03:43] [PASSED] 0x468A (ALDERLAKE_S)
[18:03:43] [PASSED] 0x468B (ALDERLAKE_S)
[18:03:43] [PASSED] 0x4690 (ALDERLAKE_S)
[18:03:43] [PASSED] 0x4692 (ALDERLAKE_S)
[18:03:43] [PASSED] 0x4693 (ALDERLAKE_S)
[18:03:43] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46AA (ALDERLAKE_P)
[18:03:43] [PASSED] 0x462A (ALDERLAKE_P)
[18:03:43] [PASSED] 0x4626 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x4628 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:03:43] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:03:43] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:03:43] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:03:43] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:03:43] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:03:43] [PASSED] 0xA721 (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA720 (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:03:43] [PASSED] 0xA780 (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA781 (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA782 (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA783 (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA788 (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA789 (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA78A (ALDERLAKE_S)
[18:03:43] [PASSED] 0xA78B (ALDERLAKE_S)
[18:03:43] [PASSED] 0x4905 (DG1)
[18:03:43] [PASSED] 0x4906 (DG1)
[18:03:43] [PASSED] 0x4907 (DG1)
[18:03:43] [PASSED] 0x4908 (DG1)
[18:03:43] [PASSED] 0x4909 (DG1)
[18:03:43] [PASSED] 0x56C0 (DG2)
[18:03:43] [PASSED] 0x56C2 (DG2)
[18:03:43] [PASSED] 0x56C1 (DG2)
[18:03:43] [PASSED] 0x7D51 (METEORLAKE)
[18:03:43] [PASSED] 0x7DD1 (METEORLAKE)
[18:03:43] [PASSED] 0x7D41 (METEORLAKE)
[18:03:43] [PASSED] 0x7D67 (METEORLAKE)
[18:03:43] [PASSED] 0xB640 (METEORLAKE)
[18:03:43] [PASSED] 0x56A0 (DG2)
[18:03:43] [PASSED] 0x56A1 (DG2)
[18:03:43] [PASSED] 0x56A2 (DG2)
[18:03:43] [PASSED] 0x56BE (DG2)
[18:03:43] [PASSED] 0x56BF (DG2)
[18:03:43] [PASSED] 0x5690 (DG2)
[18:03:43] [PASSED] 0x5691 (DG2)
[18:03:43] [PASSED] 0x5692 (DG2)
[18:03:43] [PASSED] 0x56A5 (DG2)
[18:03:43] [PASSED] 0x56A6 (DG2)
[18:03:43] [PASSED] 0x56B0 (DG2)
[18:03:43] [PASSED] 0x56B1 (DG2)
[18:03:43] [PASSED] 0x56BA (DG2)
[18:03:43] [PASSED] 0x56BB (DG2)
[18:03:43] [PASSED] 0x56BC (DG2)
[18:03:43] [PASSED] 0x56BD (DG2)
[18:03:43] [PASSED] 0x5693 (DG2)
[18:03:43] [PASSED] 0x5694 (DG2)
[18:03:43] [PASSED] 0x5695 (DG2)
[18:03:43] [PASSED] 0x56A3 (DG2)
[18:03:43] [PASSED] 0x56A4 (DG2)
[18:03:43] [PASSED] 0x56B2 (DG2)
[18:03:43] [PASSED] 0x56B3 (DG2)
[18:03:43] [PASSED] 0x5696 (DG2)
[18:03:43] [PASSED] 0x5697 (DG2)
[18:03:43] [PASSED] 0xB69 (PVC)
[18:03:43] [PASSED] 0xB6E (PVC)
[18:03:43] [PASSED] 0xBD4 (PVC)
[18:03:43] [PASSED] 0xBD5 (PVC)
[18:03:43] [PASSED] 0xBD6 (PVC)
[18:03:43] [PASSED] 0xBD7 (PVC)
[18:03:43] [PASSED] 0xBD8 (PVC)
[18:03:43] [PASSED] 0xBD9 (PVC)
[18:03:43] [PASSED] 0xBDA (PVC)
[18:03:43] [PASSED] 0xBDB (PVC)
[18:03:43] [PASSED] 0xBE0 (PVC)
[18:03:43] [PASSED] 0xBE1 (PVC)
[18:03:43] [PASSED] 0xBE5 (PVC)
[18:03:43] [PASSED] 0x7D40 (METEORLAKE)
[18:03:43] [PASSED] 0x7D45 (METEORLAKE)
[18:03:43] [PASSED] 0x7D55 (METEORLAKE)
[18:03:43] [PASSED] 0x7D60 (METEORLAKE)
[18:03:43] [PASSED] 0x7DD5 (METEORLAKE)
[18:03:43] [PASSED] 0x6420 (LUNARLAKE)
[18:03:43] [PASSED] 0x64A0 (LUNARLAKE)
[18:03:43] [PASSED] 0x64B0 (LUNARLAKE)
[18:03:43] [PASSED] 0xE202 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE209 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE20B (BATTLEMAGE)
[18:03:43] [PASSED] 0xE20C (BATTLEMAGE)
[18:03:43] [PASSED] 0xE20D (BATTLEMAGE)
[18:03:43] [PASSED] 0xE210 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE211 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE212 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE216 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE220 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE221 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE222 (BATTLEMAGE)
[18:03:43] [PASSED] 0xE223 (BATTLEMAGE)
[18:03:43] [PASSED] 0xB080 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB081 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB082 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB083 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB084 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB085 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB086 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB087 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB08F (PANTHERLAKE)
[18:03:43] [PASSED] 0xB090 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:03:43] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:03:43] [PASSED] 0xFD80 (PANTHERLAKE)
[18:03:43] [PASSED] 0xFD81 (PANTHERLAKE)
[18:03:43] [PASSED] 0xD740 (NOVALAKE_S)
[18:03:43] [PASSED] 0xD741 (NOVALAKE_S)
[18:03:43] [PASSED] 0xD742 (NOVALAKE_S)
[18:03:43] [PASSED] 0xD743 (NOVALAKE_S)
[18:03:43] [PASSED] 0xD744 (NOVALAKE_S)
[18:03:43] [PASSED] 0xD745 (NOVALAKE_S)
[18:03:43] [PASSED] 0x674C (CRESCENTISLAND)
[18:03:43] [PASSED] 0xD750 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD751 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD752 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD753 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD754 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD755 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD756 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD757 (NOVALAKE_P)
[18:03:43] [PASSED] 0xD75F (NOVALAKE_P)
[18:03:43] =============== [PASSED] check_platform_desc ===============
[18:03:43] ===================== [PASSED] xe_pci ======================
[18:03:43] =================== xe_rtp (2 subtests) ====================
[18:03:43] =============== xe_rtp_process_to_sr_tests ================
[18:03:43] [PASSED] coalesce-same-reg
[18:03:43] [PASSED] no-match-no-add
[18:03:43] [PASSED] match-or
[18:03:43] [PASSED] match-or-xfail
[18:03:43] [PASSED] no-match-no-add-multiple-rules
[18:03:43] [PASSED] two-regs-two-entries
[18:03:43] [PASSED] clr-one-set-other
[18:03:43] [PASSED] set-field
[18:03:43] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[18:03:43] [PASSED] conflict-not-disjoint
[18:03:43] [PASSED] conflict-reg-type
[18:03:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:03:43] ================== xe_rtp_process_tests ===================
[18:03:43] [PASSED] active1
[18:03:43] [PASSED] active2
[18:03:43] [PASSED] active-inactive
[18:03:43] [PASSED] inactive-active
[18:03:43] [PASSED] inactive-1st_or_active-inactive
[18:03:43] [PASSED] inactive-2nd_or_active-inactive
[18:03:43] [PASSED] inactive-last_or_active-inactive
[18:03:43] [PASSED] inactive-no_or_active-inactive
[18:03:43] ============== [PASSED] xe_rtp_process_tests ===============
[18:03:43] ===================== [PASSED] xe_rtp ======================
[18:03:43] ==================== xe_wa (1 subtest) =====================
[18:03:43] ======================== xe_wa_gt =========================
[18:03:43] [PASSED] TIGERLAKE B0
[18:03:43] [PASSED] DG1 A0
[18:03:43] [PASSED] DG1 B0
[18:03:43] [PASSED] ALDERLAKE_S A0
[18:03:43] [PASSED] ALDERLAKE_S B0
[18:03:43] [PASSED] ALDERLAKE_S C0
[18:03:43] [PASSED] ALDERLAKE_S D0
[18:03:43] [PASSED] ALDERLAKE_P A0
[18:03:43] [PASSED] ALDERLAKE_P B0
[18:03:43] [PASSED] ALDERLAKE_P C0
[18:03:43] [PASSED] ALDERLAKE_S RPLS D0
[18:03:43] [PASSED] ALDERLAKE_P RPLU E0
[18:03:43] [PASSED] DG2 G10 C0
[18:03:43] [PASSED] DG2 G11 B1
[18:03:43] [PASSED] DG2 G12 A1
[18:03:43] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:03:43] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:03:43] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[18:03:43] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[18:03:43] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[18:03:43] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[18:03:43] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[18:03:43] ==================== [PASSED] xe_wa_gt =====================
[18:03:43] ====================== [PASSED] xe_wa ======================
[18:03:43] ============================================================
[18:03:43] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[18:03:43] Elapsed time: 36.379s total, 4.263s configuring, 31.499s building, 0.602s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:03:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:03:45] 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
[18:04:09] Starting KUnit Kernel (1/1)...
[18:04:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:04:09] ============ drm_test_pick_cmdline (2 subtests) ============
[18:04:09] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[18:04:09] =============== drm_test_pick_cmdline_named ===============
[18:04:09] [PASSED] NTSC
[18:04:09] [PASSED] NTSC-J
[18:04:09] [PASSED] PAL
[18:04:09] [PASSED] PAL-M
[18:04:09] =========== [PASSED] drm_test_pick_cmdline_named ===========
[18:04:09] ============== [PASSED] drm_test_pick_cmdline ==============
[18:04:09] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:04:09] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:04:09] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:04:09] =========== drm_validate_clone_mode (2 subtests) ===========
[18:04:09] ============== drm_test_check_in_clone_mode ===============
[18:04:09] [PASSED] in_clone_mode
[18:04:09] [PASSED] not_in_clone_mode
[18:04:09] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:04:09] =============== drm_test_check_valid_clones ===============
[18:04:09] [PASSED] not_in_clone_mode
[18:04:09] [PASSED] valid_clone
[18:04:09] [PASSED] invalid_clone
[18:04:09] =========== [PASSED] drm_test_check_valid_clones ===========
[18:04:09] ============= [PASSED] drm_validate_clone_mode =============
[18:04:09] ============= drm_validate_modeset (1 subtest) =============
[18:04:09] [PASSED] drm_test_check_connector_changed_modeset
[18:04:09] ============== [PASSED] drm_validate_modeset ===============
[18:04:09] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:04:09] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:04:09] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:04:09] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:04:09] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:04:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:04:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:04:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:04:09] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:04:09] ============== drm_bridge_alloc (2 subtests) ===============
[18:04:09] [PASSED] drm_test_drm_bridge_alloc_basic
[18:04:09] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:04:09] ================ [PASSED] drm_bridge_alloc =================
[18:04:09] ============= drm_cmdline_parser (40 subtests) =============
[18:04:09] [PASSED] drm_test_cmdline_force_d_only
[18:04:09] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:04:09] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:04:09] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:04:09] [PASSED] drm_test_cmdline_force_e_only
[18:04:09] [PASSED] drm_test_cmdline_res
[18:04:09] [PASSED] drm_test_cmdline_res_vesa
[18:04:09] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:04:09] [PASSED] drm_test_cmdline_res_rblank
[18:04:09] [PASSED] drm_test_cmdline_res_bpp
[18:04:09] [PASSED] drm_test_cmdline_res_refresh
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:04:09] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:04:09] [PASSED] drm_test_cmdline_res_margins_force_on
[18:04:09] [PASSED] drm_test_cmdline_res_vesa_margins
[18:04:09] [PASSED] drm_test_cmdline_name
[18:04:09] [PASSED] drm_test_cmdline_name_bpp
[18:04:09] [PASSED] drm_test_cmdline_name_option
[18:04:09] [PASSED] drm_test_cmdline_name_bpp_option
[18:04:09] [PASSED] drm_test_cmdline_rotate_0
[18:04:09] [PASSED] drm_test_cmdline_rotate_90
[18:04:09] [PASSED] drm_test_cmdline_rotate_180
[18:04:09] [PASSED] drm_test_cmdline_rotate_270
[18:04:09] [PASSED] drm_test_cmdline_hmirror
[18:04:09] [PASSED] drm_test_cmdline_vmirror
[18:04:09] [PASSED] drm_test_cmdline_margin_options
[18:04:09] [PASSED] drm_test_cmdline_multiple_options
[18:04:09] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:04:09] [PASSED] drm_test_cmdline_extra_and_option
[18:04:09] [PASSED] drm_test_cmdline_freestanding_options
[18:04:09] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:04:09] [PASSED] drm_test_cmdline_panel_orientation
[18:04:09] ================ drm_test_cmdline_invalid =================
[18:04:09] [PASSED] margin_only
[18:04:09] [PASSED] interlace_only
[18:04:09] [PASSED] res_missing_x
[18:04:09] [PASSED] res_missing_y
[18:04:09] [PASSED] res_bad_y
[18:04:09] [PASSED] res_missing_y_bpp
[18:04:09] [PASSED] res_bad_bpp
[18:04:09] [PASSED] res_bad_refresh
[18:04:09] [PASSED] res_bpp_refresh_force_on_off
[18:04:09] [PASSED] res_invalid_mode
[18:04:09] [PASSED] res_bpp_wrong_place_mode
[18:04:09] [PASSED] name_bpp_refresh
[18:04:09] [PASSED] name_refresh
[18:04:09] [PASSED] name_refresh_wrong_mode
[18:04:09] [PASSED] name_refresh_invalid_mode
[18:04:09] [PASSED] rotate_multiple
[18:04:09] [PASSED] rotate_invalid_val
[18:04:09] [PASSED] rotate_truncated
[18:04:09] [PASSED] invalid_option
[18:04:09] [PASSED] invalid_tv_option
[18:04:09] [PASSED] truncated_tv_option
[18:04:09] ============ [PASSED] drm_test_cmdline_invalid =============
[18:04:09] =============== drm_test_cmdline_tv_options ===============
[18:04:09] [PASSED] NTSC
[18:04:09] [PASSED] NTSC_443
[18:04:09] [PASSED] NTSC_J
[18:04:09] [PASSED] PAL
[18:04:09] [PASSED] PAL_M
[18:04:09] [PASSED] PAL_N
[18:04:09] [PASSED] SECAM
[18:04:09] [PASSED] MONO_525
[18:04:09] [PASSED] MONO_625
[18:04:09] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:04:09] =============== [PASSED] drm_cmdline_parser ================
[18:04:09] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:04:09] [PASSED] drm_test_connector_hdmi_init_valid
[18:04:09] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:04:09] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:04:09] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:04:09] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:04:09] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:04:09] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:04:09] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:04:09] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:04:09] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:04:09] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:04:09] [PASSED] supported_formats=0x5 yuv420_allowed=1
[18:04:09] [PASSED] supported_formats=0x5 yuv420_allowed=0
[18:04:09] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:04:09] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:04:09] [PASSED] drm_test_connector_hdmi_init_null_product
[18:04:09] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:04:09] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:04:09] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:04:09] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:04:09] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:04:09] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:04:09] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:04:09] ========= drm_test_connector_hdmi_init_type_valid =========
[18:04:09] [PASSED] HDMI-A
[18:04:09] [PASSED] HDMI-B
[18:04:09] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:04:09] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:04:09] [PASSED] Unknown
[18:04:09] [PASSED] VGA
[18:04:09] [PASSED] DVI-I
[18:04:09] [PASSED] DVI-D
[18:04:09] [PASSED] DVI-A
[18:04:09] [PASSED] Composite
[18:04:09] [PASSED] SVIDEO
[18:04:09] [PASSED] LVDS
[18:04:09] [PASSED] Component
[18:04:09] [PASSED] DIN
[18:04:09] [PASSED] DP
[18:04:09] [PASSED] TV
[18:04:09] [PASSED] eDP
[18:04:09] [PASSED] Virtual
[18:04:09] [PASSED] DSI
[18:04:09] [PASSED] DPI
[18:04:09] [PASSED] Writeback
[18:04:09] [PASSED] SPI
[18:04:09] [PASSED] USB
[18:04:09] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:04:09] ============ [PASSED] drmm_connector_hdmi_init =============
[18:04:09] ============= drmm_connector_init (3 subtests) =============
[18:04:09] [PASSED] drm_test_drmm_connector_init
[18:04:09] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:04:09] ========= drm_test_drmm_connector_init_type_valid =========
[18:04:09] [PASSED] Unknown
[18:04:09] [PASSED] VGA
[18:04:09] [PASSED] DVI-I
[18:04:09] [PASSED] DVI-D
[18:04:09] [PASSED] DVI-A
[18:04:09] [PASSED] Composite
[18:04:09] [PASSED] SVIDEO
[18:04:09] [PASSED] LVDS
[18:04:09] [PASSED] Component
[18:04:09] [PASSED] DIN
[18:04:09] [PASSED] DP
[18:04:09] [PASSED] HDMI-A
[18:04:09] [PASSED] HDMI-B
[18:04:09] [PASSED] TV
[18:04:09] [PASSED] eDP
[18:04:09] [PASSED] Virtual
[18:04:09] [PASSED] DSI
[18:04:09] [PASSED] DPI
[18:04:09] [PASSED] Writeback
[18:04:09] [PASSED] SPI
[18:04:09] [PASSED] USB
[18:04:09] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:04:09] =============== [PASSED] drmm_connector_init ===============
[18:04:09] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_init
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:04:09] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:04:09] [PASSED] Unknown
[18:04:09] [PASSED] VGA
[18:04:09] [PASSED] DVI-I
[18:04:09] [PASSED] DVI-D
[18:04:09] [PASSED] DVI-A
[18:04:09] [PASSED] Composite
[18:04:09] [PASSED] SVIDEO
[18:04:09] [PASSED] LVDS
[18:04:09] [PASSED] Component
[18:04:09] [PASSED] DIN
[18:04:09] [PASSED] DP
[18:04:09] [PASSED] HDMI-A
[18:04:09] [PASSED] HDMI-B
[18:04:09] [PASSED] TV
[18:04:09] [PASSED] eDP
[18:04:09] [PASSED] Virtual
[18:04:09] [PASSED] DSI
[18:04:09] [PASSED] DPI
[18:04:09] [PASSED] Writeback
[18:04:09] [PASSED] SPI
[18:04:09] [PASSED] USB
[18:04:09] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:04:09] ======== drm_test_drm_connector_dynamic_init_name =========
[18:04:09] [PASSED] Unknown
[18:04:09] [PASSED] VGA
[18:04:09] [PASSED] DVI-I
[18:04:09] [PASSED] DVI-D
[18:04:09] [PASSED] DVI-A
[18:04:09] [PASSED] Composite
[18:04:09] [PASSED] SVIDEO
[18:04:09] [PASSED] LVDS
[18:04:09] [PASSED] Component
[18:04:09] [PASSED] DIN
[18:04:09] [PASSED] DP
[18:04:09] [PASSED] HDMI-A
[18:04:09] [PASSED] HDMI-B
[18:04:09] [PASSED] TV
[18:04:09] [PASSED] eDP
[18:04:09] [PASSED] Virtual
[18:04:09] [PASSED] DSI
[18:04:09] [PASSED] DPI
[18:04:09] [PASSED] Writeback
[18:04:09] [PASSED] SPI
[18:04:09] [PASSED] USB
[18:04:09] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:04:09] =========== [PASSED] drm_connector_dynamic_init ============
[18:04:09] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:04:09] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:04:09] ======= drm_connector_dynamic_register (7 subtests) ========
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:04:09] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:04:09] ========= [PASSED] drm_connector_dynamic_register ==========
[18:04:09] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:04:09] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:04:09] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:04:09] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:04:09] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:04:09] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:04:09] [PASSED] NTSC
[18:04:09] [PASSED] NTSC-443
[18:04:09] [PASSED] NTSC-J
[18:04:09] [PASSED] PAL
[18:04:09] [PASSED] PAL-M
[18:04:09] [PASSED] PAL-N
[18:04:09] [PASSED] SECAM
[18:04:09] [PASSED] Mono
[18:04:09] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:04:09] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:04:09] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:04:09] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:04:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:04:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:04:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:04:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:04:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:04:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:04:09] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:04:09] [PASSED] VIC 96
[18:04:09] [PASSED] VIC 97
[18:04:09] [PASSED] VIC 101
[18:04:09] [PASSED] VIC 102
[18:04:09] [PASSED] VIC 106
[18:04:09] [PASSED] VIC 107
[18:04:09] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:04:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:04:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:04:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:04:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:04:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:04:09] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:04:09] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:04:09] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:04:09] [PASSED] Automatic
[18:04:09] [PASSED] Full
[18:04:09] [PASSED] Limited 16:235
[18:04:09] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:04:09] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:04:09] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:04:09] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:04:09] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:04:09] [PASSED] RGB
[18:04:09] [PASSED] YUV 4:2:0
[18:04:09] [PASSED] YUV 4:2:2
[18:04:09] [PASSED] YUV 4:4:4
[18:04:09] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:04:09] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:04:09] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:04:09] ============= drm_damage_helper (21 subtests) ==============
[18:04:09] [PASSED] drm_test_damage_iter_no_damage
[18:04:09] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:04:09] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:04:09] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:04:09] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:04:09] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:04:09] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:04:09] [PASSED] drm_test_damage_iter_simple_damage
[18:04:09] [PASSED] drm_test_damage_iter_single_damage
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:04:09] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:04:09] [PASSED] drm_test_damage_iter_damage
[18:04:09] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:04:09] [PASSED] drm_test_damage_iter_damage_one_outside
[18:04:09] [PASSED] drm_test_damage_iter_damage_src_moved
[18:04:09] [PASSED] drm_test_damage_iter_damage_not_visible
[18:04:09] ================ [PASSED] drm_damage_helper ================
[18:04:09] ============== drm_dp_mst_helper (3 subtests) ==============
[18:04:09] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:04:09] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:04:09] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:04:09] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:04:09] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:04:09] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:04:09] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:04:09] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:04:09] [PASSED] Link rate 2000000 lane count 4
[18:04:09] [PASSED] Link rate 2000000 lane count 2
[18:04:09] [PASSED] Link rate 2000000 lane count 1
[18:04:09] [PASSED] Link rate 1350000 lane count 4
[18:04:09] [PASSED] Link rate 1350000 lane count 2
[18:04:09] [PASSED] Link rate 1350000 lane count 1
[18:04:09] [PASSED] Link rate 1000000 lane count 4
[18:04:09] [PASSED] Link rate 1000000 lane count 2
[18:04:09] [PASSED] Link rate 1000000 lane count 1
[18:04:09] [PASSED] Link rate 810000 lane count 4
[18:04:09] [PASSED] Link rate 810000 lane count 2
[18:04:09] [PASSED] Link rate 810000 lane count 1
[18:04:09] [PASSED] Link rate 540000 lane count 4
[18:04:09] [PASSED] Link rate 540000 lane count 2
[18:04:09] [PASSED] Link rate 540000 lane count 1
[18:04:09] [PASSED] Link rate 270000 lane count 4
[18:04:09] [PASSED] Link rate 270000 lane count 2
[18:04:09] [PASSED] Link rate 270000 lane count 1
[18:04:09] [PASSED] Link rate 162000 lane count 4
[18:04:09] [PASSED] Link rate 162000 lane count 2
[18:04:09] [PASSED] Link rate 162000 lane count 1
[18:04:09] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:04:09] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:04:09] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:04:09] [PASSED] DP_POWER_UP_PHY with port number
[18:04:09] [PASSED] DP_POWER_DOWN_PHY with port number
[18:04:09] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:04:09] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:04:09] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:04:09] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:04:09] [PASSED] DP_QUERY_PAYLOAD with port number
[18:04:09] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:04:09] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:04:09] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:04:09] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:04:09] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:04:09] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:04:09] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:04:09] [PASSED] DP_REMOTE_I2C_READ with port number
[18:04:09] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:04:09] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:04:09] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:04:09] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:04:09] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:04:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:04:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:04:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:04:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:04:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:04:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:04:09] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:04:09] ================ [PASSED] drm_dp_mst_helper ================
[18:04:09] ================== drm_exec (7 subtests) ===================
[18:04:09] [PASSED] sanitycheck
[18:04:09] [PASSED] test_lock
[18:04:09] [PASSED] test_lock_unlock
[18:04:09] [PASSED] test_duplicates
[18:04:09] [PASSED] test_prepare
[18:04:09] [PASSED] test_prepare_array
[18:04:09] [PASSED] test_multiple_loops
[18:04:09] ==================== [PASSED] drm_exec =====================
[18:04:09] =========== drm_format_helper_test (17 subtests) ===========
[18:04:09] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:04:09] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:04:09] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:04:09] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:04:09] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:04:09] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:04:09] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:04:09] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:04:09] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:04:09] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:04:09] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:04:09] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:04:09] ==================== drm_test_fb_swab =====================
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ================ [PASSED] drm_test_fb_swab =================
[18:04:09] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:04:09] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:04:09] [PASSED] single_pixel_source_buffer
[18:04:09] [PASSED] single_pixel_clip_rectangle
[18:04:09] [PASSED] well_known_colors
[18:04:09] [PASSED] destination_pitch
[18:04:09] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:04:09] ================= drm_test_fb_clip_offset =================
[18:04:09] [PASSED] pass through
[18:04:09] [PASSED] horizontal offset
[18:04:09] [PASSED] vertical offset
[18:04:09] [PASSED] horizontal and vertical offset
[18:04:09] [PASSED] horizontal offset (custom pitch)
[18:04:09] [PASSED] vertical offset (custom pitch)
[18:04:09] [PASSED] horizontal and vertical offset (custom pitch)
[18:04:09] ============= [PASSED] drm_test_fb_clip_offset =============
[18:04:09] =================== drm_test_fb_memcpy ====================
[18:04:09] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:04:09] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:04:09] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:04:09] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:04:09] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:04:09] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:04:09] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:04:09] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:04:09] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:04:09] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:04:09] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:04:09] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:04:09] =============== [PASSED] drm_test_fb_memcpy ================
[18:04:09] ============= [PASSED] drm_format_helper_test ==============
[18:04:09] ================= drm_format (18 subtests) =================
[18:04:09] [PASSED] drm_test_format_block_width_invalid
[18:04:09] [PASSED] drm_test_format_block_width_one_plane
[18:04:09] [PASSED] drm_test_format_block_width_two_plane
[18:04:09] [PASSED] drm_test_format_block_width_three_plane
[18:04:09] [PASSED] drm_test_format_block_width_tiled
[18:04:09] [PASSED] drm_test_format_block_height_invalid
[18:04:09] [PASSED] drm_test_format_block_height_one_plane
[18:04:09] [PASSED] drm_test_format_block_height_two_plane
[18:04:09] [PASSED] drm_test_format_block_height_three_plane
[18:04:09] [PASSED] drm_test_format_block_height_tiled
[18:04:09] [PASSED] drm_test_format_min_pitch_invalid
[18:04:09] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:04:09] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:04:09] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:04:09] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:04:09] [PASSED] drm_test_format_min_pitch_two_plane
[18:04:09] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:04:09] [PASSED] drm_test_format_min_pitch_tiled
[18:04:09] =================== [PASSED] drm_format ====================
[18:04:09] ============== drm_framebuffer (10 subtests) ===============
[18:04:09] ========== drm_test_framebuffer_check_src_coords ==========
[18:04:09] [PASSED] Success: source fits into fb
[18:04:09] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:04:09] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:04:09] [PASSED] Fail: overflowing fb with source width
[18:04:09] [PASSED] Fail: overflowing fb with source height
[18:04:09] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:04:09] [PASSED] drm_test_framebuffer_cleanup
[18:04:09] =============== drm_test_framebuffer_create ===============
[18:04:09] [PASSED] ABGR8888 normal sizes
[18:04:09] [PASSED] ABGR8888 max sizes
[18:04:09] [PASSED] ABGR8888 pitch greater than min required
[18:04:09] [PASSED] ABGR8888 pitch less than min required
[18:04:09] [PASSED] ABGR8888 Invalid width
[18:04:09] [PASSED] ABGR8888 Invalid buffer handle
[18:04:09] [PASSED] No pixel format
[18:04:09] [PASSED] ABGR8888 Width 0
[18:04:09] [PASSED] ABGR8888 Height 0
[18:04:09] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:04:09] [PASSED] ABGR8888 Large buffer offset
[18:04:09] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:04:09] [PASSED] ABGR8888 Invalid flag
[18:04:09] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:04:09] [PASSED] ABGR8888 Valid buffer modifier
[18:04:09] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:04:09] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] NV12 Normal sizes
[18:04:09] [PASSED] NV12 Max sizes
[18:04:09] [PASSED] NV12 Invalid pitch
[18:04:09] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:04:09] [PASSED] NV12 different modifier per-plane
[18:04:09] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:04:09] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] NV12 Modifier for inexistent plane
[18:04:09] [PASSED] NV12 Handle for inexistent plane
[18:04:09] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:04:09] [PASSED] YVU420 Normal sizes
[18:04:09] [PASSED] YVU420 Max sizes
[18:04:09] [PASSED] YVU420 Invalid pitch
[18:04:09] [PASSED] YVU420 Different pitches
[18:04:09] [PASSED] YVU420 Different buffer offsets/pitches
[18:04:09] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:04:09] [PASSED] YVU420 Valid modifier
[18:04:09] [PASSED] YVU420 Different modifiers per plane
[18:04:09] [PASSED] YVU420 Modifier for inexistent plane
[18:04:09] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:04:09] [PASSED] X0L2 Normal sizes
[18:04:09] [PASSED] X0L2 Max sizes
[18:04:09] [PASSED] X0L2 Invalid pitch
[18:04:09] [PASSED] X0L2 Pitch greater than minimum required
[18:04:09] [PASSED] X0L2 Handle for inexistent plane
[18:04:09] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:04:09] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:04:09] [PASSED] X0L2 Valid modifier
[18:04:09] [PASSED] X0L2 Modifier for inexistent plane
[18:04:09] =========== [PASSED] drm_test_framebuffer_create ===========
[18:04:09] [PASSED] drm_test_framebuffer_free
[18:04:09] [PASSED] drm_test_framebuffer_init
[18:04:09] [PASSED] drm_test_framebuffer_init_bad_format
[18:04:09] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:04:09] [PASSED] drm_test_framebuffer_lookup
[18:04:09] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:04:09] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:04:09] ================= [PASSED] drm_framebuffer =================
[18:04:09] ================ drm_gem_shmem (8 subtests) ================
[18:04:09] [PASSED] drm_gem_shmem_test_obj_create
[18:04:09] [PASSED] drm_gem_shmem_test_obj_create_private
[18:04:09] [PASSED] drm_gem_shmem_test_pin_pages
[18:04:09] [PASSED] drm_gem_shmem_test_vmap
[18:04:09] [PASSED] drm_gem_shmem_test_get_sg_table
[18:04:09] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:04:09] [PASSED] drm_gem_shmem_test_madvise
[18:04:09] [PASSED] drm_gem_shmem_test_purge
[18:04:09] ================== [PASSED] drm_gem_shmem ==================
[18:04:09] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:04:09] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:04:09] [PASSED] Automatic
[18:04:09] [PASSED] Full
[18:04:09] [PASSED] Limited 16:235
[18:04:09] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:04:09] [PASSED] drm_test_check_disable_connector
[18:04:09] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:04:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:04:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:04:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:04:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:04:09] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:04:09] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:04:09] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:04:09] [PASSED] drm_test_check_output_bpc_dvi
[18:04:09] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:04:09] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:04:09] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:04:09] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:04:09] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:04:09] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:04:09] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:04:09] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:04:09] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:04:09] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:04:09] [PASSED] drm_test_check_broadcast_rgb_value
[18:04:09] [PASSED] drm_test_check_bpc_8_value
[18:04:09] [PASSED] drm_test_check_bpc_10_value
[18:04:09] [PASSED] drm_test_check_bpc_12_value
[18:04:09] [PASSED] drm_test_check_format_value
[18:04:09] [PASSED] drm_test_check_tmds_char_value
[18:04:09] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:04:09] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:04:09] [PASSED] drm_test_check_mode_valid
[18:04:09] [PASSED] drm_test_check_mode_valid_reject
[18:04:09] [PASSED] drm_test_check_mode_valid_reject_rate
[18:04:09] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:04:09] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:04:09] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[18:04:09] [PASSED] drm_test_check_infoframes
[18:04:09] [PASSED] drm_test_check_reject_avi_infoframe
[18:04:09] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[18:04:09] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[18:04:09] [PASSED] drm_test_check_reject_audio_infoframe
[18:04:09] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[18:04:09] ================= drm_managed (2 subtests) =================
[18:04:09] [PASSED] drm_test_managed_release_action
[18:04:09] [PASSED] drm_test_managed_run_action
[18:04:09] =================== [PASSED] drm_managed ===================
[18:04:09] =================== drm_mm (6 subtests) ====================
[18:04:09] [PASSED] drm_test_mm_init
[18:04:09] [PASSED] drm_test_mm_debug
[18:04:09] [PASSED] drm_test_mm_align32
[18:04:09] [PASSED] drm_test_mm_align64
[18:04:09] [PASSED] drm_test_mm_lowest
[18:04:09] [PASSED] drm_test_mm_highest
[18:04:09] ===================== [PASSED] drm_mm ======================
[18:04:09] ============= drm_modes_analog_tv (5 subtests) =============
[18:04:09] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:04:09] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:04:09] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:04:09] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:04:09] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:04:09] =============== [PASSED] drm_modes_analog_tv ===============
[18:04:09] ============== drm_plane_helper (2 subtests) ===============
[18:04:09] =============== drm_test_check_plane_state ================
[18:04:09] [PASSED] clipping_simple
[18:04:09] [PASSED] clipping_rotate_reflect
[18:04:09] [PASSED] positioning_simple
[18:04:09] [PASSED] upscaling
[18:04:09] [PASSED] downscaling
[18:04:09] [PASSED] rounding1
[18:04:09] [PASSED] rounding2
[18:04:09] [PASSED] rounding3
[18:04:09] [PASSED] rounding4
[18:04:09] =========== [PASSED] drm_test_check_plane_state ============
[18:04:09] =========== drm_test_check_invalid_plane_state ============
[18:04:09] [PASSED] positioning_invalid
[18:04:09] [PASSED] upscaling_invalid
[18:04:09] [PASSED] downscaling_invalid
[18:04:09] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:04:09] ================ [PASSED] drm_plane_helper =================
[18:04:09] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:04:09] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:04:09] [PASSED] None
[18:04:09] [PASSED] PAL
[18:04:09] [PASSED] NTSC
[18:04:09] [PASSED] Both, NTSC Default
[18:04:09] [PASSED] Both, PAL Default
[18:04:09] [PASSED] Both, NTSC Default, with PAL on command-line
[18:04:09] [PASSED] Both, PAL Default, with NTSC on command-line
[18:04:09] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:04:09] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:04:09] ================== drm_rect (9 subtests) ===================
[18:04:09] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:04:09] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:04:09] [PASSED] drm_test_rect_clip_scaled_clipped
[18:04:09] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:04:09] ================= drm_test_rect_intersect =================
[18:04:09] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:04:09] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:04:09] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:04:09] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:04:09] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:04:09] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:04:09] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:04:09] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:04:09] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:04:09] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:04:09] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:04:09] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:04:09] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:04:09] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:04:09] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:04:09] ============= [PASSED] drm_test_rect_intersect =============
[18:04:09] ================ drm_test_rect_calc_hscale ================
[18:04:09] [PASSED] normal use
[18:04:09] [PASSED] out of max range
[18:04:09] [PASSED] out of min range
[18:04:09] [PASSED] zero dst
[18:04:09] [PASSED] negative src
[18:04:09] [PASSED] negative dst
[18:04:09] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:04:09] ================ drm_test_rect_calc_vscale ================
[18:04:09] [PASSED] normal use
[18:04:09] [PASSED] out of max range
[18:04:09] [PASSED] out of min range
[18:04:09] [PASSED] zero dst
[18:04:09] [PASSED] negative src
[18:04:09] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[18:04:09] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:04:09] ================== drm_test_rect_rotate ===================
[18:04:09] [PASSED] reflect-x
[18:04:09] [PASSED] reflect-y
[18:04:09] [PASSED] rotate-0
[18:04:09] [PASSED] rotate-90
[18:04:09] [PASSED] rotate-180
[18:04:09] [PASSED] rotate-270
[18:04:09] ============== [PASSED] drm_test_rect_rotate ===============
[18:04:09] ================ drm_test_rect_rotate_inv =================
[18:04:09] [PASSED] reflect-x
[18:04:09] [PASSED] reflect-y
[18:04:09] [PASSED] rotate-0
[18:04:09] [PASSED] rotate-90
[18:04:09] [PASSED] rotate-180
[18:04:09] [PASSED] rotate-270
[18:04:09] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:04:09] ==================== [PASSED] drm_rect =====================
[18:04:09] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:04:09] ============ drm_test_sysfb_build_fourcc_list =============
[18:04:09] [PASSED] no native formats
[18:04:09] [PASSED] XRGB8888 as native format
[18:04:09] [PASSED] remove duplicates
[18:04:09] [PASSED] convert alpha formats
[18:04:09] [PASSED] random formats
[18:04:09] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:04:09] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:04:09] ================== drm_fixp (2 subtests) ===================
[18:04:09] [PASSED] drm_test_int2fixp
[18:04:09] [PASSED] drm_test_sm2fixp
[18:04:09] ==================== [PASSED] drm_fixp =====================
[18:04:09] ============================================================
[18:04:09] Testing complete. Ran 621 tests: passed: 621
[18:04:09] Elapsed time: 26.279s total, 1.732s configuring, 24.418s building, 0.127s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
stty: 'standard input': Inappropriate ioctl for device
[18:04:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:04:11] 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
[18:04:21] Starting KUnit Kernel (1/1)...
[18:04:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:04:21] ================= ttm_device (5 subtests) ==================
[18:04:21] [PASSED] ttm_device_init_basic
[18:04:21] [PASSED] ttm_device_init_multiple
[18:04:21] [PASSED] ttm_device_fini_basic
[18:04:21] [PASSED] ttm_device_init_no_vma_man
[18:04:21] ================== ttm_device_init_pools ==================
[18:04:21] [PASSED] No DMA allocations, no DMA32 required
[18:04:21] # ttm_device_init_pools: ASSERTION FAILED at drivers/gpu/drm/ttm/tests/ttm_device_test.c:178
[18:04:21] Expected !list_lru_count(&pt.pages) to be false, but is true
[18:04:21] [FAILED] DMA allocations, DMA32 required
[18:04:21] [PASSED] No DMA allocations, DMA32 required
[18:04:21] # ttm_device_init_pools: ASSERTION FAILED at drivers/gpu/drm/ttm/tests/ttm_device_test.c:178
[18:04:21] Expected !list_lru_count(&pt.pages) to be false, but is true
[18:04:21] ------------[ cut here ]------------
[18:04:21] WARNING: lib/refcount.c:28 at devres_release_all+0xaa/0x100, CPU#0: kunit_try_catch/46
[18:04:21] refcount_t: underflow; use-after-free.
[18:04:21] CPU: 0 UID: 0 PID: 46 Comm: kunit_try_catch Tainted: G W N 7.0.0-rc7-gb77547576252 #3 VOLUNTARY
[18:04:21] Tainted: [W]=WARN, [N]=TEST
[18:04:21] Stack:
[18:04:21] 6044ed8b 00000000 00000000 00000001
[18:04:21] ffffff00 6044ed8b 6032367a 00000009
[18:04:21] 0000001c 60043e88 6002381c ca8cbd40
[18:04:21] Call Trace:
[18:04:21] [<6032367a>] ? devres_release_all+0xaa/0x100
[18:04:21] [<60043e88>] ? dump_stack_lvl+0x5e/0x7a
[18:04:21] [<6002381c>] ? _printk+0x0/0x65
[18:04:21] [<6001f09f>] ? __warn.cold+0x79/0x11f
[18:04:21] [<6001f1d9>] ? warn_slowpath_fmt+0x94/0xa1
[18:04:21] [<601ef1a0>] ? kernfs_free_rcu+0x0/0x70
[18:04:21] [<60052e36>] ? um_set_signals+0x36/0x60
[18:04:21] [<600c5a42>] ? call_rcu+0x52/0x90
[18:04:21] [<6001f145>] ? warn_slowpath_fmt+0x0/0xa1
[18:04:21] [<60147f50>] ? kfree+0x0/0x250
[18:04:21] [<6032367a>] ? devres_release_all+0xaa/0x100
[18:04:21] [<60396bb0>] ? mutex_unlock+0x0/0x30
[18:04:21] [<6031c3c0>] ? bus_notify+0x0/0x60
[18:04:21] [<60396bb0>] ? mutex_unlock+0x0/0x30
[18:04:21] [<60398620>] ? mutex_lock+0x0/0x40
[18:04:21] [<6031ca24>] ? device_unbind_cleanup+0x14/0xb0
[18:04:21] [<6031e1f6>] ? device_release_driver_internal+0x256/0x2b0
[18:04:21] [<60372210>] ? kobject_put+0x0/0x150
[18:04:21] [<601f3d40>] ? sysfs_remove_file_ns+0x0/0x20
[18:04:21] [<6031c00f>] ? bus_remove_device+0x10f/0x1a0
[18:04:21] [<601f3d40>] ? sysfs_remove_file_ns+0x0/0x20
[18:04:21] [<601f17b8>] ? kernfs_remove_by_name_ns+0x98/0x130
[18:04:21] [<60315a8c>] ? device_del+0x1bc/0x600
[18:04:21] [<60052e00>] ? um_set_signals+0x0/0x60
[18:04:21] [<6025b2a0>] ? device_unregister_wrapper+0x0/0x10
[18:04:21] [<60052e00>] ? um_set_signals+0x0/0x60
[18:04:21] [<60315ee4>] ? device_unregister+0x14/0x40
[18:04:21] [<60257e66>] ? kunit_release_action+0xf6/0x170
[18:04:21] [<60257d70>] ? kunit_release_action+0x0/0x170
[18:04:21] [<6025b2e2>] ? kunit_device_unregister+0x32/0x80
[18:04:21] [<60259890>] ? kunit_generic_run_threadfn_adapter+0x0/0x30
[18:04:21] [<6025748e>] ? kunit_try_run_case_cleanup+0x2e/0x40
[18:04:21] [<602598a6>] ? kunit_generic_run_threadfn_adapter+0x16/0x30
[18:04:21] [<60081e36>] ? kthread+0xe6/0x150
[18:04:21] [<60046435>] ? new_thread_handler+0x45/0x60
[18:04:21] ---[ end trace 0000000000000000 ]---
[18:04:21] [FAILED] DMA allocations, no DMA32 required
[18:04:21] # ttm_device_init_pools: pass:2 fail:2 skip:0 total:4
[18:04:21] ============== [FAILED] ttm_device_init_pools ==============
[18:04:21] # module: ttm_device_test
[18:04:21] # ttm_device: pass:4 fail:1 skip:0 total:5
[18:04:21] # Totals: pass:6 fail:2 skip:0 total:8
[18:04:21] =================== [FAILED] ttm_device ====================
[18:04:21] ================== ttm_pool (8 subtests) ===================
[18:04:21] ================== ttm_pool_alloc_basic ===================
[18:04:21] [PASSED] One page
[18:04:21] [PASSED] More than one page
[18:04:21] [PASSED] Above the allocation limit
[18:04:21] [PASSED] One page, with coherent DMA mappings enabled
[18:04:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:04:21] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:04:21] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:04:21] [PASSED] One page
[18:04:21] [PASSED] More than one page
[18:04:21] [PASSED] Above the allocation limit
[18:04:21] [PASSED] One page, with coherent DMA mappings enabled
[18:04:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:04:21] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:04:21] [PASSED] ttm_pool_alloc_order_caching_match
[18:04:21] [PASSED] ttm_pool_alloc_caching_mismatch
[18:04:21] [PASSED] ttm_pool_alloc_order_mismatch
[18:04:21] [PASSED] ttm_pool_free_dma_alloc
[18:04:21] [ERROR] Test: ttm_pool: missing expected subtest!
[18:04:21]
[18:04:21] Pid: 75, comm: kunit_try_catch Tainted: G W N 7.0.0-rc7-gb77547576252
[18:04:21] RIP: 0033:list_lru_count_node+0xe/0x20
[18:04:21] RSP: 00000000ca8cbed8 EFLAGS: 00010246
[18:04:21] RAX: 0000000000000000 RBX: 00000000ca803c90 RCX: 000000008ae4c7d8
[18:04:21] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 000000008ac86880
[18:04:21] RBP: 000000008ac86800 R08: 00000000c9456c28 R09: 000000008ac50c80
[18:04:21] R10: 0000000000000000 R11: 0000000000000000 R12: 000000008ac50c80
[18:04:21] R13: 0000000060440770 R14: 000000006010eb50 R15: 000000008ac86880
[18:04:21] Kernel panic - not syncing: Segfault with no mm
[18:04:21] [CRASHED]
[18:04:21] [ERROR] Test: ttm_pool: missing expected subtest!
[18:04:21] [CRASHED]
[18:04:21] [ERROR] Test: ttm_pool: missing subtest result line!
[18:04:21] # module: ttm_pool_test
[18:04:21] ==================== [CRASHED] ttm_pool ====================
[18:04:21] [ERROR] Test: main: missing expected subtest!
[18:04:21] [CRASHED]
[18:04:21] [ERROR] Test: main: missing expected subtest!
[18:04:21] [CRASHED]
[18:04:21] [ERROR] Test: main: missing expected subtest!
[18:04:21] [CRASHED]
[18:04:21] [ERROR] Test: main: missing expected subtest!
[18:04:21] [CRASHED]
[18:04:21] ============================================================
[18:04:21] Testing complete. Ran 28 tests: passed: 20, failed: 2, crashed: 6, errors: 7
The kernel seems to have crashed; you can decode the stack traces with:
$ scripts/decode_stacktrace.sh .kunit/vmlinux .kunit < .kunit/test.log | tee .kunit/decoded.log | /kernel/tools/testing/kunit/kunit.py parse
[18:04:21] Elapsed time: 11.435s total, 1.731s configuring, 9.437s building, 0.267s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (5 preceding siblings ...)
2026-04-08 18:04 ` ✗ CI.KUnit: failure " Patchwork
@ 2026-04-10 2:29 ` Patchwork
2026-04-10 2:30 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-10 2:29 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
URL : https://patchwork.freedesktop.org/series/164476/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ce37d476481a3da96b771c0ba1880cee430a8ffa
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date: Wed Apr 8 17:52:55 2026 +0000
drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import()
When xe_dma_buf_init_obj() fails, the attachment from
dma_buf_dynamic_attach() is not detached. Add dma_buf_detach() before
returning the error. Note: we cannot use goto out_err here because
xe_dma_buf_init_obj() already frees bo on failure, and out_err would
double-free it.
Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: stable@vger.kernel.org
Assisted-by: Claude:claude-opus-4.6
Reviewed-by: Mattheq Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
+ /mt/dim checkpatch 97d8833ffba6bd3d6aaa51169069620ac17a2e37 drm-intel
80d1e05cfe5c drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked()
-:15: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#15:
Assisted-by: Claude:claude-opus-4.6
-:15: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#15:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 11 lines checked
0dcfbfe35eb9 drm/xe/bo: Fix bo leak on GGTT flag validation in xe_bo_init_locked()
-:15: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#15:
Assisted-by: Claude:claude-opus-4.6
-:15: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#15:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 11 lines checked
507d72484f17 drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure
-:25: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#25:
Assisted-by: Claude:claude-opus-4.6
-:25: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#25:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 31 lines checked
ce37d476481a drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import()
-:14: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#14:
Assisted-by: Claude:claude-opus-4.6
-:14: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#14:
Assisted-by: Claude:claude-opus-4.6
total: 1 errors, 1 warnings, 0 checks, 19 lines checked
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (6 preceding siblings ...)
2026-04-10 2:29 ` ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3) Patchwork
@ 2026-04-10 2:30 ` Patchwork
2026-04-10 3:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-10 7:58 ` ✓ Xe.CI.FULL: " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-10 2:30 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
URL : https://patchwork.freedesktop.org/series/164476/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[02:29:30] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:29:34] 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
[02:30:06] Starting KUnit Kernel (1/1)...
[02:30:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:30:06] ================== guc_buf (11 subtests) ===================
[02:30:06] [PASSED] test_smallest
[02:30:06] [PASSED] test_largest
[02:30:06] [PASSED] test_granular
[02:30:06] [PASSED] test_unique
[02:30:06] [PASSED] test_overlap
[02:30:06] [PASSED] test_reusable
[02:30:06] [PASSED] test_too_big
[02:30:06] [PASSED] test_flush
[02:30:06] [PASSED] test_lookup
[02:30:06] [PASSED] test_data
[02:30:06] [PASSED] test_class
[02:30:06] ===================== [PASSED] guc_buf =====================
[02:30:06] =================== guc_dbm (7 subtests) ===================
[02:30:06] [PASSED] test_empty
[02:30:06] [PASSED] test_default
[02:30:06] ======================== test_size ========================
[02:30:06] [PASSED] 4
[02:30:06] [PASSED] 8
[02:30:06] [PASSED] 32
[02:30:06] [PASSED] 256
[02:30:06] ==================== [PASSED] test_size ====================
[02:30:06] ======================= test_reuse ========================
[02:30:06] [PASSED] 4
[02:30:06] [PASSED] 8
[02:30:06] [PASSED] 32
[02:30:06] [PASSED] 256
[02:30:06] =================== [PASSED] test_reuse ====================
[02:30:06] =================== test_range_overlap ====================
[02:30:06] [PASSED] 4
[02:30:06] [PASSED] 8
[02:30:06] [PASSED] 32
[02:30:06] [PASSED] 256
[02:30:06] =============== [PASSED] test_range_overlap ================
[02:30:06] =================== test_range_compact ====================
[02:30:06] [PASSED] 4
[02:30:06] [PASSED] 8
[02:30:06] [PASSED] 32
[02:30:06] [PASSED] 256
[02:30:06] =============== [PASSED] test_range_compact ================
[02:30:06] ==================== test_range_spare =====================
[02:30:06] [PASSED] 4
[02:30:06] [PASSED] 8
[02:30:06] [PASSED] 32
[02:30:06] [PASSED] 256
[02:30:06] ================ [PASSED] test_range_spare =================
[02:30:06] ===================== [PASSED] guc_dbm =====================
[02:30:06] =================== guc_idm (6 subtests) ===================
[02:30:06] [PASSED] bad_init
[02:30:06] [PASSED] no_init
[02:30:06] [PASSED] init_fini
[02:30:06] [PASSED] check_used
[02:30:06] [PASSED] check_quota
[02:30:06] [PASSED] check_all
[02:30:06] ===================== [PASSED] guc_idm =====================
[02:30:06] ================== no_relay (3 subtests) ===================
[02:30:06] [PASSED] xe_drops_guc2pf_if_not_ready
[02:30:06] [PASSED] xe_drops_guc2vf_if_not_ready
[02:30:06] [PASSED] xe_rejects_send_if_not_ready
[02:30:06] ==================== [PASSED] no_relay =====================
[02:30:06] ================== pf_relay (14 subtests) ==================
[02:30:06] [PASSED] pf_rejects_guc2pf_too_short
[02:30:06] [PASSED] pf_rejects_guc2pf_too_long
[02:30:06] [PASSED] pf_rejects_guc2pf_no_payload
[02:30:06] [PASSED] pf_fails_no_payload
[02:30:06] [PASSED] pf_fails_bad_origin
[02:30:06] [PASSED] pf_fails_bad_type
[02:30:06] [PASSED] pf_txn_reports_error
[02:30:06] [PASSED] pf_txn_sends_pf2guc
[02:30:06] [PASSED] pf_sends_pf2guc
[02:30:06] [SKIPPED] pf_loopback_nop
[02:30:06] [SKIPPED] pf_loopback_echo
[02:30:06] [SKIPPED] pf_loopback_fail
[02:30:06] [SKIPPED] pf_loopback_busy
[02:30:06] [SKIPPED] pf_loopback_retry
[02:30:06] ==================== [PASSED] pf_relay =====================
[02:30:06] ================== vf_relay (3 subtests) ===================
[02:30:06] [PASSED] vf_rejects_guc2vf_too_short
[02:30:06] [PASSED] vf_rejects_guc2vf_too_long
[02:30:06] [PASSED] vf_rejects_guc2vf_no_payload
[02:30:06] ==================== [PASSED] vf_relay =====================
[02:30:06] ================ pf_gt_config (9 subtests) =================
[02:30:06] [PASSED] fair_contexts_1vf
[02:30:06] [PASSED] fair_doorbells_1vf
[02:30:06] [PASSED] fair_ggtt_1vf
[02:30:06] ====================== fair_vram_1vf ======================
[02:30:06] [PASSED] 3.50 GiB
[02:30:06] [PASSED] 11.5 GiB
[02:30:06] [PASSED] 15.5 GiB
[02:30:06] [PASSED] 31.5 GiB
[02:30:06] [PASSED] 63.5 GiB
[02:30:06] [PASSED] 1.91 GiB
[02:30:06] ================== [PASSED] fair_vram_1vf ==================
[02:30:06] ================ fair_vram_1vf_admin_only =================
[02:30:06] [PASSED] 3.50 GiB
[02:30:06] [PASSED] 11.5 GiB
[02:30:06] [PASSED] 15.5 GiB
[02:30:06] [PASSED] 31.5 GiB
[02:30:06] [PASSED] 63.5 GiB
[02:30:06] [PASSED] 1.91 GiB
[02:30:06] ============ [PASSED] fair_vram_1vf_admin_only =============
[02:30:06] ====================== fair_contexts ======================
[02:30:06] [PASSED] 1 VF
[02:30:06] [PASSED] 2 VFs
[02:30:06] [PASSED] 3 VFs
[02:30:06] [PASSED] 4 VFs
[02:30:06] [PASSED] 5 VFs
[02:30:06] [PASSED] 6 VFs
[02:30:06] [PASSED] 7 VFs
[02:30:06] [PASSED] 8 VFs
[02:30:06] [PASSED] 9 VFs
[02:30:06] [PASSED] 10 VFs
[02:30:06] [PASSED] 11 VFs
[02:30:06] [PASSED] 12 VFs
[02:30:06] [PASSED] 13 VFs
[02:30:06] [PASSED] 14 VFs
[02:30:06] [PASSED] 15 VFs
[02:30:06] [PASSED] 16 VFs
[02:30:06] [PASSED] 17 VFs
[02:30:06] [PASSED] 18 VFs
[02:30:06] [PASSED] 19 VFs
[02:30:06] [PASSED] 20 VFs
[02:30:06] [PASSED] 21 VFs
[02:30:06] [PASSED] 22 VFs
[02:30:06] [PASSED] 23 VFs
[02:30:06] [PASSED] 24 VFs
[02:30:06] [PASSED] 25 VFs
[02:30:06] [PASSED] 26 VFs
[02:30:06] [PASSED] 27 VFs
[02:30:06] [PASSED] 28 VFs
[02:30:06] [PASSED] 29 VFs
[02:30:06] [PASSED] 30 VFs
[02:30:06] [PASSED] 31 VFs
[02:30:06] [PASSED] 32 VFs
[02:30:06] [PASSED] 33 VFs
[02:30:06] [PASSED] 34 VFs
[02:30:06] [PASSED] 35 VFs
[02:30:06] [PASSED] 36 VFs
[02:30:06] [PASSED] 37 VFs
[02:30:06] [PASSED] 38 VFs
[02:30:06] [PASSED] 39 VFs
[02:30:06] [PASSED] 40 VFs
[02:30:06] [PASSED] 41 VFs
[02:30:06] [PASSED] 42 VFs
[02:30:06] [PASSED] 43 VFs
[02:30:06] [PASSED] 44 VFs
[02:30:06] [PASSED] 45 VFs
[02:30:06] [PASSED] 46 VFs
[02:30:06] [PASSED] 47 VFs
[02:30:06] [PASSED] 48 VFs
[02:30:06] [PASSED] 49 VFs
[02:30:06] [PASSED] 50 VFs
[02:30:06] [PASSED] 51 VFs
[02:30:06] [PASSED] 52 VFs
[02:30:06] [PASSED] 53 VFs
[02:30:06] [PASSED] 54 VFs
[02:30:06] [PASSED] 55 VFs
[02:30:06] [PASSED] 56 VFs
[02:30:06] [PASSED] 57 VFs
[02:30:06] [PASSED] 58 VFs
[02:30:06] [PASSED] 59 VFs
[02:30:06] [PASSED] 60 VFs
[02:30:06] [PASSED] 61 VFs
[02:30:06] [PASSED] 62 VFs
[02:30:06] [PASSED] 63 VFs
[02:30:06] ================== [PASSED] fair_contexts ==================
[02:30:06] ===================== fair_doorbells ======================
[02:30:06] [PASSED] 1 VF
[02:30:06] [PASSED] 2 VFs
[02:30:06] [PASSED] 3 VFs
[02:30:06] [PASSED] 4 VFs
[02:30:06] [PASSED] 5 VFs
[02:30:06] [PASSED] 6 VFs
[02:30:06] [PASSED] 7 VFs
[02:30:06] [PASSED] 8 VFs
[02:30:06] [PASSED] 9 VFs
[02:30:06] [PASSED] 10 VFs
[02:30:06] [PASSED] 11 VFs
[02:30:06] [PASSED] 12 VFs
[02:30:06] [PASSED] 13 VFs
[02:30:06] [PASSED] 14 VFs
[02:30:06] [PASSED] 15 VFs
[02:30:06] [PASSED] 16 VFs
[02:30:06] [PASSED] 17 VFs
[02:30:06] [PASSED] 18 VFs
[02:30:06] [PASSED] 19 VFs
[02:30:06] [PASSED] 20 VFs
[02:30:06] [PASSED] 21 VFs
[02:30:06] [PASSED] 22 VFs
[02:30:06] [PASSED] 23 VFs
[02:30:06] [PASSED] 24 VFs
[02:30:06] [PASSED] 25 VFs
[02:30:06] [PASSED] 26 VFs
[02:30:06] [PASSED] 27 VFs
[02:30:06] [PASSED] 28 VFs
[02:30:06] [PASSED] 29 VFs
[02:30:06] [PASSED] 30 VFs
[02:30:06] [PASSED] 31 VFs
[02:30:06] [PASSED] 32 VFs
[02:30:06] [PASSED] 33 VFs
[02:30:06] [PASSED] 34 VFs
[02:30:06] [PASSED] 35 VFs
[02:30:06] [PASSED] 36 VFs
[02:30:06] [PASSED] 37 VFs
[02:30:06] [PASSED] 38 VFs
[02:30:06] [PASSED] 39 VFs
[02:30:06] [PASSED] 40 VFs
[02:30:06] [PASSED] 41 VFs
[02:30:06] [PASSED] 42 VFs
[02:30:06] [PASSED] 43 VFs
[02:30:06] [PASSED] 44 VFs
[02:30:06] [PASSED] 45 VFs
[02:30:06] [PASSED] 46 VFs
[02:30:06] [PASSED] 47 VFs
[02:30:06] [PASSED] 48 VFs
[02:30:06] [PASSED] 49 VFs
[02:30:06] [PASSED] 50 VFs
[02:30:06] [PASSED] 51 VFs
[02:30:06] [PASSED] 52 VFs
[02:30:06] [PASSED] 53 VFs
[02:30:06] [PASSED] 54 VFs
[02:30:06] [PASSED] 55 VFs
[02:30:06] [PASSED] 56 VFs
[02:30:06] [PASSED] 57 VFs
[02:30:06] [PASSED] 58 VFs
[02:30:06] [PASSED] 59 VFs
[02:30:06] [PASSED] 60 VFs
[02:30:06] [PASSED] 61 VFs
[02:30:06] [PASSED] 62 VFs
[02:30:06] [PASSED] 63 VFs
[02:30:06] ================= [PASSED] fair_doorbells ==================
[02:30:06] ======================== fair_ggtt ========================
[02:30:06] [PASSED] 1 VF
[02:30:06] [PASSED] 2 VFs
[02:30:06] [PASSED] 3 VFs
[02:30:06] [PASSED] 4 VFs
[02:30:06] [PASSED] 5 VFs
[02:30:06] [PASSED] 6 VFs
[02:30:06] [PASSED] 7 VFs
[02:30:06] [PASSED] 8 VFs
[02:30:06] [PASSED] 9 VFs
[02:30:06] [PASSED] 10 VFs
[02:30:06] [PASSED] 11 VFs
[02:30:06] [PASSED] 12 VFs
[02:30:06] [PASSED] 13 VFs
[02:30:06] [PASSED] 14 VFs
[02:30:06] [PASSED] 15 VFs
[02:30:06] [PASSED] 16 VFs
[02:30:06] [PASSED] 17 VFs
[02:30:06] [PASSED] 18 VFs
[02:30:06] [PASSED] 19 VFs
[02:30:06] [PASSED] 20 VFs
[02:30:06] [PASSED] 21 VFs
[02:30:06] [PASSED] 22 VFs
[02:30:06] [PASSED] 23 VFs
[02:30:06] [PASSED] 24 VFs
[02:30:06] [PASSED] 25 VFs
[02:30:06] [PASSED] 26 VFs
[02:30:06] [PASSED] 27 VFs
[02:30:06] [PASSED] 28 VFs
[02:30:06] [PASSED] 29 VFs
[02:30:06] [PASSED] 30 VFs
[02:30:06] [PASSED] 31 VFs
[02:30:06] [PASSED] 32 VFs
[02:30:06] [PASSED] 33 VFs
[02:30:06] [PASSED] 34 VFs
[02:30:06] [PASSED] 35 VFs
[02:30:06] [PASSED] 36 VFs
[02:30:06] [PASSED] 37 VFs
[02:30:06] [PASSED] 38 VFs
[02:30:06] [PASSED] 39 VFs
[02:30:06] [PASSED] 40 VFs
[02:30:06] [PASSED] 41 VFs
[02:30:06] [PASSED] 42 VFs
[02:30:06] [PASSED] 43 VFs
[02:30:06] [PASSED] 44 VFs
[02:30:06] [PASSED] 45 VFs
[02:30:06] [PASSED] 46 VFs
[02:30:06] [PASSED] 47 VFs
[02:30:06] [PASSED] 48 VFs
[02:30:06] [PASSED] 49 VFs
[02:30:06] [PASSED] 50 VFs
[02:30:06] [PASSED] 51 VFs
[02:30:06] [PASSED] 52 VFs
[02:30:06] [PASSED] 53 VFs
[02:30:06] [PASSED] 54 VFs
[02:30:06] [PASSED] 55 VFs
[02:30:06] [PASSED] 56 VFs
[02:30:06] [PASSED] 57 VFs
[02:30:06] [PASSED] 58 VFs
[02:30:06] [PASSED] 59 VFs
[02:30:06] [PASSED] 60 VFs
[02:30:06] [PASSED] 61 VFs
[02:30:06] [PASSED] 62 VFs
[02:30:06] [PASSED] 63 VFs
[02:30:06] ==================== [PASSED] fair_ggtt ====================
[02:30:06] ======================== fair_vram ========================
[02:30:06] [PASSED] 1 VF
[02:30:06] [PASSED] 2 VFs
[02:30:06] [PASSED] 3 VFs
[02:30:06] [PASSED] 4 VFs
[02:30:06] [PASSED] 5 VFs
[02:30:06] [PASSED] 6 VFs
[02:30:06] [PASSED] 7 VFs
[02:30:06] [PASSED] 8 VFs
[02:30:06] [PASSED] 9 VFs
[02:30:06] [PASSED] 10 VFs
[02:30:06] [PASSED] 11 VFs
[02:30:06] [PASSED] 12 VFs
[02:30:06] [PASSED] 13 VFs
[02:30:06] [PASSED] 14 VFs
[02:30:06] [PASSED] 15 VFs
[02:30:06] [PASSED] 16 VFs
[02:30:06] [PASSED] 17 VFs
[02:30:06] [PASSED] 18 VFs
[02:30:06] [PASSED] 19 VFs
[02:30:06] [PASSED] 20 VFs
[02:30:06] [PASSED] 21 VFs
[02:30:06] [PASSED] 22 VFs
[02:30:06] [PASSED] 23 VFs
[02:30:06] [PASSED] 24 VFs
[02:30:06] [PASSED] 25 VFs
[02:30:06] [PASSED] 26 VFs
[02:30:06] [PASSED] 27 VFs
[02:30:06] [PASSED] 28 VFs
[02:30:06] [PASSED] 29 VFs
[02:30:06] [PASSED] 30 VFs
[02:30:06] [PASSED] 31 VFs
[02:30:06] [PASSED] 32 VFs
[02:30:06] [PASSED] 33 VFs
[02:30:06] [PASSED] 34 VFs
[02:30:06] [PASSED] 35 VFs
[02:30:06] [PASSED] 36 VFs
[02:30:06] [PASSED] 37 VFs
[02:30:06] [PASSED] 38 VFs
[02:30:06] [PASSED] 39 VFs
[02:30:06] [PASSED] 40 VFs
[02:30:06] [PASSED] 41 VFs
[02:30:06] [PASSED] 42 VFs
[02:30:06] [PASSED] 43 VFs
[02:30:06] [PASSED] 44 VFs
[02:30:06] [PASSED] 45 VFs
[02:30:06] [PASSED] 46 VFs
[02:30:06] [PASSED] 47 VFs
[02:30:06] [PASSED] 48 VFs
[02:30:06] [PASSED] 49 VFs
[02:30:06] [PASSED] 50 VFs
[02:30:06] [PASSED] 51 VFs
[02:30:06] [PASSED] 52 VFs
[02:30:06] [PASSED] 53 VFs
[02:30:06] [PASSED] 54 VFs
[02:30:06] [PASSED] 55 VFs
[02:30:06] [PASSED] 56 VFs
[02:30:06] [PASSED] 57 VFs
[02:30:06] [PASSED] 58 VFs
[02:30:06] [PASSED] 59 VFs
[02:30:06] [PASSED] 60 VFs
[02:30:06] [PASSED] 61 VFs
[02:30:06] [PASSED] 62 VFs
[02:30:06] [PASSED] 63 VFs
[02:30:06] ==================== [PASSED] fair_vram ====================
[02:30:06] ================== [PASSED] pf_gt_config ===================
[02:30:06] ===================== lmtt (1 subtest) =====================
[02:30:06] ======================== test_ops =========================
[02:30:06] [PASSED] 2-level
[02:30:06] [PASSED] multi-level
[02:30:06] ==================== [PASSED] test_ops =====================
[02:30:06] ====================== [PASSED] lmtt =======================
[02:30:06] ================= pf_service (11 subtests) =================
[02:30:06] [PASSED] pf_negotiate_any
[02:30:06] [PASSED] pf_negotiate_base_match
[02:30:06] [PASSED] pf_negotiate_base_newer
[02:30:06] [PASSED] pf_negotiate_base_next
[02:30:06] [SKIPPED] pf_negotiate_base_older
[02:30:06] [PASSED] pf_negotiate_base_prev
[02:30:06] [PASSED] pf_negotiate_latest_match
[02:30:06] [PASSED] pf_negotiate_latest_newer
[02:30:06] [PASSED] pf_negotiate_latest_next
[02:30:06] [SKIPPED] pf_negotiate_latest_older
[02:30:06] [SKIPPED] pf_negotiate_latest_prev
[02:30:06] =================== [PASSED] pf_service ====================
[02:30:06] ================= xe_guc_g2g (2 subtests) ==================
[02:30:06] ============== xe_live_guc_g2g_kunit_default ==============
[02:30:06] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[02:30:06] ============== xe_live_guc_g2g_kunit_allmem ===============
[02:30:06] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[02:30:06] =================== [SKIPPED] xe_guc_g2g ===================
[02:30:06] =================== xe_mocs (2 subtests) ===================
[02:30:06] ================ xe_live_mocs_kernel_kunit ================
[02:30:06] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[02:30:06] ================ xe_live_mocs_reset_kunit =================
[02:30:06] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[02:30:06] ==================== [SKIPPED] xe_mocs =====================
[02:30:06] ================= xe_migrate (2 subtests) ==================
[02:30:06] ================= xe_migrate_sanity_kunit =================
[02:30:06] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[02:30:06] ================== xe_validate_ccs_kunit ==================
[02:30:06] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[02:30:06] =================== [SKIPPED] xe_migrate ===================
[02:30:06] ================== xe_dma_buf (1 subtest) ==================
[02:30:06] ==================== xe_dma_buf_kunit =====================
[02:30:06] ================ [SKIPPED] xe_dma_buf_kunit ================
[02:30:06] =================== [SKIPPED] xe_dma_buf ===================
[02:30:06] ================= xe_bo_shrink (1 subtest) =================
[02:30:06] =================== xe_bo_shrink_kunit ====================
[02:30:06] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[02:30:06] ================== [SKIPPED] xe_bo_shrink ==================
[02:30:06] ==================== xe_bo (2 subtests) ====================
[02:30:06] ================== xe_ccs_migrate_kunit ===================
[02:30:06] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[02:30:06] ==================== xe_bo_evict_kunit ====================
[02:30:06] =============== [SKIPPED] xe_bo_evict_kunit ================
[02:30:06] ===================== [SKIPPED] xe_bo ======================
[02:30:06] ==================== args (13 subtests) ====================
[02:30:06] [PASSED] count_args_test
[02:30:06] [PASSED] call_args_example
[02:30:06] [PASSED] call_args_test
[02:30:06] [PASSED] drop_first_arg_example
[02:30:06] [PASSED] drop_first_arg_test
[02:30:06] [PASSED] first_arg_example
[02:30:06] [PASSED] first_arg_test
[02:30:06] [PASSED] last_arg_example
[02:30:06] [PASSED] last_arg_test
[02:30:06] [PASSED] pick_arg_example
[02:30:06] [PASSED] if_args_example
[02:30:06] [PASSED] if_args_test
[02:30:06] [PASSED] sep_comma_example
[02:30:06] ====================== [PASSED] args =======================
[02:30:06] =================== xe_pci (3 subtests) ====================
[02:30:06] ==================== check_graphics_ip ====================
[02:30:06] [PASSED] 12.00 Xe_LP
[02:30:06] [PASSED] 12.10 Xe_LP+
[02:30:06] [PASSED] 12.55 Xe_HPG
[02:30:06] [PASSED] 12.60 Xe_HPC
[02:30:06] [PASSED] 12.70 Xe_LPG
[02:30:06] [PASSED] 12.71 Xe_LPG
[02:30:06] [PASSED] 12.74 Xe_LPG+
[02:30:06] [PASSED] 20.01 Xe2_HPG
[02:30:06] [PASSED] 20.02 Xe2_HPG
[02:30:06] [PASSED] 20.04 Xe2_LPG
[02:30:06] [PASSED] 30.00 Xe3_LPG
[02:30:06] [PASSED] 30.01 Xe3_LPG
[02:30:06] [PASSED] 30.03 Xe3_LPG
[02:30:06] [PASSED] 30.04 Xe3_LPG
[02:30:06] [PASSED] 30.05 Xe3_LPG
[02:30:06] [PASSED] 35.10 Xe3p_LPG
[02:30:06] [PASSED] 35.11 Xe3p_XPC
[02:30:06] ================ [PASSED] check_graphics_ip ================
[02:30:06] ===================== check_media_ip ======================
[02:30:06] [PASSED] 12.00 Xe_M
[02:30:06] [PASSED] 12.55 Xe_HPM
[02:30:06] [PASSED] 13.00 Xe_LPM+
[02:30:06] [PASSED] 13.01 Xe2_HPM
[02:30:06] [PASSED] 20.00 Xe2_LPM
[02:30:06] [PASSED] 30.00 Xe3_LPM
[02:30:06] [PASSED] 30.02 Xe3_LPM
[02:30:06] [PASSED] 35.00 Xe3p_LPM
[02:30:06] [PASSED] 35.03 Xe3p_HPM
[02:30:06] ================= [PASSED] check_media_ip ==================
[02:30:06] =================== check_platform_desc ===================
[02:30:06] [PASSED] 0x9A60 (TIGERLAKE)
[02:30:06] [PASSED] 0x9A68 (TIGERLAKE)
[02:30:06] [PASSED] 0x9A70 (TIGERLAKE)
[02:30:06] [PASSED] 0x9A40 (TIGERLAKE)
[02:30:06] [PASSED] 0x9A49 (TIGERLAKE)
[02:30:06] [PASSED] 0x9A59 (TIGERLAKE)
[02:30:06] [PASSED] 0x9A78 (TIGERLAKE)
[02:30:06] [PASSED] 0x9AC0 (TIGERLAKE)
[02:30:06] [PASSED] 0x9AC9 (TIGERLAKE)
[02:30:06] [PASSED] 0x9AD9 (TIGERLAKE)
[02:30:06] [PASSED] 0x9AF8 (TIGERLAKE)
[02:30:06] [PASSED] 0x4C80 (ROCKETLAKE)
[02:30:06] [PASSED] 0x4C8A (ROCKETLAKE)
[02:30:06] [PASSED] 0x4C8B (ROCKETLAKE)
[02:30:06] [PASSED] 0x4C8C (ROCKETLAKE)
[02:30:06] [PASSED] 0x4C90 (ROCKETLAKE)
[02:30:06] [PASSED] 0x4C9A (ROCKETLAKE)
[02:30:06] [PASSED] 0x4680 (ALDERLAKE_S)
[02:30:06] [PASSED] 0x4682 (ALDERLAKE_S)
[02:30:06] [PASSED] 0x4688 (ALDERLAKE_S)
[02:30:06] [PASSED] 0x468A (ALDERLAKE_S)
[02:30:06] [PASSED] 0x468B (ALDERLAKE_S)
[02:30:06] [PASSED] 0x4690 (ALDERLAKE_S)
[02:30:06] [PASSED] 0x4692 (ALDERLAKE_S)
[02:30:06] [PASSED] 0x4693 (ALDERLAKE_S)
[02:30:06] [PASSED] 0x46A0 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46A1 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46A2 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46A3 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46A6 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46A8 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46AA (ALDERLAKE_P)
[02:30:06] [PASSED] 0x462A (ALDERLAKE_P)
[02:30:06] [PASSED] 0x4626 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x4628 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46B0 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46B1 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46B2 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46B3 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46C0 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46C1 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46C2 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46C3 (ALDERLAKE_P)
[02:30:06] [PASSED] 0x46D0 (ALDERLAKE_N)
[02:30:06] [PASSED] 0x46D1 (ALDERLAKE_N)
[02:30:06] [PASSED] 0x46D2 (ALDERLAKE_N)
[02:30:06] [PASSED] 0x46D3 (ALDERLAKE_N)
[02:30:06] [PASSED] 0x46D4 (ALDERLAKE_N)
[02:30:06] [PASSED] 0xA721 (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7A1 (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7A9 (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7AC (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7AD (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA720 (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7A0 (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7A8 (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7AA (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA7AB (ALDERLAKE_P)
[02:30:06] [PASSED] 0xA780 (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA781 (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA782 (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA783 (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA788 (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA789 (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA78A (ALDERLAKE_S)
[02:30:06] [PASSED] 0xA78B (ALDERLAKE_S)
[02:30:06] [PASSED] 0x4905 (DG1)
[02:30:06] [PASSED] 0x4906 (DG1)
[02:30:06] [PASSED] 0x4907 (DG1)
[02:30:06] [PASSED] 0x4908 (DG1)
[02:30:06] [PASSED] 0x4909 (DG1)
[02:30:06] [PASSED] 0x56C0 (DG2)
[02:30:06] [PASSED] 0x56C2 (DG2)
[02:30:06] [PASSED] 0x56C1 (DG2)
[02:30:06] [PASSED] 0x7D51 (METEORLAKE)
[02:30:06] [PASSED] 0x7DD1 (METEORLAKE)
[02:30:06] [PASSED] 0x7D41 (METEORLAKE)
[02:30:06] [PASSED] 0x7D67 (METEORLAKE)
[02:30:06] [PASSED] 0xB640 (METEORLAKE)
[02:30:06] [PASSED] 0x56A0 (DG2)
[02:30:06] [PASSED] 0x56A1 (DG2)
[02:30:06] [PASSED] 0x56A2 (DG2)
[02:30:06] [PASSED] 0x56BE (DG2)
[02:30:06] [PASSED] 0x56BF (DG2)
[02:30:06] [PASSED] 0x5690 (DG2)
[02:30:06] [PASSED] 0x5691 (DG2)
[02:30:06] [PASSED] 0x5692 (DG2)
[02:30:06] [PASSED] 0x56A5 (DG2)
[02:30:06] [PASSED] 0x56A6 (DG2)
[02:30:06] [PASSED] 0x56B0 (DG2)
[02:30:06] [PASSED] 0x56B1 (DG2)
[02:30:06] [PASSED] 0x56BA (DG2)
[02:30:06] [PASSED] 0x56BB (DG2)
[02:30:06] [PASSED] 0x56BC (DG2)
[02:30:06] [PASSED] 0x56BD (DG2)
[02:30:06] [PASSED] 0x5693 (DG2)
[02:30:06] [PASSED] 0x5694 (DG2)
[02:30:06] [PASSED] 0x5695 (DG2)
[02:30:06] [PASSED] 0x56A3 (DG2)
[02:30:06] [PASSED] 0x56A4 (DG2)
[02:30:06] [PASSED] 0x56B2 (DG2)
[02:30:06] [PASSED] 0x56B3 (DG2)
[02:30:06] [PASSED] 0x5696 (DG2)
[02:30:06] [PASSED] 0x5697 (DG2)
[02:30:06] [PASSED] 0xB69 (PVC)
[02:30:06] [PASSED] 0xB6E (PVC)
[02:30:06] [PASSED] 0xBD4 (PVC)
[02:30:06] [PASSED] 0xBD5 (PVC)
[02:30:06] [PASSED] 0xBD6 (PVC)
[02:30:06] [PASSED] 0xBD7 (PVC)
[02:30:06] [PASSED] 0xBD8 (PVC)
[02:30:06] [PASSED] 0xBD9 (PVC)
[02:30:06] [PASSED] 0xBDA (PVC)
[02:30:06] [PASSED] 0xBDB (PVC)
[02:30:06] [PASSED] 0xBE0 (PVC)
[02:30:06] [PASSED] 0xBE1 (PVC)
[02:30:06] [PASSED] 0xBE5 (PVC)
[02:30:06] [PASSED] 0x7D40 (METEORLAKE)
[02:30:06] [PASSED] 0x7D45 (METEORLAKE)
[02:30:06] [PASSED] 0x7D55 (METEORLAKE)
[02:30:06] [PASSED] 0x7D60 (METEORLAKE)
[02:30:06] [PASSED] 0x7DD5 (METEORLAKE)
[02:30:06] [PASSED] 0x6420 (LUNARLAKE)
[02:30:06] [PASSED] 0x64A0 (LUNARLAKE)
[02:30:06] [PASSED] 0x64B0 (LUNARLAKE)
[02:30:06] [PASSED] 0xE202 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE209 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE20B (BATTLEMAGE)
[02:30:06] [PASSED] 0xE20C (BATTLEMAGE)
[02:30:06] [PASSED] 0xE20D (BATTLEMAGE)
[02:30:06] [PASSED] 0xE210 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE211 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE212 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE216 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE220 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE221 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE222 (BATTLEMAGE)
[02:30:06] [PASSED] 0xE223 (BATTLEMAGE)
[02:30:06] [PASSED] 0xB080 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB081 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB082 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB083 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB084 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB085 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB086 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB087 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB08F (PANTHERLAKE)
[02:30:06] [PASSED] 0xB090 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB0A0 (PANTHERLAKE)
[02:30:06] [PASSED] 0xB0B0 (PANTHERLAKE)
[02:30:06] [PASSED] 0xFD80 (PANTHERLAKE)
[02:30:06] [PASSED] 0xFD81 (PANTHERLAKE)
[02:30:06] [PASSED] 0xD740 (NOVALAKE_S)
[02:30:06] [PASSED] 0xD741 (NOVALAKE_S)
[02:30:06] [PASSED] 0xD742 (NOVALAKE_S)
[02:30:06] [PASSED] 0xD743 (NOVALAKE_S)
[02:30:06] [PASSED] 0xD744 (NOVALAKE_S)
[02:30:06] [PASSED] 0xD745 (NOVALAKE_S)
[02:30:06] [PASSED] 0x674C (CRESCENTISLAND)
[02:30:06] [PASSED] 0xD750 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD751 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD752 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD753 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD754 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD755 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD756 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD757 (NOVALAKE_P)
[02:30:06] [PASSED] 0xD75F (NOVALAKE_P)
[02:30:06] =============== [PASSED] check_platform_desc ===============
[02:30:06] ===================== [PASSED] xe_pci ======================
[02:30:06] =================== xe_rtp (2 subtests) ====================
[02:30:06] =============== xe_rtp_process_to_sr_tests ================
[02:30:06] [PASSED] coalesce-same-reg
[02:30:06] [PASSED] no-match-no-add
[02:30:06] [PASSED] match-or
[02:30:06] [PASSED] match-or-xfail
[02:30:06] [PASSED] no-match-no-add-multiple-rules
[02:30:06] [PASSED] two-regs-two-entries
[02:30:06] [PASSED] clr-one-set-other
[02:30:06] [PASSED] set-field
[02:30:06] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[02:30:06] [PASSED] conflict-not-disjoint
[02:30:06] [PASSED] conflict-reg-type
[02:30:06] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[02:30:06] ================== xe_rtp_process_tests ===================
[02:30:06] [PASSED] active1
[02:30:06] [PASSED] active2
[02:30:06] [PASSED] active-inactive
[02:30:06] [PASSED] inactive-active
[02:30:06] [PASSED] inactive-1st_or_active-inactive
[02:30:06] [PASSED] inactive-2nd_or_active-inactive
[02:30:06] [PASSED] inactive-last_or_active-inactive
[02:30:06] [PASSED] inactive-no_or_active-inactive
[02:30:06] ============== [PASSED] xe_rtp_process_tests ===============
[02:30:06] ===================== [PASSED] xe_rtp ======================
[02:30:06] ==================== xe_wa (1 subtest) =====================
[02:30:06] ======================== xe_wa_gt =========================
[02:30:06] [PASSED] TIGERLAKE B0
[02:30:06] [PASSED] DG1 A0
[02:30:06] [PASSED] DG1 B0
[02:30:06] [PASSED] ALDERLAKE_S A0
[02:30:06] [PASSED] ALDERLAKE_S B0
[02:30:06] [PASSED] ALDERLAKE_S C0
[02:30:06] [PASSED] ALDERLAKE_S D0
[02:30:06] [PASSED] ALDERLAKE_P A0
[02:30:06] [PASSED] ALDERLAKE_P B0
[02:30:06] [PASSED] ALDERLAKE_P C0
[02:30:06] [PASSED] ALDERLAKE_S RPLS D0
[02:30:06] [PASSED] ALDERLAKE_P RPLU E0
[02:30:06] [PASSED] DG2 G10 C0
[02:30:06] [PASSED] DG2 G11 B1
[02:30:06] [PASSED] DG2 G12 A1
[02:30:06] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[02:30:06] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[02:30:06] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[02:30:06] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[02:30:06] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[02:30:06] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[02:30:06] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[02:30:06] ==================== [PASSED] xe_wa_gt =====================
[02:30:06] ====================== [PASSED] xe_wa ======================
[02:30:06] ============================================================
[02:30:06] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[02:30:06] Elapsed time: 36.208s total, 4.251s configuring, 31.340s building, 0.606s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[02:30:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:30:08] 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
[02:30:32] Starting KUnit Kernel (1/1)...
[02:30:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:30:33] ============ drm_test_pick_cmdline (2 subtests) ============
[02:30:33] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[02:30:33] =============== drm_test_pick_cmdline_named ===============
[02:30:33] [PASSED] NTSC
[02:30:33] [PASSED] NTSC-J
[02:30:33] [PASSED] PAL
[02:30:33] [PASSED] PAL-M
[02:30:33] =========== [PASSED] drm_test_pick_cmdline_named ===========
[02:30:33] ============== [PASSED] drm_test_pick_cmdline ==============
[02:30:33] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[02:30:33] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[02:30:33] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[02:30:33] =========== drm_validate_clone_mode (2 subtests) ===========
[02:30:33] ============== drm_test_check_in_clone_mode ===============
[02:30:33] [PASSED] in_clone_mode
[02:30:33] [PASSED] not_in_clone_mode
[02:30:33] ========== [PASSED] drm_test_check_in_clone_mode ===========
[02:30:33] =============== drm_test_check_valid_clones ===============
[02:30:33] [PASSED] not_in_clone_mode
[02:30:33] [PASSED] valid_clone
[02:30:33] [PASSED] invalid_clone
[02:30:33] =========== [PASSED] drm_test_check_valid_clones ===========
[02:30:33] ============= [PASSED] drm_validate_clone_mode =============
[02:30:33] ============= drm_validate_modeset (1 subtest) =============
[02:30:33] [PASSED] drm_test_check_connector_changed_modeset
[02:30:33] ============== [PASSED] drm_validate_modeset ===============
[02:30:33] ====== drm_test_bridge_get_current_state (2 subtests) ======
[02:30:33] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[02:30:33] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[02:30:33] ======== [PASSED] drm_test_bridge_get_current_state ========
[02:30:33] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[02:30:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[02:30:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[02:30:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[02:30:33] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[02:30:33] ============== drm_bridge_alloc (2 subtests) ===============
[02:30:33] [PASSED] drm_test_drm_bridge_alloc_basic
[02:30:33] [PASSED] drm_test_drm_bridge_alloc_get_put
[02:30:33] ================ [PASSED] drm_bridge_alloc =================
[02:30:33] ============= drm_cmdline_parser (40 subtests) =============
[02:30:33] [PASSED] drm_test_cmdline_force_d_only
[02:30:33] [PASSED] drm_test_cmdline_force_D_only_dvi
[02:30:33] [PASSED] drm_test_cmdline_force_D_only_hdmi
[02:30:33] [PASSED] drm_test_cmdline_force_D_only_not_digital
[02:30:33] [PASSED] drm_test_cmdline_force_e_only
[02:30:33] [PASSED] drm_test_cmdline_res
[02:30:33] [PASSED] drm_test_cmdline_res_vesa
[02:30:33] [PASSED] drm_test_cmdline_res_vesa_rblank
[02:30:33] [PASSED] drm_test_cmdline_res_rblank
[02:30:33] [PASSED] drm_test_cmdline_res_bpp
[02:30:33] [PASSED] drm_test_cmdline_res_refresh
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[02:30:33] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[02:30:33] [PASSED] drm_test_cmdline_res_margins_force_on
[02:30:33] [PASSED] drm_test_cmdline_res_vesa_margins
[02:30:33] [PASSED] drm_test_cmdline_name
[02:30:33] [PASSED] drm_test_cmdline_name_bpp
[02:30:33] [PASSED] drm_test_cmdline_name_option
[02:30:33] [PASSED] drm_test_cmdline_name_bpp_option
[02:30:33] [PASSED] drm_test_cmdline_rotate_0
[02:30:33] [PASSED] drm_test_cmdline_rotate_90
[02:30:33] [PASSED] drm_test_cmdline_rotate_180
[02:30:33] [PASSED] drm_test_cmdline_rotate_270
[02:30:33] [PASSED] drm_test_cmdline_hmirror
[02:30:33] [PASSED] drm_test_cmdline_vmirror
[02:30:33] [PASSED] drm_test_cmdline_margin_options
[02:30:33] [PASSED] drm_test_cmdline_multiple_options
[02:30:33] [PASSED] drm_test_cmdline_bpp_extra_and_option
[02:30:33] [PASSED] drm_test_cmdline_extra_and_option
[02:30:33] [PASSED] drm_test_cmdline_freestanding_options
[02:30:33] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[02:30:33] [PASSED] drm_test_cmdline_panel_orientation
[02:30:33] ================ drm_test_cmdline_invalid =================
[02:30:33] [PASSED] margin_only
[02:30:33] [PASSED] interlace_only
[02:30:33] [PASSED] res_missing_x
[02:30:33] [PASSED] res_missing_y
[02:30:33] [PASSED] res_bad_y
[02:30:33] [PASSED] res_missing_y_bpp
[02:30:33] [PASSED] res_bad_bpp
[02:30:33] [PASSED] res_bad_refresh
[02:30:33] [PASSED] res_bpp_refresh_force_on_off
[02:30:33] [PASSED] res_invalid_mode
[02:30:33] [PASSED] res_bpp_wrong_place_mode
[02:30:33] [PASSED] name_bpp_refresh
[02:30:33] [PASSED] name_refresh
[02:30:33] [PASSED] name_refresh_wrong_mode
[02:30:33] [PASSED] name_refresh_invalid_mode
[02:30:33] [PASSED] rotate_multiple
[02:30:33] [PASSED] rotate_invalid_val
[02:30:33] [PASSED] rotate_truncated
[02:30:33] [PASSED] invalid_option
[02:30:33] [PASSED] invalid_tv_option
[02:30:33] [PASSED] truncated_tv_option
[02:30:33] ============ [PASSED] drm_test_cmdline_invalid =============
[02:30:33] =============== drm_test_cmdline_tv_options ===============
[02:30:33] [PASSED] NTSC
[02:30:33] [PASSED] NTSC_443
[02:30:33] [PASSED] NTSC_J
[02:30:33] [PASSED] PAL
[02:30:33] [PASSED] PAL_M
[02:30:33] [PASSED] PAL_N
[02:30:33] [PASSED] SECAM
[02:30:33] [PASSED] MONO_525
[02:30:33] [PASSED] MONO_625
[02:30:33] =========== [PASSED] drm_test_cmdline_tv_options ===========
[02:30:33] =============== [PASSED] drm_cmdline_parser ================
[02:30:33] ========== drmm_connector_hdmi_init (20 subtests) ==========
[02:30:33] [PASSED] drm_test_connector_hdmi_init_valid
[02:30:33] [PASSED] drm_test_connector_hdmi_init_bpc_8
[02:30:33] [PASSED] drm_test_connector_hdmi_init_bpc_10
[02:30:33] [PASSED] drm_test_connector_hdmi_init_bpc_12
[02:30:33] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[02:30:33] [PASSED] drm_test_connector_hdmi_init_bpc_null
[02:30:33] [PASSED] drm_test_connector_hdmi_init_formats_empty
[02:30:33] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[02:30:33] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[02:30:33] [PASSED] supported_formats=0x9 yuv420_allowed=1
[02:30:33] [PASSED] supported_formats=0x9 yuv420_allowed=0
[02:30:33] [PASSED] supported_formats=0x5 yuv420_allowed=1
[02:30:33] [PASSED] supported_formats=0x5 yuv420_allowed=0
[02:30:33] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[02:30:33] [PASSED] drm_test_connector_hdmi_init_null_ddc
[02:30:33] [PASSED] drm_test_connector_hdmi_init_null_product
[02:30:33] [PASSED] drm_test_connector_hdmi_init_null_vendor
[02:30:33] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[02:30:33] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[02:30:33] [PASSED] drm_test_connector_hdmi_init_product_valid
[02:30:33] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[02:30:33] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[02:30:33] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[02:30:33] ========= drm_test_connector_hdmi_init_type_valid =========
[02:30:33] [PASSED] HDMI-A
[02:30:33] [PASSED] HDMI-B
[02:30:33] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[02:30:33] ======== drm_test_connector_hdmi_init_type_invalid ========
[02:30:33] [PASSED] Unknown
[02:30:33] [PASSED] VGA
[02:30:33] [PASSED] DVI-I
[02:30:33] [PASSED] DVI-D
[02:30:33] [PASSED] DVI-A
[02:30:33] [PASSED] Composite
[02:30:33] [PASSED] SVIDEO
[02:30:33] [PASSED] LVDS
[02:30:33] [PASSED] Component
[02:30:33] [PASSED] DIN
[02:30:33] [PASSED] DP
[02:30:33] [PASSED] TV
[02:30:33] [PASSED] eDP
[02:30:33] [PASSED] Virtual
[02:30:33] [PASSED] DSI
[02:30:33] [PASSED] DPI
[02:30:33] [PASSED] Writeback
[02:30:33] [PASSED] SPI
[02:30:33] [PASSED] USB
[02:30:33] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[02:30:33] ============ [PASSED] drmm_connector_hdmi_init =============
[02:30:33] ============= drmm_connector_init (3 subtests) =============
[02:30:33] [PASSED] drm_test_drmm_connector_init
[02:30:33] [PASSED] drm_test_drmm_connector_init_null_ddc
[02:30:33] ========= drm_test_drmm_connector_init_type_valid =========
[02:30:33] [PASSED] Unknown
[02:30:33] [PASSED] VGA
[02:30:33] [PASSED] DVI-I
[02:30:33] [PASSED] DVI-D
[02:30:33] [PASSED] DVI-A
[02:30:33] [PASSED] Composite
[02:30:33] [PASSED] SVIDEO
[02:30:33] [PASSED] LVDS
[02:30:33] [PASSED] Component
[02:30:33] [PASSED] DIN
[02:30:33] [PASSED] DP
[02:30:33] [PASSED] HDMI-A
[02:30:33] [PASSED] HDMI-B
[02:30:33] [PASSED] TV
[02:30:33] [PASSED] eDP
[02:30:33] [PASSED] Virtual
[02:30:33] [PASSED] DSI
[02:30:33] [PASSED] DPI
[02:30:33] [PASSED] Writeback
[02:30:33] [PASSED] SPI
[02:30:33] [PASSED] USB
[02:30:33] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[02:30:33] =============== [PASSED] drmm_connector_init ===============
[02:30:33] ========= drm_connector_dynamic_init (6 subtests) ==========
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_init
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_init_properties
[02:30:33] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[02:30:33] [PASSED] Unknown
[02:30:33] [PASSED] VGA
[02:30:33] [PASSED] DVI-I
[02:30:33] [PASSED] DVI-D
[02:30:33] [PASSED] DVI-A
[02:30:33] [PASSED] Composite
[02:30:33] [PASSED] SVIDEO
[02:30:33] [PASSED] LVDS
[02:30:33] [PASSED] Component
[02:30:33] [PASSED] DIN
[02:30:33] [PASSED] DP
[02:30:33] [PASSED] HDMI-A
[02:30:33] [PASSED] HDMI-B
[02:30:33] [PASSED] TV
[02:30:33] [PASSED] eDP
[02:30:33] [PASSED] Virtual
[02:30:33] [PASSED] DSI
[02:30:33] [PASSED] DPI
[02:30:33] [PASSED] Writeback
[02:30:33] [PASSED] SPI
[02:30:33] [PASSED] USB
[02:30:33] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[02:30:33] ======== drm_test_drm_connector_dynamic_init_name =========
[02:30:33] [PASSED] Unknown
[02:30:33] [PASSED] VGA
[02:30:33] [PASSED] DVI-I
[02:30:33] [PASSED] DVI-D
[02:30:33] [PASSED] DVI-A
[02:30:33] [PASSED] Composite
[02:30:33] [PASSED] SVIDEO
[02:30:33] [PASSED] LVDS
[02:30:33] [PASSED] Component
[02:30:33] [PASSED] DIN
[02:30:33] [PASSED] DP
[02:30:33] [PASSED] HDMI-A
[02:30:33] [PASSED] HDMI-B
[02:30:33] [PASSED] TV
[02:30:33] [PASSED] eDP
[02:30:33] [PASSED] Virtual
[02:30:33] [PASSED] DSI
[02:30:33] [PASSED] DPI
[02:30:33] [PASSED] Writeback
[02:30:33] [PASSED] SPI
[02:30:33] [PASSED] USB
[02:30:33] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[02:30:33] =========== [PASSED] drm_connector_dynamic_init ============
[02:30:33] ==== drm_connector_dynamic_register_early (4 subtests) =====
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[02:30:33] ====== [PASSED] drm_connector_dynamic_register_early =======
[02:30:33] ======= drm_connector_dynamic_register (7 subtests) ========
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[02:30:33] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[02:30:33] ========= [PASSED] drm_connector_dynamic_register ==========
[02:30:33] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[02:30:33] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[02:30:33] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[02:30:33] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[02:30:33] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[02:30:33] ========== drm_test_get_tv_mode_from_name_valid ===========
[02:30:33] [PASSED] NTSC
[02:30:33] [PASSED] NTSC-443
[02:30:33] [PASSED] NTSC-J
[02:30:33] [PASSED] PAL
[02:30:33] [PASSED] PAL-M
[02:30:33] [PASSED] PAL-N
[02:30:33] [PASSED] SECAM
[02:30:33] [PASSED] Mono
[02:30:33] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[02:30:33] [PASSED] drm_test_get_tv_mode_from_name_truncated
[02:30:33] ============ [PASSED] drm_get_tv_mode_from_name ============
[02:30:33] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[02:30:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[02:30:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[02:30:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[02:30:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[02:30:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[02:30:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[02:30:33] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[02:30:33] [PASSED] VIC 96
[02:30:33] [PASSED] VIC 97
[02:30:33] [PASSED] VIC 101
[02:30:33] [PASSED] VIC 102
[02:30:33] [PASSED] VIC 106
[02:30:33] [PASSED] VIC 107
[02:30:33] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[02:30:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[02:30:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[02:30:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[02:30:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[02:30:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[02:30:33] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[02:30:33] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[02:30:33] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[02:30:33] [PASSED] Automatic
[02:30:33] [PASSED] Full
[02:30:33] [PASSED] Limited 16:235
[02:30:33] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[02:30:33] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[02:30:33] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[02:30:33] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[02:30:33] === drm_test_drm_hdmi_connector_get_output_format_name ====
[02:30:33] [PASSED] RGB
[02:30:33] [PASSED] YUV 4:2:0
[02:30:33] [PASSED] YUV 4:2:2
[02:30:33] [PASSED] YUV 4:4:4
[02:30:33] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[02:30:33] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[02:30:33] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[02:30:33] ============= drm_damage_helper (21 subtests) ==============
[02:30:33] [PASSED] drm_test_damage_iter_no_damage
[02:30:33] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[02:30:33] [PASSED] drm_test_damage_iter_no_damage_src_moved
[02:30:33] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[02:30:33] [PASSED] drm_test_damage_iter_no_damage_not_visible
[02:30:33] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[02:30:33] [PASSED] drm_test_damage_iter_no_damage_no_fb
[02:30:33] [PASSED] drm_test_damage_iter_simple_damage
[02:30:33] [PASSED] drm_test_damage_iter_single_damage
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_outside_src
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_src_moved
[02:30:33] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[02:30:33] [PASSED] drm_test_damage_iter_damage
[02:30:33] [PASSED] drm_test_damage_iter_damage_one_intersect
[02:30:33] [PASSED] drm_test_damage_iter_damage_one_outside
[02:30:33] [PASSED] drm_test_damage_iter_damage_src_moved
[02:30:33] [PASSED] drm_test_damage_iter_damage_not_visible
[02:30:33] ================ [PASSED] drm_damage_helper ================
[02:30:33] ============== drm_dp_mst_helper (3 subtests) ==============
[02:30:33] ============== drm_test_dp_mst_calc_pbn_mode ==============
[02:30:33] [PASSED] Clock 154000 BPP 30 DSC disabled
[02:30:33] [PASSED] Clock 234000 BPP 30 DSC disabled
[02:30:33] [PASSED] Clock 297000 BPP 24 DSC disabled
[02:30:33] [PASSED] Clock 332880 BPP 24 DSC enabled
[02:30:33] [PASSED] Clock 324540 BPP 24 DSC enabled
[02:30:33] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[02:30:33] ============== drm_test_dp_mst_calc_pbn_div ===============
[02:30:33] [PASSED] Link rate 2000000 lane count 4
[02:30:33] [PASSED] Link rate 2000000 lane count 2
[02:30:33] [PASSED] Link rate 2000000 lane count 1
[02:30:33] [PASSED] Link rate 1350000 lane count 4
[02:30:33] [PASSED] Link rate 1350000 lane count 2
[02:30:33] [PASSED] Link rate 1350000 lane count 1
[02:30:33] [PASSED] Link rate 1000000 lane count 4
[02:30:33] [PASSED] Link rate 1000000 lane count 2
[02:30:33] [PASSED] Link rate 1000000 lane count 1
[02:30:33] [PASSED] Link rate 810000 lane count 4
[02:30:33] [PASSED] Link rate 810000 lane count 2
[02:30:33] [PASSED] Link rate 810000 lane count 1
[02:30:33] [PASSED] Link rate 540000 lane count 4
[02:30:33] [PASSED] Link rate 540000 lane count 2
[02:30:33] [PASSED] Link rate 540000 lane count 1
[02:30:33] [PASSED] Link rate 270000 lane count 4
[02:30:33] [PASSED] Link rate 270000 lane count 2
[02:30:33] [PASSED] Link rate 270000 lane count 1
[02:30:33] [PASSED] Link rate 162000 lane count 4
[02:30:33] [PASSED] Link rate 162000 lane count 2
[02:30:33] [PASSED] Link rate 162000 lane count 1
[02:30:33] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[02:30:33] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[02:30:33] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[02:30:33] [PASSED] DP_POWER_UP_PHY with port number
[02:30:33] [PASSED] DP_POWER_DOWN_PHY with port number
[02:30:33] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[02:30:33] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[02:30:33] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[02:30:33] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[02:30:33] [PASSED] DP_QUERY_PAYLOAD with port number
[02:30:33] [PASSED] DP_QUERY_PAYLOAD with VCPI
[02:30:33] [PASSED] DP_REMOTE_DPCD_READ with port number
[02:30:33] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[02:30:33] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[02:30:33] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[02:30:33] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[02:30:33] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[02:30:33] [PASSED] DP_REMOTE_I2C_READ with port number
[02:30:33] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[02:30:33] [PASSED] DP_REMOTE_I2C_READ with transactions array
[02:30:33] [PASSED] DP_REMOTE_I2C_WRITE with port number
[02:30:33] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[02:30:33] [PASSED] DP_REMOTE_I2C_WRITE with data array
[02:30:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[02:30:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[02:30:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[02:30:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[02:30:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[02:30:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[02:30:33] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[02:30:33] ================ [PASSED] drm_dp_mst_helper ================
[02:30:33] ================== drm_exec (7 subtests) ===================
[02:30:33] [PASSED] sanitycheck
[02:30:33] [PASSED] test_lock
[02:30:33] [PASSED] test_lock_unlock
[02:30:33] [PASSED] test_duplicates
[02:30:33] [PASSED] test_prepare
[02:30:33] [PASSED] test_prepare_array
[02:30:33] [PASSED] test_multiple_loops
[02:30:33] ==================== [PASSED] drm_exec =====================
[02:30:33] =========== drm_format_helper_test (17 subtests) ===========
[02:30:33] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[02:30:33] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[02:30:33] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[02:30:33] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[02:30:33] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[02:30:33] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[02:30:33] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[02:30:33] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[02:30:33] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[02:30:33] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[02:30:33] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[02:30:33] ============== drm_test_fb_xrgb8888_to_mono ===============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[02:30:33] ==================== drm_test_fb_swab =====================
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ================ [PASSED] drm_test_fb_swab =================
[02:30:33] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[02:30:33] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[02:30:33] [PASSED] single_pixel_source_buffer
[02:30:33] [PASSED] single_pixel_clip_rectangle
[02:30:33] [PASSED] well_known_colors
[02:30:33] [PASSED] destination_pitch
[02:30:33] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[02:30:33] ================= drm_test_fb_clip_offset =================
[02:30:33] [PASSED] pass through
[02:30:33] [PASSED] horizontal offset
[02:30:33] [PASSED] vertical offset
[02:30:33] [PASSED] horizontal and vertical offset
[02:30:33] [PASSED] horizontal offset (custom pitch)
[02:30:33] [PASSED] vertical offset (custom pitch)
[02:30:33] [PASSED] horizontal and vertical offset (custom pitch)
[02:30:33] ============= [PASSED] drm_test_fb_clip_offset =============
[02:30:33] =================== drm_test_fb_memcpy ====================
[02:30:33] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[02:30:33] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[02:30:33] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[02:30:33] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[02:30:33] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[02:30:33] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[02:30:33] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[02:30:33] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[02:30:33] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[02:30:33] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[02:30:33] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[02:30:33] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[02:30:33] =============== [PASSED] drm_test_fb_memcpy ================
[02:30:33] ============= [PASSED] drm_format_helper_test ==============
[02:30:33] ================= drm_format (18 subtests) =================
[02:30:33] [PASSED] drm_test_format_block_width_invalid
[02:30:33] [PASSED] drm_test_format_block_width_one_plane
[02:30:33] [PASSED] drm_test_format_block_width_two_plane
[02:30:33] [PASSED] drm_test_format_block_width_three_plane
[02:30:33] [PASSED] drm_test_format_block_width_tiled
[02:30:33] [PASSED] drm_test_format_block_height_invalid
[02:30:33] [PASSED] drm_test_format_block_height_one_plane
[02:30:33] [PASSED] drm_test_format_block_height_two_plane
[02:30:33] [PASSED] drm_test_format_block_height_three_plane
[02:30:33] [PASSED] drm_test_format_block_height_tiled
[02:30:33] [PASSED] drm_test_format_min_pitch_invalid
[02:30:33] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[02:30:33] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[02:30:33] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[02:30:33] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[02:30:33] [PASSED] drm_test_format_min_pitch_two_plane
[02:30:33] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[02:30:33] [PASSED] drm_test_format_min_pitch_tiled
[02:30:33] =================== [PASSED] drm_format ====================
[02:30:33] ============== drm_framebuffer (10 subtests) ===============
[02:30:33] ========== drm_test_framebuffer_check_src_coords ==========
[02:30:33] [PASSED] Success: source fits into fb
[02:30:33] [PASSED] Fail: overflowing fb with x-axis coordinate
[02:30:33] [PASSED] Fail: overflowing fb with y-axis coordinate
[02:30:33] [PASSED] Fail: overflowing fb with source width
[02:30:33] [PASSED] Fail: overflowing fb with source height
[02:30:33] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[02:30:33] [PASSED] drm_test_framebuffer_cleanup
[02:30:33] =============== drm_test_framebuffer_create ===============
[02:30:33] [PASSED] ABGR8888 normal sizes
[02:30:33] [PASSED] ABGR8888 max sizes
[02:30:33] [PASSED] ABGR8888 pitch greater than min required
[02:30:33] [PASSED] ABGR8888 pitch less than min required
[02:30:33] [PASSED] ABGR8888 Invalid width
[02:30:33] [PASSED] ABGR8888 Invalid buffer handle
[02:30:33] [PASSED] No pixel format
[02:30:33] [PASSED] ABGR8888 Width 0
[02:30:33] [PASSED] ABGR8888 Height 0
[02:30:33] [PASSED] ABGR8888 Out of bound height * pitch combination
[02:30:33] [PASSED] ABGR8888 Large buffer offset
[02:30:33] [PASSED] ABGR8888 Buffer offset for inexistent plane
[02:30:33] [PASSED] ABGR8888 Invalid flag
[02:30:33] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[02:30:33] [PASSED] ABGR8888 Valid buffer modifier
[02:30:33] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[02:30:33] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] NV12 Normal sizes
[02:30:33] [PASSED] NV12 Max sizes
[02:30:33] [PASSED] NV12 Invalid pitch
[02:30:33] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[02:30:33] [PASSED] NV12 different modifier per-plane
[02:30:33] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[02:30:33] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] NV12 Modifier for inexistent plane
[02:30:33] [PASSED] NV12 Handle for inexistent plane
[02:30:33] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[02:30:33] [PASSED] YVU420 Normal sizes
[02:30:33] [PASSED] YVU420 Max sizes
[02:30:33] [PASSED] YVU420 Invalid pitch
[02:30:33] [PASSED] YVU420 Different pitches
[02:30:33] [PASSED] YVU420 Different buffer offsets/pitches
[02:30:33] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[02:30:33] [PASSED] YVU420 Valid modifier
[02:30:33] [PASSED] YVU420 Different modifiers per plane
[02:30:33] [PASSED] YVU420 Modifier for inexistent plane
[02:30:33] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[02:30:33] [PASSED] X0L2 Normal sizes
[02:30:33] [PASSED] X0L2 Max sizes
[02:30:33] [PASSED] X0L2 Invalid pitch
[02:30:33] [PASSED] X0L2 Pitch greater than minimum required
[02:30:33] [PASSED] X0L2 Handle for inexistent plane
[02:30:33] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[02:30:33] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[02:30:33] [PASSED] X0L2 Valid modifier
[02:30:33] [PASSED] X0L2 Modifier for inexistent plane
[02:30:33] =========== [PASSED] drm_test_framebuffer_create ===========
[02:30:33] [PASSED] drm_test_framebuffer_free
[02:30:33] [PASSED] drm_test_framebuffer_init
[02:30:33] [PASSED] drm_test_framebuffer_init_bad_format
[02:30:33] [PASSED] drm_test_framebuffer_init_dev_mismatch
[02:30:33] [PASSED] drm_test_framebuffer_lookup
[02:30:33] [PASSED] drm_test_framebuffer_lookup_inexistent
[02:30:33] [PASSED] drm_test_framebuffer_modifiers_not_supported
[02:30:33] ================= [PASSED] drm_framebuffer =================
[02:30:33] ================ drm_gem_shmem (8 subtests) ================
[02:30:33] [PASSED] drm_gem_shmem_test_obj_create
[02:30:33] [PASSED] drm_gem_shmem_test_obj_create_private
[02:30:33] [PASSED] drm_gem_shmem_test_pin_pages
[02:30:33] [PASSED] drm_gem_shmem_test_vmap
[02:30:33] [PASSED] drm_gem_shmem_test_get_sg_table
[02:30:33] [PASSED] drm_gem_shmem_test_get_pages_sgt
[02:30:33] [PASSED] drm_gem_shmem_test_madvise
[02:30:33] [PASSED] drm_gem_shmem_test_purge
[02:30:33] ================== [PASSED] drm_gem_shmem ==================
[02:30:33] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[02:30:33] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[02:30:33] [PASSED] Automatic
[02:30:33] [PASSED] Full
[02:30:33] [PASSED] Limited 16:235
[02:30:33] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[02:30:33] [PASSED] drm_test_check_disable_connector
[02:30:33] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[02:30:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[02:30:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[02:30:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[02:30:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[02:30:33] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[02:30:33] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[02:30:33] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[02:30:33] [PASSED] drm_test_check_output_bpc_dvi
[02:30:33] [PASSED] drm_test_check_output_bpc_format_vic_1
[02:30:33] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[02:30:33] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[02:30:33] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[02:30:33] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[02:30:33] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[02:30:33] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[02:30:33] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[02:30:33] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[02:30:33] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[02:30:33] [PASSED] drm_test_check_broadcast_rgb_value
[02:30:33] [PASSED] drm_test_check_bpc_8_value
[02:30:33] [PASSED] drm_test_check_bpc_10_value
[02:30:33] [PASSED] drm_test_check_bpc_12_value
[02:30:33] [PASSED] drm_test_check_format_value
[02:30:33] [PASSED] drm_test_check_tmds_char_value
[02:30:33] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[02:30:33] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[02:30:33] [PASSED] drm_test_check_mode_valid
[02:30:33] [PASSED] drm_test_check_mode_valid_reject
[02:30:33] [PASSED] drm_test_check_mode_valid_reject_rate
[02:30:33] [PASSED] drm_test_check_mode_valid_reject_max_clock
[02:30:33] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[02:30:33] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[02:30:33] [PASSED] drm_test_check_infoframes
[02:30:33] [PASSED] drm_test_check_reject_avi_infoframe
[02:30:33] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[02:30:33] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[02:30:33] [PASSED] drm_test_check_reject_audio_infoframe
[02:30:33] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[02:30:33] ================= drm_managed (2 subtests) =================
[02:30:33] [PASSED] drm_test_managed_release_action
[02:30:33] [PASSED] drm_test_managed_run_action
[02:30:33] =================== [PASSED] drm_managed ===================
[02:30:33] =================== drm_mm (6 subtests) ====================
[02:30:33] [PASSED] drm_test_mm_init
[02:30:33] [PASSED] drm_test_mm_debug
[02:30:33] [PASSED] drm_test_mm_align32
[02:30:33] [PASSED] drm_test_mm_align64
[02:30:33] [PASSED] drm_test_mm_lowest
[02:30:33] [PASSED] drm_test_mm_highest
[02:30:33] ===================== [PASSED] drm_mm ======================
[02:30:33] ============= drm_modes_analog_tv (5 subtests) =============
[02:30:33] [PASSED] drm_test_modes_analog_tv_mono_576i
[02:30:33] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[02:30:33] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[02:30:33] [PASSED] drm_test_modes_analog_tv_pal_576i
[02:30:33] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[02:30:33] =============== [PASSED] drm_modes_analog_tv ===============
[02:30:33] ============== drm_plane_helper (2 subtests) ===============
[02:30:33] =============== drm_test_check_plane_state ================
[02:30:33] [PASSED] clipping_simple
[02:30:33] [PASSED] clipping_rotate_reflect
[02:30:33] [PASSED] positioning_simple
[02:30:33] [PASSED] upscaling
[02:30:33] [PASSED] downscaling
[02:30:33] [PASSED] rounding1
[02:30:33] [PASSED] rounding2
[02:30:33] [PASSED] rounding3
[02:30:33] [PASSED] rounding4
[02:30:33] =========== [PASSED] drm_test_check_plane_state ============
[02:30:33] =========== drm_test_check_invalid_plane_state ============
[02:30:33] [PASSED] positioning_invalid
[02:30:33] [PASSED] upscaling_invalid
[02:30:33] [PASSED] downscaling_invalid
[02:30:33] ======= [PASSED] drm_test_check_invalid_plane_state ========
[02:30:33] ================ [PASSED] drm_plane_helper =================
[02:30:33] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[02:30:33] ====== drm_test_connector_helper_tv_get_modes_check =======
[02:30:33] [PASSED] None
[02:30:33] [PASSED] PAL
[02:30:33] [PASSED] NTSC
[02:30:33] [PASSED] Both, NTSC Default
[02:30:33] [PASSED] Both, PAL Default
[02:30:33] [PASSED] Both, NTSC Default, with PAL on command-line
[02:30:33] [PASSED] Both, PAL Default, with NTSC on command-line
[02:30:33] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[02:30:33] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[02:30:33] ================== drm_rect (9 subtests) ===================
[02:30:33] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[02:30:33] [PASSED] drm_test_rect_clip_scaled_not_clipped
[02:30:33] [PASSED] drm_test_rect_clip_scaled_clipped
[02:30:33] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[02:30:33] ================= drm_test_rect_intersect =================
[02:30:33] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[02:30:33] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[02:30:33] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[02:30:33] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[02:30:33] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[02:30:33] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[02:30:33] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[02:30:33] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[02:30:33] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[02:30:33] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[02:30:33] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[02:30:33] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[02:30:33] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[02:30:33] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[02:30:33] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[02:30:33] ============= [PASSED] drm_test_rect_intersect =============
[02:30:33] ================ drm_test_rect_calc_hscale ================
[02:30:33] [PASSED] normal use
[02:30:33] [PASSED] out of max range
[02:30:33] [PASSED] out of min range
[02:30:33] [PASSED] zero dst
[02:30:33] [PASSED] negative src
[02:30:33] [PASSED] negative dst
[02:30:33] ============ [PASSED] drm_test_rect_calc_hscale ============
[02:30:33] ================ drm_test_rect_calc_vscale ================
[02:30:33] [PASSED] normal use
[02:30:33] [PASSED] out of max range
[02:30:33] [PASSED] out of min range
[02:30:33] [PASSED] zero dst
[02:30:33] [PASSED] negative src
[02:30:33] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[02:30:33] ============ [PASSED] drm_test_rect_calc_vscale ============
[02:30:33] ================== drm_test_rect_rotate ===================
[02:30:33] [PASSED] reflect-x
[02:30:33] [PASSED] reflect-y
[02:30:33] [PASSED] rotate-0
[02:30:33] [PASSED] rotate-90
[02:30:33] [PASSED] rotate-180
[02:30:33] [PASSED] rotate-270
[02:30:33] ============== [PASSED] drm_test_rect_rotate ===============
[02:30:33] ================ drm_test_rect_rotate_inv =================
[02:30:33] [PASSED] reflect-x
[02:30:33] [PASSED] reflect-y
[02:30:33] [PASSED] rotate-0
[02:30:33] [PASSED] rotate-90
[02:30:33] [PASSED] rotate-180
[02:30:33] [PASSED] rotate-270
[02:30:33] ============ [PASSED] drm_test_rect_rotate_inv =============
[02:30:33] ==================== [PASSED] drm_rect =====================
[02:30:33] ============ drm_sysfb_modeset_test (1 subtest) ============
[02:30:33] ============ drm_test_sysfb_build_fourcc_list =============
[02:30:33] [PASSED] no native formats
[02:30:33] [PASSED] XRGB8888 as native format
[02:30:33] [PASSED] remove duplicates
[02:30:33] [PASSED] convert alpha formats
[02:30:33] [PASSED] random formats
[02:30:33] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[02:30:33] ============= [PASSED] drm_sysfb_modeset_test ==============
[02:30:33] ================== drm_fixp (2 subtests) ===================
[02:30:33] [PASSED] drm_test_int2fixp
[02:30:33] [PASSED] drm_test_sm2fixp
[02:30:33] ==================== [PASSED] drm_fixp =====================
[02:30:33] ============================================================
[02:30:33] Testing complete. Ran 621 tests: passed: 621
[02:30:33] Elapsed time: 26.184s total, 1.669s configuring, 24.348s building, 0.122s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[02:30:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:30:34] 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
[02:30:44] Starting KUnit Kernel (1/1)...
[02:30:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:30:44] ================= ttm_device (5 subtests) ==================
[02:30:44] [PASSED] ttm_device_init_basic
[02:30:44] [PASSED] ttm_device_init_multiple
[02:30:44] [PASSED] ttm_device_fini_basic
[02:30:44] [PASSED] ttm_device_init_no_vma_man
[02:30:44] ================== ttm_device_init_pools ==================
[02:30:44] [PASSED] No DMA allocations, no DMA32 required
[02:30:44] [PASSED] DMA allocations, DMA32 required
[02:30:44] [PASSED] No DMA allocations, DMA32 required
[02:30:44] [PASSED] DMA allocations, no DMA32 required
[02:30:44] ============== [PASSED] ttm_device_init_pools ==============
[02:30:44] =================== [PASSED] ttm_device ====================
[02:30:44] ================== ttm_pool (8 subtests) ===================
[02:30:44] ================== ttm_pool_alloc_basic ===================
[02:30:44] [PASSED] One page
[02:30:44] [PASSED] More than one page
[02:30:44] [PASSED] Above the allocation limit
[02:30:44] [PASSED] One page, with coherent DMA mappings enabled
[02:30:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[02:30:44] ============== [PASSED] ttm_pool_alloc_basic ===============
[02:30:44] ============== ttm_pool_alloc_basic_dma_addr ==============
[02:30:44] [PASSED] One page
[02:30:44] [PASSED] More than one page
[02:30:44] [PASSED] Above the allocation limit
[02:30:44] [PASSED] One page, with coherent DMA mappings enabled
[02:30:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[02:30:44] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[02:30:44] [PASSED] ttm_pool_alloc_order_caching_match
[02:30:44] [PASSED] ttm_pool_alloc_caching_mismatch
[02:30:44] [PASSED] ttm_pool_alloc_order_mismatch
[02:30:44] [PASSED] ttm_pool_free_dma_alloc
[02:30:44] [PASSED] ttm_pool_free_no_dma_alloc
[02:30:44] [PASSED] ttm_pool_fini_basic
[02:30:44] ==================== [PASSED] ttm_pool =====================
[02:30:44] ================ ttm_resource (8 subtests) =================
[02:30:44] ================= ttm_resource_init_basic =================
[02:30:44] [PASSED] Init resource in TTM_PL_SYSTEM
[02:30:44] [PASSED] Init resource in TTM_PL_VRAM
[02:30:44] [PASSED] Init resource in a private placement
[02:30:44] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[02:30:44] ============= [PASSED] ttm_resource_init_basic =============
[02:30:44] [PASSED] ttm_resource_init_pinned
[02:30:44] [PASSED] ttm_resource_fini_basic
[02:30:44] [PASSED] ttm_resource_manager_init_basic
[02:30:44] [PASSED] ttm_resource_manager_usage_basic
[02:30:44] [PASSED] ttm_resource_manager_set_used_basic
[02:30:44] [PASSED] ttm_sys_man_alloc_basic
[02:30:44] [PASSED] ttm_sys_man_free_basic
[02:30:44] ================== [PASSED] ttm_resource ===================
[02:30:44] =================== ttm_tt (15 subtests) ===================
[02:30:44] ==================== ttm_tt_init_basic ====================
[02:30:44] [PASSED] Page-aligned size
[02:30:44] [PASSED] Extra pages requested
[02:30:44] ================ [PASSED] ttm_tt_init_basic ================
[02:30:44] [PASSED] ttm_tt_init_misaligned
[02:30:44] [PASSED] ttm_tt_fini_basic
[02:30:44] [PASSED] ttm_tt_fini_sg
[02:30:44] [PASSED] ttm_tt_fini_shmem
[02:30:44] [PASSED] ttm_tt_create_basic
[02:30:44] [PASSED] ttm_tt_create_invalid_bo_type
[02:30:44] [PASSED] ttm_tt_create_ttm_exists
[02:30:44] [PASSED] ttm_tt_create_failed
[02:30:44] [PASSED] ttm_tt_destroy_basic
[02:30:44] [PASSED] ttm_tt_populate_null_ttm
[02:30:44] [PASSED] ttm_tt_populate_populated_ttm
[02:30:44] [PASSED] ttm_tt_unpopulate_basic
[02:30:44] [PASSED] ttm_tt_unpopulate_empty_ttm
[02:30:44] [PASSED] ttm_tt_swapin_basic
[02:30:44] ===================== [PASSED] ttm_tt ======================
[02:30:44] =================== ttm_bo (14 subtests) ===================
[02:30:44] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[02:30:44] [PASSED] Cannot be interrupted and sleeps
[02:30:44] [PASSED] Cannot be interrupted, locks straight away
[02:30:44] [PASSED] Can be interrupted, sleeps
[02:30:44] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[02:30:44] [PASSED] ttm_bo_reserve_locked_no_sleep
[02:30:44] [PASSED] ttm_bo_reserve_no_wait_ticket
[02:30:44] [PASSED] ttm_bo_reserve_double_resv
[02:30:44] [PASSED] ttm_bo_reserve_interrupted
[02:30:44] [PASSED] ttm_bo_reserve_deadlock
[02:30:44] [PASSED] ttm_bo_unreserve_basic
[02:30:44] [PASSED] ttm_bo_unreserve_pinned
[02:30:44] [PASSED] ttm_bo_unreserve_bulk
[02:30:44] [PASSED] ttm_bo_fini_basic
[02:30:44] [PASSED] ttm_bo_fini_shared_resv
[02:30:44] [PASSED] ttm_bo_pin_basic
[02:30:44] [PASSED] ttm_bo_pin_unpin_resource
[02:30:44] [PASSED] ttm_bo_multiple_pin_one_unpin
[02:30:44] ===================== [PASSED] ttm_bo ======================
[02:30:44] ============== ttm_bo_validate (22 subtests) ===============
[02:30:44] ============== ttm_bo_init_reserved_sys_man ===============
[02:30:44] [PASSED] Buffer object for userspace
[02:30:44] [PASSED] Kernel buffer object
[02:30:44] [PASSED] Shared buffer object
[02:30:44] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[02:30:44] ============== ttm_bo_init_reserved_mock_man ==============
[02:30:44] [PASSED] Buffer object for userspace
[02:30:44] [PASSED] Kernel buffer object
[02:30:44] [PASSED] Shared buffer object
[02:30:44] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[02:30:44] [PASSED] ttm_bo_init_reserved_resv
[02:30:44] ================== ttm_bo_validate_basic ==================
[02:30:44] [PASSED] Buffer object for userspace
[02:30:44] [PASSED] Kernel buffer object
[02:30:44] [PASSED] Shared buffer object
[02:30:44] ============== [PASSED] ttm_bo_validate_basic ==============
[02:30:44] [PASSED] ttm_bo_validate_invalid_placement
[02:30:44] ============= ttm_bo_validate_same_placement ==============
[02:30:44] [PASSED] System manager
[02:30:44] [PASSED] VRAM manager
[02:30:44] ========= [PASSED] ttm_bo_validate_same_placement ==========
[02:30:44] [PASSED] ttm_bo_validate_failed_alloc
[02:30:44] [PASSED] ttm_bo_validate_pinned
[02:30:44] [PASSED] ttm_bo_validate_busy_placement
[02:30:44] ================ ttm_bo_validate_multihop =================
[02:30:44] [PASSED] Buffer object for userspace
[02:30:44] [PASSED] Kernel buffer object
[02:30:44] [PASSED] Shared buffer object
[02:30:44] ============ [PASSED] ttm_bo_validate_multihop =============
[02:30:44] ========== ttm_bo_validate_no_placement_signaled ==========
[02:30:44] [PASSED] Buffer object in system domain, no page vector
[02:30:44] [PASSED] Buffer object in system domain with an existing page vector
[02:30:44] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[02:30:44] ======== ttm_bo_validate_no_placement_not_signaled ========
[02:30:44] [PASSED] Buffer object for userspace
[02:30:44] [PASSED] Kernel buffer object
[02:30:44] [PASSED] Shared buffer object
[02:30:44] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[02:30:44] [PASSED] ttm_bo_validate_move_fence_signaled
[02:30:44] ========= ttm_bo_validate_move_fence_not_signaled =========
[02:30:44] [PASSED] Waits for GPU
[02:30:44] [PASSED] Tries to lock straight away
[02:30:44] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[02:30:44] [PASSED] ttm_bo_validate_swapout
[02:30:44] [PASSED] ttm_bo_validate_happy_evict
[02:30:44] [PASSED] ttm_bo_validate_all_pinned_evict
[02:30:44] [PASSED] ttm_bo_validate_allowed_only_evict
[02:30:44] [PASSED] ttm_bo_validate_deleted_evict
[02:30:44] [PASSED] ttm_bo_validate_busy_domain_evict
[02:30:44] [PASSED] ttm_bo_validate_evict_gutting
[02:30:44] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[02:30:44] ================= [PASSED] ttm_bo_validate =================
[02:30:44] ============================================================
[02:30:44] Testing complete. Ran 102 tests: passed: 102
[02:30:44] Elapsed time: 11.375s total, 1.730s configuring, 9.428s building, 0.187s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (7 preceding siblings ...)
2026-04-10 2:30 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-10 3:29 ` Patchwork
2026-04-10 7:58 ` ✓ Xe.CI.FULL: " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-10 3:29 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1423 bytes --]
== Series Details ==
Series: drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
URL : https://patchwork.freedesktop.org/series/164476/
State : success
== Summary ==
CI Bug Log - changes from xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37_BAT -> xe-pw-164476v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-164476v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* Linux: xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37 -> xe-pw-164476v3
IGT_8852: 8852
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
xe-pw-164476v3: 164476v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/index.html
[-- Attachment #2: Type: text/html, Size: 1988 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.FULL: success for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
` (8 preceding siblings ...)
2026-04-10 3:29 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-10 7:58 ` Patchwork
2026-04-14 15:44 ` Lin, Shuicheng
9 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2026-04-10 7:58 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 14547 bytes --]
== Series Details ==
Series: drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
URL : https://patchwork.freedesktop.org/series/164476/
State : success
== Summary ==
CI Bug Log - changes from xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37_FULL -> xe-pw-164476v3_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-164476v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#1124]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#367] / [Intel XE#7354])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2887]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5] ([Intel XE#7084]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2252]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2390] / [Intel XE#6974])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2320])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2244])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2374] / [Intel XE#6127])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7178] / [Intel XE#7351])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2311]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#4141]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2352] / [Intel XE#7399])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2313]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#1503])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7283])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2393])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2387] / [Intel XE#7429])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3904] / [Intel XE#7342])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6503])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#4459]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_eudebug@connect-user:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7636]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_eudebug@connect-user.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7136])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@many-queues-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6874]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-dyn-priority-smem.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2229])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6964])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7590])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][33] ([Intel XE#5354]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][35] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [FAIL][37] ([Intel XE#3149]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][39] ([Intel XE#6361]) -> [PASS][40] +2 other tests pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][41] ([Intel XE#3544]) -> [SKIP][42] ([Intel XE#3374] / [Intel XE#3544])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
Build changes
-------------
* Linux: xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37 -> xe-pw-164476v3
IGT_8852: 8852
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
xe-pw-164476v3: 164476v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/index.html
[-- Attachment #2: Type: text/html, Size: 15926 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: ✓ Xe.CI.FULL: success for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
2026-04-10 7:58 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-14 15:44 ` Lin, Shuicheng
0 siblings, 0 replies; 12+ messages in thread
From: Lin, Shuicheng @ 2026-04-14 15:44 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 323 bytes --]
>Patch Details
>Series:
drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3)
>URL:
https://patchwork.freedesktop.org/series/164476/
>State:
success
>Details:
https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164476v3/index.html
Applied to drm-xe-next.
Thanks for the review.
Best Regards
Shuicheng
[-- Attachment #2: Type: text/html, Size: 11675 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-04-14 15:44 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-08 17:52 [PATCH v2 0/4] drm/xe: Fix resource leaks in bo init and dma-buf paths Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 1/4] drm/xe/bo: Fix bo leak on unaligned size validation in xe_bo_init_locked() Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 2/4] drm/xe/bo: Fix bo leak on GGTT flag " Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 3/4] drm/xe: Fix bo leak in xe_dma_buf_init_obj() on allocation failure Shuicheng Lin
2026-04-08 17:52 ` [PATCH v2 4/4] drm/xe: Fix dma-buf attachment leak in xe_gem_prime_import() Shuicheng Lin
2026-04-08 18:03 ` ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev2) Patchwork
2026-04-08 18:04 ` ✗ CI.KUnit: failure " Patchwork
2026-04-10 2:29 ` ✗ CI.checkpatch: warning for drm/xe: Fix resource leaks in bo init and dma-buf paths (rev3) Patchwork
2026-04-10 2:30 ` ✓ CI.KUnit: success " Patchwork
2026-04-10 3:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-10 7:58 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-14 15:44 ` Lin, Shuicheng
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.