diff options
| author | Dave Airlie <airlied@redhat.com> | 2024-12-13 09:15:41 +1000 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2024-12-13 09:15:48 +1000 |
| commit | 4dba1fd3fe19a3227489779ba7f5b67c0fd041a8 (patch) | |
| tree | 2550130ebe63927f16987ed3530d4b2a1c61e20a /drivers/gpu/drm/xe/tests | |
| parent | c98f9ab909bab66e6b6f5ba4911f5783ebdcb490 (diff) | |
| parent | d7b028656c29b22fcde1c6ee1df5b28fbba987b5 (diff) | |
| download | linux-4dba1fd3fe19a3227489779ba7f5b67c0fd041a8.tar.gz linux-4dba1fd3fe19a3227489779ba7f5b67c0fd041a8.tar.bz2 linux-4dba1fd3fe19a3227489779ba7f5b67c0fd041a8.zip | |
Merge tag 'drm-xe-fixes-2024-12-12' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes
- Fix a KUNIT test error message (Mirsad Todorovac)
- Fix an invalidation fence PM ref leak (Daniele)
- Fix a register pool UAF (Lucas)
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Thomas Hellstrom <thomas.hellstrom@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/Z1s5elHXOyeIHnE0@fedora
Diffstat (limited to 'drivers/gpu/drm/xe/tests')
| -rw-r--r-- | drivers/gpu/drm/xe/tests/xe_migrate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/xe/tests/xe_migrate.c b/drivers/gpu/drm/xe/tests/xe_migrate.c index 1a192a2a941b..3bbdb362d6f0 100644 --- a/drivers/gpu/drm/xe/tests/xe_migrate.c +++ b/drivers/gpu/drm/xe/tests/xe_migrate.c @@ -224,8 +224,8 @@ static void xe_migrate_sanity_test(struct xe_migrate *m, struct kunit *test) XE_BO_FLAG_VRAM_IF_DGFX(tile) | XE_BO_FLAG_PINNED); if (IS_ERR(tiny)) { - KUNIT_FAIL(test, "Failed to allocate fake pt: %li\n", - PTR_ERR(pt)); + KUNIT_FAIL(test, "Failed to allocate tiny fake pt: %li\n", + PTR_ERR(tiny)); goto free_pt; } |
