* [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking
@ 2026-05-01 22:30 Matthew Brost
2026-05-01 22:36 ` ✗ CI.checkpatch: warning for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Matthew Brost @ 2026-05-01 22:30 UTC (permalink / raw)
To: intel-xe, dri-devel
Cc: Kenneth Crudup, Christian Koenig, Huang Rui, Matthew Auld,
David Airlie
TTM pool shrinking frees pages by calling __free_pages() directly,
which bypasses updates to NR_GPU_ACTIVE and leaves GPU MM accounting
out of sync.
Introduce a helper, __free_pages_gpu_account(), and use it for all page
frees in ttm_pool.c so GPU MM statistics are updated consistently.
Reported-by: Kenneth Crudup <kenny@panix.com>
Fixes: ae80122f3896 ("drm/ttm: use gpu mm stats to track gpu memory allocations. (v4)")
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Huang Rui <ray.huang@amd.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: David Airlie <airlied@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_pool.c b/drivers/gpu/drm/ttm/ttm_pool.c
index 26a3689e5fd9..95bbd9328072 100644
--- a/drivers/gpu/drm/ttm/ttm_pool.c
+++ b/drivers/gpu/drm/ttm/ttm_pool.c
@@ -206,6 +206,14 @@ static struct page *ttm_pool_alloc_page(struct ttm_pool *pool, gfp_t gfp_flags,
return NULL;
}
+static void __free_pages_gpu_account(struct page *p, unsigned int order,
+ bool reclaim)
+{
+ mod_lruvec_page_state(p, reclaim ? NR_GPU_RECLAIM : NR_GPU_ACTIVE,
+ -(1 << order));
+ __free_pages(p, order);
+}
+
/* Reset the caching and pages of size 1 << order */
static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
unsigned int order, struct page *p, bool reclaim)
@@ -223,9 +231,7 @@ static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
#endif
if (!pool || !ttm_pool_uses_dma_alloc(pool)) {
- mod_lruvec_page_state(p, reclaim ? NR_GPU_RECLAIM : NR_GPU_ACTIVE,
- -(1 << order));
- __free_pages(p, order);
+ __free_pages_gpu_account(p, order, reclaim);
return;
}
@@ -606,7 +612,7 @@ static int ttm_pool_restore_commit(struct ttm_pool_tt_restore *restore,
*/
ttm_pool_split_for_swap(restore->pool, p);
copy_highpage(restore->alloced_page + i, p);
- __free_pages(p, 0);
+ __free_pages_gpu_account(p, 0, false);
}
restore->restored_pages++;
@@ -1068,7 +1074,7 @@ long ttm_pool_backup(struct ttm_pool *pool, struct ttm_tt *tt,
if (flags->purge) {
shrunken += num_pages;
page->private = 0;
- __free_pages(page, order);
+ __free_pages_gpu_account(page, order, false);
memset(tt->pages + i, 0,
num_pages * sizeof(*tt->pages));
}
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ CI.checkpatch: warning for drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
@ 2026-05-01 22:36 ` Patchwork
2026-05-01 22:37 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-01 22:36 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/ttm: Fix GPU MM stats during pool shrinking
URL : https://patchwork.freedesktop.org/series/165861/
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
c8c12e558adaef7a4d125d83b6e1f8824bc13b82
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 667f11d1f72095de5c35e9d359709a533624b52c
Author: Matthew Brost <matthew.brost@intel.com>
Date: Fri May 1 15:30:03 2026 -0700
drm/ttm: Fix GPU MM stats during pool shrinking
TTM pool shrinking frees pages by calling __free_pages() directly,
which bypasses updates to NR_GPU_ACTIVE and leaves GPU MM accounting
out of sync.
Introduce a helper, __free_pages_gpu_account(), and use it for all page
frees in ttm_pool.c so GPU MM statistics are updated consistently.
Reported-by: Kenneth Crudup <kenny@panix.com>
Fixes: ae80122f3896 ("drm/ttm: use gpu mm stats to track gpu memory allocations. (v4)")
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Huang Rui <ray.huang@amd.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: David Airlie <airlied@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch 03712864f7a8ffcdd43fe3adc4cfe687f77e93ad drm-intel
667f11d1f720 drm/ttm: Fix GPU MM stats during pool shrinking
-:13: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#13:
Reported-by: Kenneth Crudup <kenny@panix.com>
Fixes: ae80122f3896 ("drm/ttm: use gpu mm stats to track gpu memory allocations. (v4)")
total: 0 errors, 1 warnings, 0 checks, 40 lines checked
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
2026-05-01 22:36 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2026-05-01 22:37 ` Patchwork
2026-05-01 22:57 ` [PATCH] " Kenneth Crudup
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-01 22:37 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/ttm: Fix GPU MM stats during pool shrinking
URL : https://patchwork.freedesktop.org/series/165861/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:36:11] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:36:15] 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
[22:36:46] Starting KUnit Kernel (1/1)...
[22:36:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:36:46] ================== guc_buf (11 subtests) ===================
[22:36:46] [PASSED] test_smallest
[22:36:46] [PASSED] test_largest
[22:36:46] [PASSED] test_granular
[22:36:46] [PASSED] test_unique
[22:36:46] [PASSED] test_overlap
[22:36:46] [PASSED] test_reusable
[22:36:46] [PASSED] test_too_big
[22:36:46] [PASSED] test_flush
[22:36:46] [PASSED] test_lookup
[22:36:46] [PASSED] test_data
[22:36:46] [PASSED] test_class
[22:36:46] ===================== [PASSED] guc_buf =====================
[22:36:46] =================== guc_dbm (7 subtests) ===================
[22:36:46] [PASSED] test_empty
[22:36:46] [PASSED] test_default
[22:36:46] ======================== test_size ========================
[22:36:46] [PASSED] 4
[22:36:46] [PASSED] 8
[22:36:46] [PASSED] 32
[22:36:46] [PASSED] 256
[22:36:46] ==================== [PASSED] test_size ====================
[22:36:46] ======================= test_reuse ========================
[22:36:46] [PASSED] 4
[22:36:46] [PASSED] 8
[22:36:46] [PASSED] 32
[22:36:46] [PASSED] 256
[22:36:46] =================== [PASSED] test_reuse ====================
[22:36:46] =================== test_range_overlap ====================
[22:36:46] [PASSED] 4
[22:36:46] [PASSED] 8
[22:36:46] [PASSED] 32
[22:36:46] [PASSED] 256
[22:36:46] =============== [PASSED] test_range_overlap ================
[22:36:46] =================== test_range_compact ====================
[22:36:46] [PASSED] 4
[22:36:46] [PASSED] 8
[22:36:46] [PASSED] 32
[22:36:46] [PASSED] 256
[22:36:46] =============== [PASSED] test_range_compact ================
[22:36:46] ==================== test_range_spare =====================
[22:36:46] [PASSED] 4
[22:36:46] [PASSED] 8
[22:36:46] [PASSED] 32
[22:36:46] [PASSED] 256
[22:36:46] ================ [PASSED] test_range_spare =================
[22:36:46] ===================== [PASSED] guc_dbm =====================
[22:36:46] =================== guc_idm (6 subtests) ===================
[22:36:46] [PASSED] bad_init
[22:36:46] [PASSED] no_init
[22:36:46] [PASSED] init_fini
[22:36:46] [PASSED] check_used
[22:36:46] [PASSED] check_quota
[22:36:46] [PASSED] check_all
[22:36:46] ===================== [PASSED] guc_idm =====================
[22:36:46] ================== no_relay (3 subtests) ===================
[22:36:46] [PASSED] xe_drops_guc2pf_if_not_ready
[22:36:46] [PASSED] xe_drops_guc2vf_if_not_ready
[22:36:46] [PASSED] xe_rejects_send_if_not_ready
[22:36:46] ==================== [PASSED] no_relay =====================
[22:36:46] ================== pf_relay (14 subtests) ==================
[22:36:46] [PASSED] pf_rejects_guc2pf_too_short
[22:36:46] [PASSED] pf_rejects_guc2pf_too_long
[22:36:46] [PASSED] pf_rejects_guc2pf_no_payload
[22:36:46] [PASSED] pf_fails_no_payload
[22:36:46] [PASSED] pf_fails_bad_origin
[22:36:46] [PASSED] pf_fails_bad_type
[22:36:46] [PASSED] pf_txn_reports_error
[22:36:46] [PASSED] pf_txn_sends_pf2guc
[22:36:46] [PASSED] pf_sends_pf2guc
[22:36:46] [SKIPPED] pf_loopback_nop
[22:36:46] [SKIPPED] pf_loopback_echo
[22:36:46] [SKIPPED] pf_loopback_fail
[22:36:46] [SKIPPED] pf_loopback_busy
[22:36:46] [SKIPPED] pf_loopback_retry
[22:36:46] ==================== [PASSED] pf_relay =====================
[22:36:46] ================== vf_relay (3 subtests) ===================
[22:36:46] [PASSED] vf_rejects_guc2vf_too_short
[22:36:46] [PASSED] vf_rejects_guc2vf_too_long
[22:36:46] [PASSED] vf_rejects_guc2vf_no_payload
[22:36:46] ==================== [PASSED] vf_relay =====================
[22:36:46] ================ pf_gt_config (9 subtests) =================
[22:36:46] [PASSED] fair_contexts_1vf
[22:36:46] [PASSED] fair_doorbells_1vf
[22:36:46] [PASSED] fair_ggtt_1vf
[22:36:46] ====================== fair_vram_1vf ======================
[22:36:46] [PASSED] 3.50 GiB
[22:36:46] [PASSED] 11.5 GiB
[22:36:46] [PASSED] 15.5 GiB
[22:36:46] [PASSED] 31.5 GiB
[22:36:46] [PASSED] 63.5 GiB
[22:36:46] [PASSED] 1.91 GiB
[22:36:46] ================== [PASSED] fair_vram_1vf ==================
[22:36:46] ================ fair_vram_1vf_admin_only =================
[22:36:46] [PASSED] 3.50 GiB
[22:36:46] [PASSED] 11.5 GiB
[22:36:46] [PASSED] 15.5 GiB
[22:36:46] [PASSED] 31.5 GiB
[22:36:46] [PASSED] 63.5 GiB
[22:36:46] [PASSED] 1.91 GiB
[22:36:46] ============ [PASSED] fair_vram_1vf_admin_only =============
[22:36:46] ====================== fair_contexts ======================
[22:36:46] [PASSED] 1 VF
[22:36:46] [PASSED] 2 VFs
[22:36:46] [PASSED] 3 VFs
[22:36:46] [PASSED] 4 VFs
[22:36:46] [PASSED] 5 VFs
[22:36:46] [PASSED] 6 VFs
[22:36:46] [PASSED] 7 VFs
[22:36:46] [PASSED] 8 VFs
[22:36:46] [PASSED] 9 VFs
[22:36:46] [PASSED] 10 VFs
[22:36:46] [PASSED] 11 VFs
[22:36:46] [PASSED] 12 VFs
[22:36:46] [PASSED] 13 VFs
[22:36:46] [PASSED] 14 VFs
[22:36:46] [PASSED] 15 VFs
[22:36:46] [PASSED] 16 VFs
[22:36:46] [PASSED] 17 VFs
[22:36:46] [PASSED] 18 VFs
[22:36:46] [PASSED] 19 VFs
[22:36:46] [PASSED] 20 VFs
[22:36:46] [PASSED] 21 VFs
[22:36:46] [PASSED] 22 VFs
[22:36:46] [PASSED] 23 VFs
[22:36:46] [PASSED] 24 VFs
[22:36:46] [PASSED] 25 VFs
[22:36:46] [PASSED] 26 VFs
[22:36:46] [PASSED] 27 VFs
[22:36:46] [PASSED] 28 VFs
[22:36:46] [PASSED] 29 VFs
[22:36:46] [PASSED] 30 VFs
[22:36:46] [PASSED] 31 VFs
[22:36:46] [PASSED] 32 VFs
[22:36:46] [PASSED] 33 VFs
[22:36:46] [PASSED] 34 VFs
[22:36:46] [PASSED] 35 VFs
[22:36:46] [PASSED] 36 VFs
[22:36:46] [PASSED] 37 VFs
[22:36:46] [PASSED] 38 VFs
[22:36:46] [PASSED] 39 VFs
[22:36:46] [PASSED] 40 VFs
[22:36:46] [PASSED] 41 VFs
[22:36:46] [PASSED] 42 VFs
[22:36:46] [PASSED] 43 VFs
[22:36:46] [PASSED] 44 VFs
[22:36:46] [PASSED] 45 VFs
[22:36:46] [PASSED] 46 VFs
[22:36:46] [PASSED] 47 VFs
[22:36:46] [PASSED] 48 VFs
[22:36:46] [PASSED] 49 VFs
[22:36:46] [PASSED] 50 VFs
[22:36:46] [PASSED] 51 VFs
[22:36:46] [PASSED] 52 VFs
[22:36:46] [PASSED] 53 VFs
[22:36:46] [PASSED] 54 VFs
[22:36:46] [PASSED] 55 VFs
[22:36:46] [PASSED] 56 VFs
[22:36:46] [PASSED] 57 VFs
[22:36:46] [PASSED] 58 VFs
[22:36:46] [PASSED] 59 VFs
[22:36:46] [PASSED] 60 VFs
[22:36:46] [PASSED] 61 VFs
[22:36:46] [PASSED] 62 VFs
[22:36:46] [PASSED] 63 VFs
[22:36:46] ================== [PASSED] fair_contexts ==================
[22:36:46] ===================== fair_doorbells ======================
[22:36:46] [PASSED] 1 VF
[22:36:46] [PASSED] 2 VFs
[22:36:46] [PASSED] 3 VFs
[22:36:46] [PASSED] 4 VFs
[22:36:46] [PASSED] 5 VFs
[22:36:46] [PASSED] 6 VFs
[22:36:46] [PASSED] 7 VFs
[22:36:46] [PASSED] 8 VFs
[22:36:46] [PASSED] 9 VFs
[22:36:46] [PASSED] 10 VFs
[22:36:46] [PASSED] 11 VFs
[22:36:46] [PASSED] 12 VFs
[22:36:46] [PASSED] 13 VFs
[22:36:46] [PASSED] 14 VFs
[22:36:46] [PASSED] 15 VFs
[22:36:46] [PASSED] 16 VFs
[22:36:46] [PASSED] 17 VFs
[22:36:46] [PASSED] 18 VFs
[22:36:46] [PASSED] 19 VFs
[22:36:46] [PASSED] 20 VFs
[22:36:46] [PASSED] 21 VFs
[22:36:46] [PASSED] 22 VFs
[22:36:46] [PASSED] 23 VFs
[22:36:46] [PASSED] 24 VFs
[22:36:46] [PASSED] 25 VFs
[22:36:46] [PASSED] 26 VFs
[22:36:46] [PASSED] 27 VFs
[22:36:46] [PASSED] 28 VFs
[22:36:46] [PASSED] 29 VFs
[22:36:46] [PASSED] 30 VFs
[22:36:46] [PASSED] 31 VFs
[22:36:46] [PASSED] 32 VFs
[22:36:46] [PASSED] 33 VFs
[22:36:46] [PASSED] 34 VFs
[22:36:46] [PASSED] 35 VFs
[22:36:46] [PASSED] 36 VFs
[22:36:46] [PASSED] 37 VFs
[22:36:46] [PASSED] 38 VFs
[22:36:46] [PASSED] 39 VFs
[22:36:46] [PASSED] 40 VFs
[22:36:46] [PASSED] 41 VFs
[22:36:46] [PASSED] 42 VFs
[22:36:46] [PASSED] 43 VFs
[22:36:46] [PASSED] 44 VFs
[22:36:46] [PASSED] 45 VFs
[22:36:46] [PASSED] 46 VFs
[22:36:46] [PASSED] 47 VFs
[22:36:46] [PASSED] 48 VFs
[22:36:46] [PASSED] 49 VFs
[22:36:46] [PASSED] 50 VFs
[22:36:46] [PASSED] 51 VFs
[22:36:46] [PASSED] 52 VFs
[22:36:46] [PASSED] 53 VFs
[22:36:46] [PASSED] 54 VFs
[22:36:46] [PASSED] 55 VFs
[22:36:46] [PASSED] 56 VFs
[22:36:46] [PASSED] 57 VFs
[22:36:46] [PASSED] 58 VFs
[22:36:46] [PASSED] 59 VFs
[22:36:46] [PASSED] 60 VFs
[22:36:46] [PASSED] 61 VFs
[22:36:46] [PASSED] 62 VFs
[22:36:46] [PASSED] 63 VFs
[22:36:46] ================= [PASSED] fair_doorbells ==================
[22:36:46] ======================== fair_ggtt ========================
[22:36:46] [PASSED] 1 VF
[22:36:46] [PASSED] 2 VFs
[22:36:46] [PASSED] 3 VFs
[22:36:46] [PASSED] 4 VFs
[22:36:46] [PASSED] 5 VFs
[22:36:46] [PASSED] 6 VFs
[22:36:46] [PASSED] 7 VFs
[22:36:46] [PASSED] 8 VFs
[22:36:46] [PASSED] 9 VFs
[22:36:46] [PASSED] 10 VFs
[22:36:46] [PASSED] 11 VFs
[22:36:46] [PASSED] 12 VFs
[22:36:46] [PASSED] 13 VFs
[22:36:46] [PASSED] 14 VFs
[22:36:46] [PASSED] 15 VFs
[22:36:46] [PASSED] 16 VFs
[22:36:46] [PASSED] 17 VFs
[22:36:46] [PASSED] 18 VFs
[22:36:46] [PASSED] 19 VFs
[22:36:46] [PASSED] 20 VFs
[22:36:46] [PASSED] 21 VFs
[22:36:46] [PASSED] 22 VFs
[22:36:46] [PASSED] 23 VFs
[22:36:46] [PASSED] 24 VFs
[22:36:46] [PASSED] 25 VFs
[22:36:46] [PASSED] 26 VFs
[22:36:46] [PASSED] 27 VFs
[22:36:46] [PASSED] 28 VFs
[22:36:46] [PASSED] 29 VFs
[22:36:46] [PASSED] 30 VFs
[22:36:46] [PASSED] 31 VFs
[22:36:46] [PASSED] 32 VFs
[22:36:46] [PASSED] 33 VFs
[22:36:46] [PASSED] 34 VFs
[22:36:46] [PASSED] 35 VFs
[22:36:46] [PASSED] 36 VFs
[22:36:46] [PASSED] 37 VFs
[22:36:46] [PASSED] 38 VFs
[22:36:46] [PASSED] 39 VFs
[22:36:46] [PASSED] 40 VFs
[22:36:46] [PASSED] 41 VFs
[22:36:46] [PASSED] 42 VFs
[22:36:46] [PASSED] 43 VFs
[22:36:46] [PASSED] 44 VFs
[22:36:46] [PASSED] 45 VFs
[22:36:46] [PASSED] 46 VFs
[22:36:46] [PASSED] 47 VFs
[22:36:46] [PASSED] 48 VFs
[22:36:46] [PASSED] 49 VFs
[22:36:46] [PASSED] 50 VFs
[22:36:46] [PASSED] 51 VFs
[22:36:46] [PASSED] 52 VFs
[22:36:46] [PASSED] 53 VFs
[22:36:46] [PASSED] 54 VFs
[22:36:46] [PASSED] 55 VFs
[22:36:46] [PASSED] 56 VFs
[22:36:46] [PASSED] 57 VFs
[22:36:46] [PASSED] 58 VFs
[22:36:46] [PASSED] 59 VFs
[22:36:46] [PASSED] 60 VFs
[22:36:46] [PASSED] 61 VFs
[22:36:46] [PASSED] 62 VFs
[22:36:46] [PASSED] 63 VFs
[22:36:46] ==================== [PASSED] fair_ggtt ====================
[22:36:46] ======================== fair_vram ========================
[22:36:46] [PASSED] 1 VF
[22:36:46] [PASSED] 2 VFs
[22:36:46] [PASSED] 3 VFs
[22:36:46] [PASSED] 4 VFs
[22:36:46] [PASSED] 5 VFs
[22:36:46] [PASSED] 6 VFs
[22:36:46] [PASSED] 7 VFs
[22:36:46] [PASSED] 8 VFs
[22:36:46] [PASSED] 9 VFs
[22:36:46] [PASSED] 10 VFs
[22:36:46] [PASSED] 11 VFs
[22:36:46] [PASSED] 12 VFs
[22:36:46] [PASSED] 13 VFs
[22:36:46] [PASSED] 14 VFs
[22:36:46] [PASSED] 15 VFs
[22:36:46] [PASSED] 16 VFs
[22:36:46] [PASSED] 17 VFs
[22:36:46] [PASSED] 18 VFs
[22:36:46] [PASSED] 19 VFs
[22:36:46] [PASSED] 20 VFs
[22:36:46] [PASSED] 21 VFs
[22:36:46] [PASSED] 22 VFs
[22:36:46] [PASSED] 23 VFs
[22:36:46] [PASSED] 24 VFs
[22:36:46] [PASSED] 25 VFs
[22:36:46] [PASSED] 26 VFs
[22:36:46] [PASSED] 27 VFs
[22:36:46] [PASSED] 28 VFs
[22:36:46] [PASSED] 29 VFs
[22:36:46] [PASSED] 30 VFs
[22:36:46] [PASSED] 31 VFs
[22:36:46] [PASSED] 32 VFs
[22:36:46] [PASSED] 33 VFs
[22:36:46] [PASSED] 34 VFs
[22:36:46] [PASSED] 35 VFs
[22:36:46] [PASSED] 36 VFs
[22:36:46] [PASSED] 37 VFs
[22:36:46] [PASSED] 38 VFs
[22:36:46] [PASSED] 39 VFs
[22:36:46] [PASSED] 40 VFs
[22:36:46] [PASSED] 41 VFs
[22:36:46] [PASSED] 42 VFs
[22:36:46] [PASSED] 43 VFs
[22:36:46] [PASSED] 44 VFs
[22:36:46] [PASSED] 45 VFs
[22:36:46] [PASSED] 46 VFs
[22:36:46] [PASSED] 47 VFs
[22:36:46] [PASSED] 48 VFs
[22:36:46] [PASSED] 49 VFs
[22:36:46] [PASSED] 50 VFs
[22:36:46] [PASSED] 51 VFs
[22:36:46] [PASSED] 52 VFs
[22:36:46] [PASSED] 53 VFs
[22:36:46] [PASSED] 54 VFs
[22:36:46] [PASSED] 55 VFs
[22:36:46] [PASSED] 56 VFs
[22:36:46] [PASSED] 57 VFs
[22:36:46] [PASSED] 58 VFs
[22:36:46] [PASSED] 59 VFs
[22:36:47] [PASSED] 60 VFs
[22:36:47] [PASSED] 61 VFs
[22:36:47] [PASSED] 62 VFs
[22:36:47] [PASSED] 63 VFs
[22:36:47] ==================== [PASSED] fair_vram ====================
[22:36:47] ================== [PASSED] pf_gt_config ===================
[22:36:47] ===================== lmtt (1 subtest) =====================
[22:36:47] ======================== test_ops =========================
[22:36:47] [PASSED] 2-level
[22:36:47] [PASSED] multi-level
[22:36:47] ==================== [PASSED] test_ops =====================
[22:36:47] ====================== [PASSED] lmtt =======================
[22:36:47] ================= pf_service (11 subtests) =================
[22:36:47] [PASSED] pf_negotiate_any
[22:36:47] [PASSED] pf_negotiate_base_match
[22:36:47] [PASSED] pf_negotiate_base_newer
[22:36:47] [PASSED] pf_negotiate_base_next
[22:36:47] [SKIPPED] pf_negotiate_base_older
[22:36:47] [PASSED] pf_negotiate_base_prev
[22:36:47] [PASSED] pf_negotiate_latest_match
[22:36:47] [PASSED] pf_negotiate_latest_newer
[22:36:47] [PASSED] pf_negotiate_latest_next
[22:36:47] [SKIPPED] pf_negotiate_latest_older
[22:36:47] [SKIPPED] pf_negotiate_latest_prev
[22:36:47] =================== [PASSED] pf_service ====================
[22:36:47] ================= xe_guc_g2g (2 subtests) ==================
[22:36:47] ============== xe_live_guc_g2g_kunit_default ==============
[22:36:47] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:36:47] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:36:47] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:36:47] =================== [SKIPPED] xe_guc_g2g ===================
[22:36:47] =================== xe_mocs (2 subtests) ===================
[22:36:47] ================ xe_live_mocs_kernel_kunit ================
[22:36:47] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:36:47] ================ xe_live_mocs_reset_kunit =================
[22:36:47] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:36:47] ==================== [SKIPPED] xe_mocs =====================
[22:36:47] ================= xe_migrate (2 subtests) ==================
[22:36:47] ================= xe_migrate_sanity_kunit =================
[22:36:47] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:36:47] ================== xe_validate_ccs_kunit ==================
[22:36:47] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:36:47] =================== [SKIPPED] xe_migrate ===================
[22:36:47] ================== xe_dma_buf (1 subtest) ==================
[22:36:47] ==================== xe_dma_buf_kunit =====================
[22:36:47] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:36:47] =================== [SKIPPED] xe_dma_buf ===================
[22:36:47] ================= xe_bo_shrink (1 subtest) =================
[22:36:47] =================== xe_bo_shrink_kunit ====================
[22:36:47] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:36:47] ================== [SKIPPED] xe_bo_shrink ==================
[22:36:47] ==================== xe_bo (2 subtests) ====================
[22:36:47] ================== xe_ccs_migrate_kunit ===================
[22:36:47] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:36:47] ==================== xe_bo_evict_kunit ====================
[22:36:47] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:36:47] ===================== [SKIPPED] xe_bo ======================
[22:36:47] ==================== args (13 subtests) ====================
[22:36:47] [PASSED] count_args_test
[22:36:47] [PASSED] call_args_example
[22:36:47] [PASSED] call_args_test
[22:36:47] [PASSED] drop_first_arg_example
[22:36:47] [PASSED] drop_first_arg_test
[22:36:47] [PASSED] first_arg_example
[22:36:47] [PASSED] first_arg_test
[22:36:47] [PASSED] last_arg_example
[22:36:47] [PASSED] last_arg_test
[22:36:47] [PASSED] pick_arg_example
[22:36:47] [PASSED] if_args_example
[22:36:47] [PASSED] if_args_test
[22:36:47] [PASSED] sep_comma_example
[22:36:47] ====================== [PASSED] args =======================
[22:36:47] =================== xe_pci (3 subtests) ====================
[22:36:47] ==================== check_graphics_ip ====================
[22:36:47] [PASSED] 12.00 Xe_LP
[22:36:47] [PASSED] 12.10 Xe_LP+
[22:36:47] [PASSED] 12.55 Xe_HPG
[22:36:47] [PASSED] 12.60 Xe_HPC
[22:36:47] [PASSED] 12.70 Xe_LPG
[22:36:47] [PASSED] 12.71 Xe_LPG
[22:36:47] [PASSED] 12.74 Xe_LPG+
[22:36:47] [PASSED] 20.01 Xe2_HPG
[22:36:47] [PASSED] 20.02 Xe2_HPG
[22:36:47] [PASSED] 20.04 Xe2_LPG
[22:36:47] [PASSED] 30.00 Xe3_LPG
[22:36:47] [PASSED] 30.01 Xe3_LPG
[22:36:47] [PASSED] 30.03 Xe3_LPG
[22:36:47] [PASSED] 30.04 Xe3_LPG
[22:36:47] [PASSED] 30.05 Xe3_LPG
[22:36:47] [PASSED] 35.10 Xe3p_LPG
[22:36:47] [PASSED] 35.11 Xe3p_XPC
[22:36:47] ================ [PASSED] check_graphics_ip ================
[22:36:47] ===================== check_media_ip ======================
[22:36:47] [PASSED] 12.00 Xe_M
[22:36:47] [PASSED] 12.55 Xe_HPM
[22:36:47] [PASSED] 13.00 Xe_LPM+
[22:36:47] [PASSED] 13.01 Xe2_HPM
[22:36:47] [PASSED] 20.00 Xe2_LPM
[22:36:47] [PASSED] 30.00 Xe3_LPM
[22:36:47] [PASSED] 30.02 Xe3_LPM
[22:36:47] [PASSED] 35.00 Xe3p_LPM
[22:36:47] [PASSED] 35.03 Xe3p_HPM
[22:36:47] ================= [PASSED] check_media_ip ==================
[22:36:47] =================== check_platform_desc ===================
[22:36:47] [PASSED] 0x9A60 (TIGERLAKE)
[22:36:47] [PASSED] 0x9A68 (TIGERLAKE)
[22:36:47] [PASSED] 0x9A70 (TIGERLAKE)
[22:36:47] [PASSED] 0x9A40 (TIGERLAKE)
[22:36:47] [PASSED] 0x9A49 (TIGERLAKE)
[22:36:47] [PASSED] 0x9A59 (TIGERLAKE)
[22:36:47] [PASSED] 0x9A78 (TIGERLAKE)
[22:36:47] [PASSED] 0x9AC0 (TIGERLAKE)
[22:36:47] [PASSED] 0x9AC9 (TIGERLAKE)
[22:36:47] [PASSED] 0x9AD9 (TIGERLAKE)
[22:36:47] [PASSED] 0x9AF8 (TIGERLAKE)
[22:36:47] [PASSED] 0x4C80 (ROCKETLAKE)
[22:36:47] [PASSED] 0x4C8A (ROCKETLAKE)
[22:36:47] [PASSED] 0x4C8B (ROCKETLAKE)
[22:36:47] [PASSED] 0x4C8C (ROCKETLAKE)
[22:36:47] [PASSED] 0x4C90 (ROCKETLAKE)
[22:36:47] [PASSED] 0x4C9A (ROCKETLAKE)
[22:36:47] [PASSED] 0x4680 (ALDERLAKE_S)
[22:36:47] [PASSED] 0x4682 (ALDERLAKE_S)
[22:36:47] [PASSED] 0x4688 (ALDERLAKE_S)
[22:36:47] [PASSED] 0x468A (ALDERLAKE_S)
[22:36:47] [PASSED] 0x468B (ALDERLAKE_S)
[22:36:47] [PASSED] 0x4690 (ALDERLAKE_S)
[22:36:47] [PASSED] 0x4692 (ALDERLAKE_S)
[22:36:47] [PASSED] 0x4693 (ALDERLAKE_S)
[22:36:47] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46AA (ALDERLAKE_P)
[22:36:47] [PASSED] 0x462A (ALDERLAKE_P)
[22:36:47] [PASSED] 0x4626 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x4628 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:36:47] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:36:47] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:36:47] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:36:47] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:36:47] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:36:47] [PASSED] 0xA721 (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA720 (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:36:47] [PASSED] 0xA780 (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA781 (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA782 (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA783 (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA788 (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA789 (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA78A (ALDERLAKE_S)
[22:36:47] [PASSED] 0xA78B (ALDERLAKE_S)
[22:36:47] [PASSED] 0x4905 (DG1)
[22:36:47] [PASSED] 0x4906 (DG1)
[22:36:47] [PASSED] 0x4907 (DG1)
[22:36:47] [PASSED] 0x4908 (DG1)
[22:36:47] [PASSED] 0x4909 (DG1)
[22:36:47] [PASSED] 0x56C0 (DG2)
[22:36:47] [PASSED] 0x56C2 (DG2)
[22:36:47] [PASSED] 0x56C1 (DG2)
[22:36:47] [PASSED] 0x7D51 (METEORLAKE)
[22:36:47] [PASSED] 0x7DD1 (METEORLAKE)
[22:36:47] [PASSED] 0x7D41 (METEORLAKE)
[22:36:47] [PASSED] 0x7D67 (METEORLAKE)
[22:36:47] [PASSED] 0xB640 (METEORLAKE)
[22:36:47] [PASSED] 0x56A0 (DG2)
[22:36:47] [PASSED] 0x56A1 (DG2)
[22:36:47] [PASSED] 0x56A2 (DG2)
[22:36:47] [PASSED] 0x56BE (DG2)
[22:36:47] [PASSED] 0x56BF (DG2)
[22:36:47] [PASSED] 0x5690 (DG2)
[22:36:47] [PASSED] 0x5691 (DG2)
[22:36:47] [PASSED] 0x5692 (DG2)
[22:36:47] [PASSED] 0x56A5 (DG2)
[22:36:47] [PASSED] 0x56A6 (DG2)
[22:36:47] [PASSED] 0x56B0 (DG2)
[22:36:47] [PASSED] 0x56B1 (DG2)
[22:36:47] [PASSED] 0x56BA (DG2)
[22:36:47] [PASSED] 0x56BB (DG2)
[22:36:47] [PASSED] 0x56BC (DG2)
[22:36:47] [PASSED] 0x56BD (DG2)
[22:36:47] [PASSED] 0x5693 (DG2)
[22:36:47] [PASSED] 0x5694 (DG2)
[22:36:47] [PASSED] 0x5695 (DG2)
[22:36:47] [PASSED] 0x56A3 (DG2)
[22:36:47] [PASSED] 0x56A4 (DG2)
[22:36:47] [PASSED] 0x56B2 (DG2)
[22:36:47] [PASSED] 0x56B3 (DG2)
[22:36:47] [PASSED] 0x5696 (DG2)
[22:36:47] [PASSED] 0x5697 (DG2)
[22:36:47] [PASSED] 0xB69 (PVC)
[22:36:47] [PASSED] 0xB6E (PVC)
[22:36:47] [PASSED] 0xBD4 (PVC)
[22:36:47] [PASSED] 0xBD5 (PVC)
[22:36:47] [PASSED] 0xBD6 (PVC)
[22:36:47] [PASSED] 0xBD7 (PVC)
[22:36:47] [PASSED] 0xBD8 (PVC)
[22:36:47] [PASSED] 0xBD9 (PVC)
[22:36:47] [PASSED] 0xBDA (PVC)
[22:36:47] [PASSED] 0xBDB (PVC)
[22:36:47] [PASSED] 0xBE0 (PVC)
[22:36:47] [PASSED] 0xBE1 (PVC)
[22:36:47] [PASSED] 0xBE5 (PVC)
[22:36:47] [PASSED] 0x7D40 (METEORLAKE)
[22:36:47] [PASSED] 0x7D45 (METEORLAKE)
[22:36:47] [PASSED] 0x7D55 (METEORLAKE)
[22:36:47] [PASSED] 0x7D60 (METEORLAKE)
[22:36:47] [PASSED] 0x7DD5 (METEORLAKE)
[22:36:47] [PASSED] 0x6420 (LUNARLAKE)
[22:36:47] [PASSED] 0x64A0 (LUNARLAKE)
[22:36:47] [PASSED] 0x64B0 (LUNARLAKE)
[22:36:47] [PASSED] 0xE202 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE209 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE20B (BATTLEMAGE)
[22:36:47] [PASSED] 0xE20C (BATTLEMAGE)
[22:36:47] [PASSED] 0xE20D (BATTLEMAGE)
[22:36:47] [PASSED] 0xE210 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE211 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE212 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE216 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE220 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE221 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE222 (BATTLEMAGE)
[22:36:47] [PASSED] 0xE223 (BATTLEMAGE)
[22:36:47] [PASSED] 0xB080 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB081 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB082 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB083 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB084 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB085 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB086 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB087 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB08F (PANTHERLAKE)
[22:36:47] [PASSED] 0xB090 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:36:47] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:36:47] [PASSED] 0xFD80 (PANTHERLAKE)
[22:36:47] [PASSED] 0xFD81 (PANTHERLAKE)
[22:36:47] [PASSED] 0xD740 (NOVALAKE_S)
[22:36:47] [PASSED] 0xD741 (NOVALAKE_S)
[22:36:47] [PASSED] 0xD742 (NOVALAKE_S)
[22:36:47] [PASSED] 0xD743 (NOVALAKE_S)
[22:36:47] [PASSED] 0xD744 (NOVALAKE_S)
[22:36:47] [PASSED] 0xD745 (NOVALAKE_S)
[22:36:47] [PASSED] 0x674C (CRESCENTISLAND)
[22:36:47] [PASSED] 0xD750 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD751 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD752 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD753 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD754 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD755 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD756 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD757 (NOVALAKE_P)
[22:36:47] [PASSED] 0xD75F (NOVALAKE_P)
[22:36:47] =============== [PASSED] check_platform_desc ===============
[22:36:47] ===================== [PASSED] xe_pci ======================
[22:36:47] =================== xe_rtp (2 subtests) ====================
[22:36:47] =============== xe_rtp_process_to_sr_tests ================
[22:36:47] [PASSED] coalesce-same-reg
[22:36:47] [PASSED] no-match-no-add
[22:36:47] [PASSED] match-or
[22:36:47] [PASSED] match-or-xfail
[22:36:47] [PASSED] no-match-no-add-multiple-rules
[22:36:47] [PASSED] two-regs-two-entries
[22:36:47] [PASSED] clr-one-set-other
[22:36:47] [PASSED] set-field
[22:36:47] [PASSED] conflict-duplicate
[22:36:47] [PASSED] conflict-not-disjoint
[22:36:47] [PASSED] conflict-reg-type
[22:36:47] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:36:47] ================== xe_rtp_process_tests ===================
[22:36:47] [PASSED] active1
[22:36:47] [PASSED] active2
[22:36:47] [PASSED] active-inactive
[22:36:47] [PASSED] inactive-active
[22:36:47] [PASSED] inactive-1st_or_active-inactive
[22:36:47] [PASSED] inactive-2nd_or_active-inactive
[22:36:47] [PASSED] inactive-last_or_active-inactive
[22:36:47] [PASSED] inactive-no_or_active-inactive
[22:36:47] ============== [PASSED] xe_rtp_process_tests ===============
[22:36:47] ===================== [PASSED] xe_rtp ======================
[22:36:47] ==================== xe_wa (1 subtest) =====================
[22:36:47] ======================== xe_wa_gt =========================
[22:36:47] [PASSED] TIGERLAKE B0
[22:36:47] [PASSED] DG1 A0
[22:36:47] [PASSED] DG1 B0
[22:36:47] [PASSED] ALDERLAKE_S A0
[22:36:47] [PASSED] ALDERLAKE_S B0
[22:36:47] [PASSED] ALDERLAKE_S C0
[22:36:47] [PASSED] ALDERLAKE_S D0
[22:36:47] [PASSED] ALDERLAKE_P A0
[22:36:47] [PASSED] ALDERLAKE_P B0
[22:36:47] [PASSED] ALDERLAKE_P C0
[22:36:47] [PASSED] ALDERLAKE_S RPLS D0
[22:36:47] [PASSED] ALDERLAKE_P RPLU E0
[22:36:47] [PASSED] DG2 G10 C0
[22:36:47] [PASSED] DG2 G11 B1
[22:36:47] [PASSED] DG2 G12 A1
[22:36:47] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:36:47] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:36:47] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:36:47] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:36:47] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:36:47] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:36:47] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:36:47] ==================== [PASSED] xe_wa_gt =====================
[22:36:47] ====================== [PASSED] xe_wa ======================
[22:36:47] ============================================================
[22:36:47] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[22:36:47] Elapsed time: 36.016s total, 4.321s configuring, 31.079s building, 0.604s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:36:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:36:48] 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
[22:37:13] Starting KUnit Kernel (1/1)...
[22:37:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:13] ============ drm_test_pick_cmdline (2 subtests) ============
[22:37:13] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:37:13] =============== drm_test_pick_cmdline_named ===============
[22:37:13] [PASSED] NTSC
[22:37:13] [PASSED] NTSC-J
[22:37:13] [PASSED] PAL
[22:37:13] [PASSED] PAL-M
[22:37:13] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:37:13] ============== [PASSED] drm_test_pick_cmdline ==============
[22:37:13] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:37:13] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:37:13] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:37:13] =========== drm_validate_clone_mode (2 subtests) ===========
[22:37:13] ============== drm_test_check_in_clone_mode ===============
[22:37:13] [PASSED] in_clone_mode
[22:37:13] [PASSED] not_in_clone_mode
[22:37:13] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:37:13] =============== drm_test_check_valid_clones ===============
[22:37:13] [PASSED] not_in_clone_mode
[22:37:13] [PASSED] valid_clone
[22:37:13] [PASSED] invalid_clone
[22:37:13] =========== [PASSED] drm_test_check_valid_clones ===========
[22:37:13] ============= [PASSED] drm_validate_clone_mode =============
[22:37:13] ============= drm_validate_modeset (1 subtest) =============
[22:37:13] [PASSED] drm_test_check_connector_changed_modeset
[22:37:13] ============== [PASSED] drm_validate_modeset ===============
[22:37:13] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:37:13] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:37:13] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:37:13] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:37:13] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:37:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:37:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:37:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:37:13] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:37:13] ============== drm_bridge_alloc (2 subtests) ===============
[22:37:13] [PASSED] drm_test_drm_bridge_alloc_basic
[22:37:13] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:37:13] ================ [PASSED] drm_bridge_alloc =================
[22:37:13] ============= drm_cmdline_parser (40 subtests) =============
[22:37:13] [PASSED] drm_test_cmdline_force_d_only
[22:37:13] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:37:13] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:37:13] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:37:13] [PASSED] drm_test_cmdline_force_e_only
[22:37:13] [PASSED] drm_test_cmdline_res
[22:37:13] [PASSED] drm_test_cmdline_res_vesa
[22:37:13] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:37:13] [PASSED] drm_test_cmdline_res_rblank
[22:37:13] [PASSED] drm_test_cmdline_res_bpp
[22:37:13] [PASSED] drm_test_cmdline_res_refresh
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:37:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:37:13] [PASSED] drm_test_cmdline_res_margins_force_on
[22:37:13] [PASSED] drm_test_cmdline_res_vesa_margins
[22:37:13] [PASSED] drm_test_cmdline_name
[22:37:13] [PASSED] drm_test_cmdline_name_bpp
[22:37:13] [PASSED] drm_test_cmdline_name_option
[22:37:13] [PASSED] drm_test_cmdline_name_bpp_option
[22:37:13] [PASSED] drm_test_cmdline_rotate_0
[22:37:13] [PASSED] drm_test_cmdline_rotate_90
[22:37:13] [PASSED] drm_test_cmdline_rotate_180
[22:37:13] [PASSED] drm_test_cmdline_rotate_270
[22:37:13] [PASSED] drm_test_cmdline_hmirror
[22:37:13] [PASSED] drm_test_cmdline_vmirror
[22:37:13] [PASSED] drm_test_cmdline_margin_options
[22:37:13] [PASSED] drm_test_cmdline_multiple_options
[22:37:13] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:37:13] [PASSED] drm_test_cmdline_extra_and_option
[22:37:13] [PASSED] drm_test_cmdline_freestanding_options
[22:37:13] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:37:13] [PASSED] drm_test_cmdline_panel_orientation
[22:37:13] ================ drm_test_cmdline_invalid =================
[22:37:13] [PASSED] margin_only
[22:37:13] [PASSED] interlace_only
[22:37:13] [PASSED] res_missing_x
[22:37:13] [PASSED] res_missing_y
[22:37:13] [PASSED] res_bad_y
[22:37:13] [PASSED] res_missing_y_bpp
[22:37:13] [PASSED] res_bad_bpp
[22:37:13] [PASSED] res_bad_refresh
[22:37:13] [PASSED] res_bpp_refresh_force_on_off
[22:37:13] [PASSED] res_invalid_mode
[22:37:13] [PASSED] res_bpp_wrong_place_mode
[22:37:13] [PASSED] name_bpp_refresh
[22:37:13] [PASSED] name_refresh
[22:37:13] [PASSED] name_refresh_wrong_mode
[22:37:13] [PASSED] name_refresh_invalid_mode
[22:37:13] [PASSED] rotate_multiple
[22:37:13] [PASSED] rotate_invalid_val
[22:37:13] [PASSED] rotate_truncated
[22:37:13] [PASSED] invalid_option
[22:37:13] [PASSED] invalid_tv_option
[22:37:13] [PASSED] truncated_tv_option
[22:37:13] ============ [PASSED] drm_test_cmdline_invalid =============
[22:37:13] =============== drm_test_cmdline_tv_options ===============
[22:37:13] [PASSED] NTSC
[22:37:13] [PASSED] NTSC_443
[22:37:13] [PASSED] NTSC_J
[22:37:13] [PASSED] PAL
[22:37:13] [PASSED] PAL_M
[22:37:13] [PASSED] PAL_N
[22:37:13] [PASSED] SECAM
[22:37:13] [PASSED] MONO_525
[22:37:13] [PASSED] MONO_625
[22:37:13] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:37:13] =============== [PASSED] drm_cmdline_parser ================
[22:37:13] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:37:13] [PASSED] drm_test_connector_hdmi_init_valid
[22:37:13] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:37:13] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:37:13] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:37:13] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:37:13] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:37:13] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:37:13] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:37:13] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:37:13] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:37:13] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:37:13] [PASSED] supported_formats=0x5 yuv420_allowed=1
[22:37:13] [PASSED] supported_formats=0x5 yuv420_allowed=0
[22:37:13] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:37:13] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:37:13] [PASSED] drm_test_connector_hdmi_init_null_product
[22:37:13] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:37:13] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:37:13] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:37:13] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:37:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:37:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:37:13] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:37:13] ========= drm_test_connector_hdmi_init_type_valid =========
[22:37:13] [PASSED] HDMI-A
[22:37:13] [PASSED] HDMI-B
[22:37:13] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:37:13] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:37:13] [PASSED] Unknown
[22:37:13] [PASSED] VGA
[22:37:13] [PASSED] DVI-I
[22:37:13] [PASSED] DVI-D
[22:37:13] [PASSED] DVI-A
[22:37:13] [PASSED] Composite
[22:37:13] [PASSED] SVIDEO
[22:37:13] [PASSED] LVDS
[22:37:13] [PASSED] Component
[22:37:13] [PASSED] DIN
[22:37:13] [PASSED] DP
[22:37:13] [PASSED] TV
[22:37:13] [PASSED] eDP
[22:37:13] [PASSED] Virtual
[22:37:13] [PASSED] DSI
[22:37:13] [PASSED] DPI
[22:37:13] [PASSED] Writeback
[22:37:13] [PASSED] SPI
[22:37:13] [PASSED] USB
[22:37:13] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:37:13] ============ [PASSED] drmm_connector_hdmi_init =============
[22:37:13] ============= drmm_connector_init (3 subtests) =============
[22:37:13] [PASSED] drm_test_drmm_connector_init
[22:37:13] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:37:13] ========= drm_test_drmm_connector_init_type_valid =========
[22:37:13] [PASSED] Unknown
[22:37:13] [PASSED] VGA
[22:37:13] [PASSED] DVI-I
[22:37:13] [PASSED] DVI-D
[22:37:13] [PASSED] DVI-A
[22:37:13] [PASSED] Composite
[22:37:13] [PASSED] SVIDEO
[22:37:13] [PASSED] LVDS
[22:37:13] [PASSED] Component
[22:37:13] [PASSED] DIN
[22:37:13] [PASSED] DP
[22:37:13] [PASSED] HDMI-A
[22:37:13] [PASSED] HDMI-B
[22:37:13] [PASSED] TV
[22:37:13] [PASSED] eDP
[22:37:13] [PASSED] Virtual
[22:37:13] [PASSED] DSI
[22:37:13] [PASSED] DPI
[22:37:13] [PASSED] Writeback
[22:37:13] [PASSED] SPI
[22:37:13] [PASSED] USB
[22:37:13] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:37:13] =============== [PASSED] drmm_connector_init ===============
[22:37:13] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_init
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:37:13] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:37:13] [PASSED] Unknown
[22:37:13] [PASSED] VGA
[22:37:13] [PASSED] DVI-I
[22:37:13] [PASSED] DVI-D
[22:37:13] [PASSED] DVI-A
[22:37:13] [PASSED] Composite
[22:37:13] [PASSED] SVIDEO
[22:37:13] [PASSED] LVDS
[22:37:13] [PASSED] Component
[22:37:13] [PASSED] DIN
[22:37:13] [PASSED] DP
[22:37:13] [PASSED] HDMI-A
[22:37:13] [PASSED] HDMI-B
[22:37:13] [PASSED] TV
[22:37:13] [PASSED] eDP
[22:37:13] [PASSED] Virtual
[22:37:13] [PASSED] DSI
[22:37:13] [PASSED] DPI
[22:37:13] [PASSED] Writeback
[22:37:13] [PASSED] SPI
[22:37:13] [PASSED] USB
[22:37:13] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:37:13] ======== drm_test_drm_connector_dynamic_init_name =========
[22:37:13] [PASSED] Unknown
[22:37:13] [PASSED] VGA
[22:37:13] [PASSED] DVI-I
[22:37:13] [PASSED] DVI-D
[22:37:13] [PASSED] DVI-A
[22:37:13] [PASSED] Composite
[22:37:13] [PASSED] SVIDEO
[22:37:13] [PASSED] LVDS
[22:37:13] [PASSED] Component
[22:37:13] [PASSED] DIN
[22:37:13] [PASSED] DP
[22:37:13] [PASSED] HDMI-A
[22:37:13] [PASSED] HDMI-B
[22:37:13] [PASSED] TV
[22:37:13] [PASSED] eDP
[22:37:13] [PASSED] Virtual
[22:37:13] [PASSED] DSI
[22:37:13] [PASSED] DPI
[22:37:13] [PASSED] Writeback
[22:37:13] [PASSED] SPI
[22:37:13] [PASSED] USB
[22:37:13] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:37:13] =========== [PASSED] drm_connector_dynamic_init ============
[22:37:13] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:37:13] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:37:13] ======= drm_connector_dynamic_register (7 subtests) ========
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:37:13] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:37:13] ========= [PASSED] drm_connector_dynamic_register ==========
[22:37:13] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:37:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:37:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:37:13] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:37:13] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:37:13] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:37:13] [PASSED] NTSC
[22:37:13] [PASSED] NTSC-443
[22:37:13] [PASSED] NTSC-J
[22:37:13] [PASSED] PAL
[22:37:13] [PASSED] PAL-M
[22:37:13] [PASSED] PAL-N
[22:37:13] [PASSED] SECAM
[22:37:13] [PASSED] Mono
[22:37:13] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:37:13] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:37:13] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:37:13] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:37:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:37:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:37:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:37:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:37:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:37:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:37:13] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:37:13] [PASSED] VIC 96
[22:37:13] [PASSED] VIC 97
[22:37:13] [PASSED] VIC 101
[22:37:13] [PASSED] VIC 102
[22:37:13] [PASSED] VIC 106
[22:37:13] [PASSED] VIC 107
[22:37:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:37:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:37:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:37:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:37:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:37:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:37:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:37:13] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:37:13] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:37:13] [PASSED] Automatic
[22:37:13] [PASSED] Full
[22:37:13] [PASSED] Limited 16:235
[22:37:13] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:37:13] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:37:13] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:37:13] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:37:13] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:37:13] [PASSED] RGB
[22:37:13] [PASSED] YUV 4:2:0
[22:37:13] [PASSED] YUV 4:2:2
[22:37:13] [PASSED] YUV 4:4:4
[22:37:13] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:37:13] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:37:13] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:37:13] ============= drm_damage_helper (21 subtests) ==============
[22:37:13] [PASSED] drm_test_damage_iter_no_damage
[22:37:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:37:13] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:37:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:37:13] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:37:13] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:37:13] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:37:13] [PASSED] drm_test_damage_iter_simple_damage
[22:37:13] [PASSED] drm_test_damage_iter_single_damage
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:37:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:37:13] [PASSED] drm_test_damage_iter_damage
[22:37:13] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:37:13] [PASSED] drm_test_damage_iter_damage_one_outside
[22:37:13] [PASSED] drm_test_damage_iter_damage_src_moved
[22:37:13] [PASSED] drm_test_damage_iter_damage_not_visible
[22:37:13] ================ [PASSED] drm_damage_helper ================
[22:37:13] ============== drm_dp_mst_helper (3 subtests) ==============
[22:37:13] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:37:13] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:37:13] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:37:13] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:37:13] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:37:13] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:37:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:37:13] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:37:13] [PASSED] Link rate 2000000 lane count 4
[22:37:13] [PASSED] Link rate 2000000 lane count 2
[22:37:13] [PASSED] Link rate 2000000 lane count 1
[22:37:13] [PASSED] Link rate 1350000 lane count 4
[22:37:13] [PASSED] Link rate 1350000 lane count 2
[22:37:13] [PASSED] Link rate 1350000 lane count 1
[22:37:13] [PASSED] Link rate 1000000 lane count 4
[22:37:13] [PASSED] Link rate 1000000 lane count 2
[22:37:13] [PASSED] Link rate 1000000 lane count 1
[22:37:13] [PASSED] Link rate 810000 lane count 4
[22:37:13] [PASSED] Link rate 810000 lane count 2
[22:37:13] [PASSED] Link rate 810000 lane count 1
[22:37:13] [PASSED] Link rate 540000 lane count 4
[22:37:13] [PASSED] Link rate 540000 lane count 2
[22:37:13] [PASSED] Link rate 540000 lane count 1
[22:37:13] [PASSED] Link rate 270000 lane count 4
[22:37:13] [PASSED] Link rate 270000 lane count 2
[22:37:13] [PASSED] Link rate 270000 lane count 1
[22:37:13] [PASSED] Link rate 162000 lane count 4
[22:37:13] [PASSED] Link rate 162000 lane count 2
[22:37:13] [PASSED] Link rate 162000 lane count 1
[22:37:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:37:13] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:37:13] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:37:13] [PASSED] DP_POWER_UP_PHY with port number
[22:37:13] [PASSED] DP_POWER_DOWN_PHY with port number
[22:37:13] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:37:13] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:37:13] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:37:13] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:37:13] [PASSED] DP_QUERY_PAYLOAD with port number
[22:37:13] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:37:13] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:37:13] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:37:13] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:37:13] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:37:13] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:37:13] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:37:13] [PASSED] DP_REMOTE_I2C_READ with port number
[22:37:13] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:37:13] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:37:13] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:37:13] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:37:13] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:37:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:37:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:37:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:37:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:37:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:37:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:37:13] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:37:13] ================ [PASSED] drm_dp_mst_helper ================
[22:37:13] ================== drm_exec (7 subtests) ===================
[22:37:13] [PASSED] sanitycheck
[22:37:13] [PASSED] test_lock
[22:37:13] [PASSED] test_lock_unlock
[22:37:13] [PASSED] test_duplicates
[22:37:13] [PASSED] test_prepare
[22:37:13] [PASSED] test_prepare_array
[22:37:13] [PASSED] test_multiple_loops
[22:37:13] ==================== [PASSED] drm_exec =====================
[22:37:13] =========== drm_format_helper_test (17 subtests) ===========
[22:37:13] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:37:13] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:37:13] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:37:13] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:37:13] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:37:13] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:37:13] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:37:13] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:37:13] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:37:13] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:37:13] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:37:13] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:37:13] ==================== drm_test_fb_swab =====================
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ================ [PASSED] drm_test_fb_swab =================
[22:37:13] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:37:13] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:37:13] [PASSED] single_pixel_source_buffer
[22:37:13] [PASSED] single_pixel_clip_rectangle
[22:37:13] [PASSED] well_known_colors
[22:37:13] [PASSED] destination_pitch
[22:37:13] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:37:13] ================= drm_test_fb_clip_offset =================
[22:37:13] [PASSED] pass through
[22:37:13] [PASSED] horizontal offset
[22:37:13] [PASSED] vertical offset
[22:37:13] [PASSED] horizontal and vertical offset
[22:37:13] [PASSED] horizontal offset (custom pitch)
[22:37:13] [PASSED] vertical offset (custom pitch)
[22:37:13] [PASSED] horizontal and vertical offset (custom pitch)
[22:37:13] ============= [PASSED] drm_test_fb_clip_offset =============
[22:37:13] =================== drm_test_fb_memcpy ====================
[22:37:13] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:37:13] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:37:13] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:37:13] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:37:13] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:37:13] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:37:13] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:37:13] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:37:13] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:37:13] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:37:13] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:37:13] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:37:13] =============== [PASSED] drm_test_fb_memcpy ================
[22:37:13] ============= [PASSED] drm_format_helper_test ==============
[22:37:13] ================= drm_format (18 subtests) =================
[22:37:13] [PASSED] drm_test_format_block_width_invalid
[22:37:13] [PASSED] drm_test_format_block_width_one_plane
[22:37:13] [PASSED] drm_test_format_block_width_two_plane
[22:37:13] [PASSED] drm_test_format_block_width_three_plane
[22:37:13] [PASSED] drm_test_format_block_width_tiled
[22:37:13] [PASSED] drm_test_format_block_height_invalid
[22:37:13] [PASSED] drm_test_format_block_height_one_plane
[22:37:13] [PASSED] drm_test_format_block_height_two_plane
[22:37:13] [PASSED] drm_test_format_block_height_three_plane
[22:37:13] [PASSED] drm_test_format_block_height_tiled
[22:37:13] [PASSED] drm_test_format_min_pitch_invalid
[22:37:13] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:37:13] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:37:13] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:37:13] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:37:13] [PASSED] drm_test_format_min_pitch_two_plane
[22:37:13] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:37:13] [PASSED] drm_test_format_min_pitch_tiled
[22:37:13] =================== [PASSED] drm_format ====================
[22:37:13] ============== drm_framebuffer (10 subtests) ===============
[22:37:13] ========== drm_test_framebuffer_check_src_coords ==========
[22:37:13] [PASSED] Success: source fits into fb
[22:37:13] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:37:13] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:37:13] [PASSED] Fail: overflowing fb with source width
[22:37:13] [PASSED] Fail: overflowing fb with source height
[22:37:13] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:37:13] [PASSED] drm_test_framebuffer_cleanup
[22:37:13] =============== drm_test_framebuffer_create ===============
[22:37:13] [PASSED] ABGR8888 normal sizes
[22:37:13] [PASSED] ABGR8888 max sizes
[22:37:13] [PASSED] ABGR8888 pitch greater than min required
[22:37:13] [PASSED] ABGR8888 pitch less than min required
[22:37:13] [PASSED] ABGR8888 Invalid width
[22:37:13] [PASSED] ABGR8888 Invalid buffer handle
[22:37:13] [PASSED] No pixel format
[22:37:13] [PASSED] ABGR8888 Width 0
[22:37:13] [PASSED] ABGR8888 Height 0
[22:37:13] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:37:13] [PASSED] ABGR8888 Large buffer offset
[22:37:13] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:37:13] [PASSED] ABGR8888 Invalid flag
[22:37:13] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:37:13] [PASSED] ABGR8888 Valid buffer modifier
[22:37:13] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:37:13] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] NV12 Normal sizes
[22:37:13] [PASSED] NV12 Max sizes
[22:37:13] [PASSED] NV12 Invalid pitch
[22:37:13] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:37:13] [PASSED] NV12 different modifier per-plane
[22:37:13] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:37:13] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] NV12 Modifier for inexistent plane
[22:37:13] [PASSED] NV12 Handle for inexistent plane
[22:37:13] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:37:13] [PASSED] YVU420 Normal sizes
[22:37:13] [PASSED] YVU420 Max sizes
[22:37:13] [PASSED] YVU420 Invalid pitch
[22:37:13] [PASSED] YVU420 Different pitches
[22:37:13] [PASSED] YVU420 Different buffer offsets/pitches
[22:37:13] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:37:13] [PASSED] YVU420 Valid modifier
[22:37:13] [PASSED] YVU420 Different modifiers per plane
[22:37:13] [PASSED] YVU420 Modifier for inexistent plane
[22:37:13] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:37:13] [PASSED] X0L2 Normal sizes
[22:37:13] [PASSED] X0L2 Max sizes
[22:37:13] [PASSED] X0L2 Invalid pitch
[22:37:13] [PASSED] X0L2 Pitch greater than minimum required
[22:37:13] [PASSED] X0L2 Handle for inexistent plane
[22:37:13] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:37:13] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:37:13] [PASSED] X0L2 Valid modifier
[22:37:13] [PASSED] X0L2 Modifier for inexistent plane
[22:37:13] =========== [PASSED] drm_test_framebuffer_create ===========
[22:37:13] [PASSED] drm_test_framebuffer_free
[22:37:13] [PASSED] drm_test_framebuffer_init
[22:37:13] [PASSED] drm_test_framebuffer_init_bad_format
[22:37:13] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:37:13] [PASSED] drm_test_framebuffer_lookup
[22:37:13] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:37:13] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:37:13] ================= [PASSED] drm_framebuffer =================
[22:37:13] ================ drm_gem_shmem (8 subtests) ================
[22:37:13] [PASSED] drm_gem_shmem_test_obj_create
[22:37:13] [PASSED] drm_gem_shmem_test_obj_create_private
[22:37:13] [PASSED] drm_gem_shmem_test_pin_pages
[22:37:13] [PASSED] drm_gem_shmem_test_vmap
[22:37:13] [PASSED] drm_gem_shmem_test_get_sg_table
[22:37:13] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:37:13] [PASSED] drm_gem_shmem_test_madvise
[22:37:13] [PASSED] drm_gem_shmem_test_purge
[22:37:13] ================== [PASSED] drm_gem_shmem ==================
[22:37:13] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:37:13] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:37:13] [PASSED] Automatic
[22:37:13] [PASSED] Full
[22:37:13] [PASSED] Limited 16:235
[22:37:13] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:37:13] [PASSED] drm_test_check_disable_connector
[22:37:13] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:37:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:37:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:37:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:37:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:37:13] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:37:13] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:37:13] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:37:13] [PASSED] drm_test_check_output_bpc_dvi
[22:37:13] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:37:13] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:37:13] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:37:13] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:37:13] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:37:13] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:37:13] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:37:13] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:37:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:37:13] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:37:13] [PASSED] drm_test_check_broadcast_rgb_value
[22:37:13] [PASSED] drm_test_check_bpc_8_value
[22:37:13] [PASSED] drm_test_check_bpc_10_value
[22:37:13] [PASSED] drm_test_check_bpc_12_value
[22:37:13] [PASSED] drm_test_check_format_value
[22:37:13] [PASSED] drm_test_check_tmds_char_value
[22:37:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:37:13] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:37:13] [PASSED] drm_test_check_mode_valid
[22:37:13] [PASSED] drm_test_check_mode_valid_reject
[22:37:13] [PASSED] drm_test_check_mode_valid_reject_rate
[22:37:13] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:37:13] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:37:13] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[22:37:13] [PASSED] drm_test_check_infoframes
[22:37:13] [PASSED] drm_test_check_reject_avi_infoframe
[22:37:13] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[22:37:13] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[22:37:13] [PASSED] drm_test_check_reject_audio_infoframe
[22:37:13] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[22:37:13] ================= drm_managed (2 subtests) =================
[22:37:13] [PASSED] drm_test_managed_release_action
[22:37:13] [PASSED] drm_test_managed_run_action
[22:37:13] =================== [PASSED] drm_managed ===================
[22:37:13] =================== drm_mm (6 subtests) ====================
[22:37:13] [PASSED] drm_test_mm_init
[22:37:13] [PASSED] drm_test_mm_debug
[22:37:13] [PASSED] drm_test_mm_align32
[22:37:13] [PASSED] drm_test_mm_align64
[22:37:13] [PASSED] drm_test_mm_lowest
[22:37:13] [PASSED] drm_test_mm_highest
[22:37:13] ===================== [PASSED] drm_mm ======================
[22:37:13] ============= drm_modes_analog_tv (5 subtests) =============
[22:37:13] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:37:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:37:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:37:13] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:37:13] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:37:13] =============== [PASSED] drm_modes_analog_tv ===============
[22:37:13] ============== drm_plane_helper (2 subtests) ===============
[22:37:13] =============== drm_test_check_plane_state ================
[22:37:13] [PASSED] clipping_simple
[22:37:13] [PASSED] clipping_rotate_reflect
[22:37:13] [PASSED] positioning_simple
[22:37:13] [PASSED] upscaling
[22:37:13] [PASSED] downscaling
[22:37:13] [PASSED] rounding1
[22:37:13] [PASSED] rounding2
[22:37:13] [PASSED] rounding3
[22:37:13] [PASSED] rounding4
[22:37:13] =========== [PASSED] drm_test_check_plane_state ============
[22:37:13] =========== drm_test_check_invalid_plane_state ============
[22:37:13] [PASSED] positioning_invalid
[22:37:13] [PASSED] upscaling_invalid
[22:37:13] [PASSED] downscaling_invalid
[22:37:13] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:37:13] ================ [PASSED] drm_plane_helper =================
[22:37:13] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:37:13] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:37:13] [PASSED] None
[22:37:13] [PASSED] PAL
[22:37:13] [PASSED] NTSC
[22:37:13] [PASSED] Both, NTSC Default
[22:37:13] [PASSED] Both, PAL Default
[22:37:13] [PASSED] Both, NTSC Default, with PAL on command-line
[22:37:13] [PASSED] Both, PAL Default, with NTSC on command-line
[22:37:13] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:37:13] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:37:13] ================== drm_rect (9 subtests) ===================
[22:37:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:37:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:37:13] [PASSED] drm_test_rect_clip_scaled_clipped
[22:37:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:37:13] ================= drm_test_rect_intersect =================
[22:37:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:37:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:37:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:37:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:37:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:37:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:37:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:37:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:37:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:37:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:37:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:37:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:37:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:37:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:37:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:37:13] ============= [PASSED] drm_test_rect_intersect =============
[22:37:13] ================ drm_test_rect_calc_hscale ================
[22:37:13] [PASSED] normal use
[22:37:13] [PASSED] out of max range
[22:37:13] [PASSED] out of min range
[22:37:13] [PASSED] zero dst
[22:37:13] [PASSED] negative src
[22:37:13] [PASSED] negative dst
[22:37:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:37:13] ================ drm_test_rect_calc_vscale ================
[22:37:13] [PASSED] normal use
[22:37:13] [PASSED] out of max range
[22:37:13] [PASSED] out of min range
[22:37:13] [PASSED] zero dst
[22:37:13] [PASSED] negative src
[22:37:13] [PASSED] negative dst
[22:37:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:37:13] ================== drm_test_rect_rotate ===================
[22:37:13] [PASSED] reflect-x
[22:37:13] [PASSED] reflect-y
[22:37:13] [PASSED] rotate-0
[22:37:13] [PASSED] rotate-90
[22:37:13] [PASSED] rotate-180
[22:37:13] [PASSED] rotate-270
[22:37:13] ============== [PASSED] drm_test_rect_rotate ===============
[22:37:13] ================ drm_test_rect_rotate_inv =================
[22:37:13] [PASSED] reflect-x
[22:37:13] [PASSED] reflect-y
[22:37:13] [PASSED] rotate-0
[22:37:13] [PASSED] rotate-90
[22:37:13] [PASSED] rotate-180
[22:37:13] [PASSED] rotate-270
[22:37:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:37:13] ==================== [PASSED] drm_rect =====================
[22:37:13] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:37:13] ============ drm_test_sysfb_build_fourcc_list =============
[22:37:13] [PASSED] no native formats
[22:37:13] [PASSED] XRGB8888 as native format
[22:37:13] [PASSED] remove duplicates
[22:37:13] [PASSED] convert alpha formats
[22:37:13] [PASSED] random formats
[22:37:13] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:37:13] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:37:13] ================== drm_fixp (2 subtests) ===================
[22:37:13] [PASSED] drm_test_int2fixp
[22:37:13] [PASSED] drm_test_sm2fixp
[22:37:13] ==================== [PASSED] drm_fixp =====================
[22:37:13] ============================================================
[22:37:13] Testing complete. Ran 621 tests: passed: 621
[22:37:13] Elapsed time: 26.092s total, 1.749s configuring, 24.178s building, 0.129s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:37:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:37:15] 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
[22:37:24] Starting KUnit Kernel (1/1)...
[22:37:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:24] ================= ttm_device (5 subtests) ==================
[22:37:24] [PASSED] ttm_device_init_basic
[22:37:24] [PASSED] ttm_device_init_multiple
[22:37:24] [PASSED] ttm_device_fini_basic
[22:37:24] [PASSED] ttm_device_init_no_vma_man
[22:37:24] ================== ttm_device_init_pools ==================
[22:37:24] [PASSED] No DMA allocations, no DMA32 required
[22:37:24] [PASSED] DMA allocations, DMA32 required
[22:37:24] [PASSED] No DMA allocations, DMA32 required
[22:37:24] [PASSED] DMA allocations, no DMA32 required
[22:37:24] ============== [PASSED] ttm_device_init_pools ==============
[22:37:24] =================== [PASSED] ttm_device ====================
[22:37:24] ================== ttm_pool (8 subtests) ===================
[22:37:24] ================== ttm_pool_alloc_basic ===================
[22:37:24] [PASSED] One page
[22:37:24] [PASSED] More than one page
[22:37:24] [PASSED] Above the allocation limit
[22:37:24] [PASSED] One page, with coherent DMA mappings enabled
[22:37:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:37:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:37:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:37:24] [PASSED] One page
[22:37:24] [PASSED] More than one page
[22:37:24] [PASSED] Above the allocation limit
[22:37:24] [PASSED] One page, with coherent DMA mappings enabled
[22:37:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:37:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:37:24] [PASSED] ttm_pool_alloc_order_caching_match
[22:37:24] [PASSED] ttm_pool_alloc_caching_mismatch
[22:37:24] [PASSED] ttm_pool_alloc_order_mismatch
[22:37:24] [PASSED] ttm_pool_free_dma_alloc
[22:37:24] [PASSED] ttm_pool_free_no_dma_alloc
[22:37:24] [PASSED] ttm_pool_fini_basic
[22:37:24] ==================== [PASSED] ttm_pool =====================
[22:37:24] ================ ttm_resource (8 subtests) =================
[22:37:24] ================= ttm_resource_init_basic =================
[22:37:24] [PASSED] Init resource in TTM_PL_SYSTEM
[22:37:24] [PASSED] Init resource in TTM_PL_VRAM
[22:37:24] [PASSED] Init resource in a private placement
[22:37:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:37:24] ============= [PASSED] ttm_resource_init_basic =============
[22:37:24] [PASSED] ttm_resource_init_pinned
[22:37:24] [PASSED] ttm_resource_fini_basic
[22:37:24] [PASSED] ttm_resource_manager_init_basic
[22:37:24] [PASSED] ttm_resource_manager_usage_basic
[22:37:24] [PASSED] ttm_resource_manager_set_used_basic
[22:37:24] [PASSED] ttm_sys_man_alloc_basic
[22:37:24] [PASSED] ttm_sys_man_free_basic
[22:37:24] ================== [PASSED] ttm_resource ===================
[22:37:24] =================== ttm_tt (15 subtests) ===================
[22:37:24] ==================== ttm_tt_init_basic ====================
[22:37:24] [PASSED] Page-aligned size
[22:37:24] [PASSED] Extra pages requested
[22:37:24] ================ [PASSED] ttm_tt_init_basic ================
[22:37:24] [PASSED] ttm_tt_init_misaligned
[22:37:24] [PASSED] ttm_tt_fini_basic
[22:37:24] [PASSED] ttm_tt_fini_sg
[22:37:24] [PASSED] ttm_tt_fini_shmem
[22:37:24] [PASSED] ttm_tt_create_basic
[22:37:24] [PASSED] ttm_tt_create_invalid_bo_type
[22:37:24] [PASSED] ttm_tt_create_ttm_exists
[22:37:24] [PASSED] ttm_tt_create_failed
[22:37:24] [PASSED] ttm_tt_destroy_basic
[22:37:24] [PASSED] ttm_tt_populate_null_ttm
[22:37:24] [PASSED] ttm_tt_populate_populated_ttm
[22:37:24] [PASSED] ttm_tt_unpopulate_basic
[22:37:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:37:24] [PASSED] ttm_tt_swapin_basic
[22:37:24] ===================== [PASSED] ttm_tt ======================
[22:37:24] =================== ttm_bo (14 subtests) ===================
[22:37:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:37:24] [PASSED] Cannot be interrupted and sleeps
[22:37:24] [PASSED] Cannot be interrupted, locks straight away
[22:37:24] [PASSED] Can be interrupted, sleeps
[22:37:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:37:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:37:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:37:24] [PASSED] ttm_bo_reserve_double_resv
[22:37:24] [PASSED] ttm_bo_reserve_interrupted
[22:37:24] [PASSED] ttm_bo_reserve_deadlock
[22:37:24] [PASSED] ttm_bo_unreserve_basic
[22:37:24] [PASSED] ttm_bo_unreserve_pinned
[22:37:24] [PASSED] ttm_bo_unreserve_bulk
[22:37:24] [PASSED] ttm_bo_fini_basic
[22:37:24] [PASSED] ttm_bo_fini_shared_resv
[22:37:24] [PASSED] ttm_bo_pin_basic
[22:37:24] [PASSED] ttm_bo_pin_unpin_resource
[22:37:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:37:24] ===================== [PASSED] ttm_bo ======================
[22:37:24] ============== ttm_bo_validate (22 subtests) ===============
[22:37:24] ============== ttm_bo_init_reserved_sys_man ===============
[22:37:24] [PASSED] Buffer object for userspace
[22:37:24] [PASSED] Kernel buffer object
[22:37:24] [PASSED] Shared buffer object
[22:37:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:37:24] ============== ttm_bo_init_reserved_mock_man ==============
[22:37:24] [PASSED] Buffer object for userspace
[22:37:24] [PASSED] Kernel buffer object
[22:37:24] [PASSED] Shared buffer object
[22:37:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:37:24] [PASSED] ttm_bo_init_reserved_resv
[22:37:24] ================== ttm_bo_validate_basic ==================
[22:37:24] [PASSED] Buffer object for userspace
[22:37:24] [PASSED] Kernel buffer object
[22:37:24] [PASSED] Shared buffer object
[22:37:24] ============== [PASSED] ttm_bo_validate_basic ==============
[22:37:24] [PASSED] ttm_bo_validate_invalid_placement
[22:37:24] ============= ttm_bo_validate_same_placement ==============
[22:37:24] [PASSED] System manager
[22:37:24] [PASSED] VRAM manager
[22:37:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:37:24] [PASSED] ttm_bo_validate_failed_alloc
[22:37:24] [PASSED] ttm_bo_validate_pinned
[22:37:24] [PASSED] ttm_bo_validate_busy_placement
[22:37:24] ================ ttm_bo_validate_multihop =================
[22:37:24] [PASSED] Buffer object for userspace
[22:37:24] [PASSED] Kernel buffer object
[22:37:24] [PASSED] Shared buffer object
[22:37:24] ============ [PASSED] ttm_bo_validate_multihop =============
[22:37:24] ========== ttm_bo_validate_no_placement_signaled ==========
[22:37:24] [PASSED] Buffer object in system domain, no page vector
[22:37:24] [PASSED] Buffer object in system domain with an existing page vector
[22:37:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:37:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:37:24] [PASSED] Buffer object for userspace
[22:37:24] [PASSED] Kernel buffer object
[22:37:24] [PASSED] Shared buffer object
[22:37:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:37:24] [PASSED] ttm_bo_validate_move_fence_signaled
[22:37:25] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:37:25] [PASSED] Waits for GPU
[22:37:25] [PASSED] Tries to lock straight away
[22:37:25] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:37:25] [PASSED] ttm_bo_validate_swapout
[22:37:25] [PASSED] ttm_bo_validate_happy_evict
[22:37:25] [PASSED] ttm_bo_validate_all_pinned_evict
[22:37:25] [PASSED] ttm_bo_validate_allowed_only_evict
[22:37:25] [PASSED] ttm_bo_validate_deleted_evict
[22:37:25] [PASSED] ttm_bo_validate_busy_domain_evict
[22:37:25] [PASSED] ttm_bo_validate_evict_gutting
[22:37:25] [PASSED] ttm_bo_validate_recrusive_evict
[22:37:25] ================= [PASSED] ttm_bo_validate =================
[22:37:25] ============================================================
[22:37:25] Testing complete. Ran 102 tests: passed: 102
[22:37:25] Elapsed time: 11.704s total, 1.772s configuring, 9.717s building, 0.186s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
2026-05-01 22:36 ` ✗ CI.checkpatch: warning for " Patchwork
2026-05-01 22:37 ` ✓ CI.KUnit: success " Patchwork
@ 2026-05-01 22:57 ` Kenneth Crudup
2026-05-01 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Kenneth Crudup @ 2026-05-01 22:57 UTC (permalink / raw)
To: Matthew Brost, intel-xe, dri-devel
Cc: Christian Koenig, Huang Rui, Matthew Auld, David Airlie
On 5/1/26 15:30, Matthew Brost wrote:
> TTM pool shrinking frees pages by calling __free_pages() directly,
> which bypasses updates to NR_GPU_ACTIVE and leaves GPU MM accounting
> out of sync.
>
> Introduce a helper, __free_pages_gpu_account(), and use it for all page
> frees in ttm_pool.c so GPU MM statistics are updated consistently.
>
> Reported-by: Kenneth Crudup <kenny@panix.com>
> Fixes: ae80122f3896 ("drm/ttm: use gpu mm stats to track gpu memory allocations. (v4)")
> Cc: Christian Koenig <christian.koenig@amd.com>
> Cc: Huang Rui <ray.huang@amd.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: David Airlie <airlied@gmail.com>
> Cc: dri-devel@lists.freedesktop.org
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
> 1 file changed, 11 insertions(+), 5 deletions(-)
Tested-By: Kenneth R. Crudup <kenny@panix.com>
> diff --git a/drivers/gpu/drm/ttm/ttm_pool.c b/drivers/gpu/drm/ttm/ttm_pool.c
> index 26a3689e5fd9..95bbd9328072 100644
> --- a/drivers/gpu/drm/ttm/ttm_pool.c
> +++ b/drivers/gpu/drm/ttm/ttm_pool.c
> @@ -206,6 +206,14 @@ static struct page *ttm_pool_alloc_page(struct ttm_pool *pool, gfp_t gfp_flags,
> return NULL;
> }
>
> +static void __free_pages_gpu_account(struct page *p, unsigned int order,
> + bool reclaim)
> +{
> + mod_lruvec_page_state(p, reclaim ? NR_GPU_RECLAIM : NR_GPU_ACTIVE,
> + -(1 << order));
> + __free_pages(p, order);
> +}
> +
> /* Reset the caching and pages of size 1 << order */
> static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
> unsigned int order, struct page *p, bool reclaim)
> @@ -223,9 +231,7 @@ static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
> #endif
>
> if (!pool || !ttm_pool_uses_dma_alloc(pool)) {
> - mod_lruvec_page_state(p, reclaim ? NR_GPU_RECLAIM : NR_GPU_ACTIVE,
> - -(1 << order));
> - __free_pages(p, order);
> + __free_pages_gpu_account(p, order, reclaim);
> return;
> }
>
> @@ -606,7 +612,7 @@ static int ttm_pool_restore_commit(struct ttm_pool_tt_restore *restore,
> */
> ttm_pool_split_for_swap(restore->pool, p);
> copy_highpage(restore->alloced_page + i, p);
> - __free_pages(p, 0);
> + __free_pages_gpu_account(p, 0, false);
> }
>
> restore->restored_pages++;
> @@ -1068,7 +1074,7 @@ long ttm_pool_backup(struct ttm_pool *pool, struct ttm_tt *tt,
> if (flags->purge) {
> shrunken += num_pages;
> page->private = 0;
> - __free_pages(page, order);
> + __free_pages_gpu_account(page, order, false);
> memset(tt->pages + i, 0,
> num_pages * sizeof(*tt->pages));
> }
--
Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange
County CA
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
` (2 preceding siblings ...)
2026-05-01 22:57 ` [PATCH] " Kenneth Crudup
@ 2026-05-01 23:28 ` Patchwork
2026-05-02 0:05 ` [PATCH] " Kenneth Crudup
2026-05-02 0:48 ` ✗ Xe.CI.FULL: failure for " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-01 23:28 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 961 bytes --]
== Series Details ==
Series: drm/ttm: Fix GPU MM stats during pool shrinking
URL : https://patchwork.freedesktop.org/series/165861/
State : success
== Summary ==
CI Bug Log - changes from xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad_BAT -> xe-pw-165861v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad -> xe-pw-165861v1
IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad: 03712864f7a8ffcdd43fe3adc4cfe687f77e93ad
xe-pw-165861v1: 165861v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/index.html
[-- Attachment #2: Type: text/html, Size: 1509 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
` (3 preceding siblings ...)
2026-05-01 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-05-02 0:05 ` Kenneth Crudup
2026-05-02 4:12 ` Matthew Brost
2026-05-02 0:48 ` ✗ Xe.CI.FULL: failure for " Patchwork
5 siblings, 1 reply; 9+ messages in thread
From: Kenneth Crudup @ 2026-05-02 0:05 UTC (permalink / raw)
To: Matthew Brost, intel-xe, dri-devel
Cc: Christian Koenig, Huang Rui, Matthew Auld, David Airlie
On 5/1/26 15:30, Matthew Brost wrote:
> TTM pool shrinking frees pages by calling __free_pages() directly,
> which bypasses updates to NR_GPU_ACTIVE and leaves GPU MM accounting
> out of sync.
>
> Introduce a helper, __free_pages_gpu_account(), and use it for all page
> frees in ttm_pool.c so GPU MM statistics are updated consistently.
OK, so why/how does "bonnie++" increase the GPU Memory size?
----
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUReclaim: 621568 kB
GPUActive: 453592 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUActive: 5554976 kB
GPUReclaim: 12716 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUActive: 18407272 kB
GPUReclaim: 884 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUActive: 24022916 kB
GPUReclaim: 716 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUActive: 25258248 kB
GPUReclaim: 16032 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUActive: 28207188 kB
GPUReclaim: 3684 kB
----
... and I'm now not so sure the patch is working ... this after a 2nd
bonnie run:
----
GPUActive: 44357100 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUReclaim: 94864 kB
GPUActive: 44373904 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUReclaim: 94996 kB
GPUActive: 44354940 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUReclaim: 98048 kB
GPUActive: 44769340 kB
SwapTotal: 33554428 kB
MemTotal: 32345672 kB
GPUReclaim: 122996 kB
----
-Kenny
--
Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange
County CA
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
` (4 preceding siblings ...)
2026-05-02 0:05 ` [PATCH] " Kenneth Crudup
@ 2026-05-02 0:48 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-02 0:48 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 44580 bytes --]
== Series Details ==
Series: drm/ttm: Fix GPU MM stats during pool shrinking
URL : https://patchwork.freedesktop.org/series/165861/
State : failure
== Summary ==
CI Bug Log - changes from xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad_FULL -> xe-pw-165861v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165861v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165861v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-165861v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_compute@loop-duration-2s:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-5/igt@xe_compute@loop-duration-2s.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-6/igt@xe_compute@loop-duration-2s.html
Known issues
------------
Here are the changes found in xe-pw-165861v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][3] -> [SKIP][4] ([Intel XE#6779])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@core_hotunplug@hotreplug.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@core_hotunplug@hotreplug.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1466])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1467] / [Intel XE#7367])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-2-displays-target-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#306] / [Intel XE#7358])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7642])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@srm:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#7642])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1424])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#5354])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#4302])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2244])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][25] -> [DMESG-FAIL][26] ([Intel XE#5545]) +1 other test dmesg-fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][27] -> [FAIL][28] ([Intel XE#301]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4141]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061] / [Intel XE#7356])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2311]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#5812] / [Intel XE#656]) +8 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7061] / [Intel XE#7356])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#1503])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7283]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7283])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1489])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2893] / [Intel XE#7304])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1128] / [Intel XE#7413])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1406] / [Intel XE#7345])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1406] / [Intel XE#4609])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1406])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_psr@pr-sprite-blt.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1499])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][51] -> [FAIL][52] ([Intel XE#4227]) +1 other test fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-2/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_ccs@vm-bind-decompress:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7644])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_ccs@vm-bind-decompress.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6010] / [Intel XE#7317] / [Intel XE#7455])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_configfs@survivability-mode.html
* igt@xe_eudebug@basic-close:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7636]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7636])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#6321])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-small:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_evict@evict-beng-threads-small.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7140])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_balancer@many-execqueues-virtual-rebind:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7482]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2322] / [Intel XE#7372])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1392])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7136])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#6874]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr.html
* igt@xe_exec_multi_queue@two-queues-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6874]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
* igt@xe_exec_system_allocator@process-many-large-new-busy-nomemset:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#6703]) +94 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-new-busy-nomemset.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-new-busy-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7138]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7138])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1416])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_mmap@vram.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6964])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-conflict:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6964])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html
* igt@xe_oa@non-zero-reason-all:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#7334]) +1 other test fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-lnl-8/igt@xe_oa@non-zero-reason-all.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-4/igt@xe_oa@non-zero-reason-all.html
* igt@xe_page_reclaim@prl-max-entries:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7793])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_page_reclaim@prl-max-entries.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4733] / [Intel XE#7417])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-1/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#944])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#7174])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-lnl-5/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][81] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][82] +2 other tests pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
- shard-bmg: [FAIL][83] ([Intel XE#6078]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: [ABORT][85] ([Intel XE#5545]) -> [PASS][86] +1 other test pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [DMESG-WARN][87] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-2/igt@xe_survivability@runtime-survivability.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-7/igt@xe_survivability@runtime-survivability.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: [SKIP][89] ([Intel XE#2370]) -> [SKIP][90] ([Intel XE#6703])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][91] ([Intel XE#1124]) -> [SKIP][92] ([Intel XE#6703]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p:
- shard-bmg: [SKIP][93] ([Intel XE#7679]) -> [SKIP][94] ([Intel XE#6703])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][95] ([Intel XE#2887]) -> [SKIP][96] ([Intel XE#6703]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][97] ([Intel XE#2652]) -> [SKIP][98] ([Intel XE#6703])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][99] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][100] ([Intel XE#6703])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-bmg: [SKIP][101] ([Intel XE#2252]) -> [SKIP][102] ([Intel XE#6703])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][103] ([Intel XE#6507]) -> [SKIP][104] ([Intel XE#6703])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_chamelium_sharpness_filter@filter-basic.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: [SKIP][105] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][106] ([Intel XE#6703]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][107] ([Intel XE#2311]) -> [SKIP][108] ([Intel XE#6703]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][109] ([Intel XE#4141]) -> [SKIP][110] ([Intel XE#6703]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: [SKIP][111] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][112] ([Intel XE#6703])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][113] ([Intel XE#2311]) -> [SKIP][114] ([Intel XE#6557] / [Intel XE#6703])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][115] ([Intel XE#2313]) -> [SKIP][116] ([Intel XE#6703]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: [SKIP][117] ([Intel XE#1489]) -> [SKIP][118] ([Intel XE#6703])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][120] ([Intel XE#6703]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_psr@fbc-psr-primary-render.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: [SKIP][121] ([Intel XE#7795]) -> [SKIP][122] ([Intel XE#6703])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: [SKIP][123] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][124] ([Intel XE#6703])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: [SKIP][125] ([Intel XE#6503]) -> [SKIP][126] ([Intel XE#6703])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@kms_sharpness_filter@filter-suspend.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][127] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][128] ([Intel XE#1729] / [Intel XE#7424])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][129] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][130] ([Intel XE#2509] / [Intel XE#7437])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: [SKIP][131] ([Intel XE#7636]) -> [SKIP][132] ([Intel XE#6703]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_eudebug@basic-read-event.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_eudebug@basic-read-event.html
* igt@xe_evict@evict-mixed-threads-small-multi-queue:
- shard-bmg: [SKIP][133] ([Intel XE#7140]) -> [SKIP][134] ([Intel XE#6703]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_evict@evict-mixed-threads-small-multi-queue.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_evict@evict-mixed-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-once-null-defer-mmap:
- shard-bmg: [SKIP][135] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][136] ([Intel XE#6703]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault:
- shard-bmg: [SKIP][137] ([Intel XE#7136]) -> [SKIP][138] ([Intel XE#6703])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd:
- shard-bmg: [SKIP][139] ([Intel XE#6874]) -> [SKIP][140] ([Intel XE#6703]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html
* igt@xe_exec_threads@threads-multi-queue-userptr-invalidate:
- shard-bmg: [SKIP][141] ([Intel XE#7138]) -> [SKIP][142] ([Intel XE#6703])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-bmg: [SKIP][143] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][144] ([Intel XE#6703])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][145] ([Intel XE#5937]) -> [SKIP][146] ([Intel XE#6703])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5812
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[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#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7334]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7334
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7455
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad -> xe-pw-165861v1
IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4965-03712864f7a8ffcdd43fe3adc4cfe687f77e93ad: 03712864f7a8ffcdd43fe3adc4cfe687f77e93ad
xe-pw-165861v1: 165861v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165861v1/index.html
[-- Attachment #2: Type: text/html, Size: 51924 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-02 0:05 ` [PATCH] " Kenneth Crudup
@ 2026-05-02 4:12 ` Matthew Brost
2026-05-02 4:13 ` Matthew Brost
0 siblings, 1 reply; 9+ messages in thread
From: Matthew Brost @ 2026-05-02 4:12 UTC (permalink / raw)
To: Kenneth Crudup
Cc: intel-xe, dri-devel, Christian Koenig, Huang Rui, Matthew Auld,
David Airlie
On Fri, May 01, 2026 at 05:05:14PM -0700, Kenneth Crudup wrote:
>
> On 5/1/26 15:30, Matthew Brost wrote:
>
> > TTM pool shrinking frees pages by calling __free_pages() directly,
> > which bypasses updates to NR_GPU_ACTIVE and leaves GPU MM accounting
> > out of sync.
> >
> > Introduce a helper, __free_pages_gpu_account(), and use it for all page
> > frees in ttm_pool.c so GPU MM statistics are updated consistently.
>
> OK, so why/how does "bonnie++" increase the GPU Memory size?
>
Well, it shouldn’t. What bonnie++ does is basically consume system
memory, triggering reclaim, which in turn will evict GPU BOs that exist
when the display is open. Thanks for pointing me to bonnie++ - this,
plus running something like the WebGL Aquarium in Chrome, is a very nice
test case for Xe/DRM shrinkers.
> ----
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUReclaim: 621568 kB
> GPUActive: 453592 kB
>
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUActive: 5554976 kB
> GPUReclaim: 12716 kB
>
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUActive: 18407272 kB
> GPUReclaim: 884 kB
>
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUActive: 24022916 kB
> GPUReclaim: 716 kB
>
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUActive: 25258248 kB
> GPUReclaim: 16032 kB
>
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUActive: 28207188 kB
> GPUReclaim: 3684 kB
> ----
>
> ... and I'm now not so sure the patch is working ... this after a 2nd bonnie
> run:
It doesn’t appear that it is. I can recreate what you’re seeing with
this patch alone on drm-tip. I originally coded this patch on top of a
local fix to avoid the TTM shrinker allocating higher-order folios when
reclaiming memory—this is working there. I falsely assumed it would work
on drm-tip as well. Let me ensure I have a standalone fix for GPUActive
accounting first, then apply my TTM shrinker fix on top.
Matt
>
> ----
> GPUActive: 44357100 kB
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUReclaim: 94864 kB
>
> GPUActive: 44373904 kB
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUReclaim: 94996 kB
>
> GPUActive: 44354940 kB
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUReclaim: 98048 kB
>
> GPUActive: 44769340 kB
> SwapTotal: 33554428 kB
> MemTotal: 32345672 kB
> GPUReclaim: 122996 kB
> ----
>
> -Kenny
>
> --
> Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange County
> CA
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking
2026-05-02 4:12 ` Matthew Brost
@ 2026-05-02 4:13 ` Matthew Brost
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Brost @ 2026-05-02 4:13 UTC (permalink / raw)
To: Kenneth Crudup
Cc: intel-xe, dri-devel, Christian Koenig, Huang Rui, Matthew Auld,
David Airlie
On Fri, May 01, 2026 at 09:12:31PM -0700, Matthew Brost wrote:
> On Fri, May 01, 2026 at 05:05:14PM -0700, Kenneth Crudup wrote:
> >
> > On 5/1/26 15:30, Matthew Brost wrote:
> >
> > > TTM pool shrinking frees pages by calling __free_pages() directly,
> > > which bypasses updates to NR_GPU_ACTIVE and leaves GPU MM accounting
> > > out of sync.
> > >
> > > Introduce a helper, __free_pages_gpu_account(), and use it for all page
> > > frees in ttm_pool.c so GPU MM statistics are updated consistently.
> >
> > OK, so why/how does "bonnie++" increase the GPU Memory size?
> >
>
> Well, it shouldn’t. What bonnie++ does is basically consume system
> memory, triggering reclaim, which in turn will evict GPU BOs that exist
> when the display is open. Thanks for pointing me to bonnie++ - this,
> plus running something like the WebGL Aquarium in Chrome, is a very nice
> test case for Xe/DRM shrinkers.
>
> > ----
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUReclaim: 621568 kB
> > GPUActive: 453592 kB
> >
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUActive: 5554976 kB
> > GPUReclaim: 12716 kB
> >
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUActive: 18407272 kB
> > GPUReclaim: 884 kB
> >
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUActive: 24022916 kB
> > GPUReclaim: 716 kB
> >
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUActive: 25258248 kB
> > GPUReclaim: 16032 kB
> >
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUActive: 28207188 kB
> > GPUReclaim: 3684 kB
> > ----
> >
> > ... and I'm now not so sure the patch is working ... this after a 2nd bonnie
> > run:
>
> It doesn’t appear that it is. I can recreate what you’re seeing with
> this patch alone on drm-tip. I originally coded this patch on top of a
> local fix to avoid the TTM shrinker allocating higher-order folios when
s/allocating/spliting
Matt
> reclaiming memory—this is working there. I falsely assumed it would work
> on drm-tip as well. Let me ensure I have a standalone fix for GPUActive
> accounting first, then apply my TTM shrinker fix on top.
>
> Matt
>
> >
> > ----
> > GPUActive: 44357100 kB
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUReclaim: 94864 kB
> >
> > GPUActive: 44373904 kB
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUReclaim: 94996 kB
> >
> > GPUActive: 44354940 kB
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUReclaim: 98048 kB
> >
> > GPUActive: 44769340 kB
> > SwapTotal: 33554428 kB
> > MemTotal: 32345672 kB
> > GPUReclaim: 122996 kB
> > ----
> >
> > -Kenny
> >
> > --
> > Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange County
> > CA
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-05-04 12:43 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-01 22:30 [PATCH] drm/ttm: Fix GPU MM stats during pool shrinking Matthew Brost
2026-05-01 22:36 ` ✗ CI.checkpatch: warning for " Patchwork
2026-05-01 22:37 ` ✓ CI.KUnit: success " Patchwork
2026-05-01 22:57 ` [PATCH] " Kenneth Crudup
2026-05-01 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-05-02 0:05 ` [PATCH] " Kenneth Crudup
2026-05-02 4:12 ` Matthew Brost
2026-05-02 4:13 ` Matthew Brost
2026-05-02 0:48 ` ✗ Xe.CI.FULL: failure for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox