release 6.12.20
This commit is contained in:
7
debian/changelog
vendored
7
debian/changelog
vendored
@@ -1,3 +1,10 @@
|
|||||||
|
linux (6.12.20-1) sid; urgency=medium
|
||||||
|
|
||||||
|
* New upstream stable update:
|
||||||
|
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.20
|
||||||
|
|
||||||
|
-- Konstantin Demin <rockdrilla@gmail.com> Sun, 23 Mar 2025 03:14:29 +0300
|
||||||
|
|
||||||
linux (6.12.19-1) sid; urgency=medium
|
linux (6.12.19-1) sid; urgency=medium
|
||||||
|
|
||||||
* New upstream stable update:
|
* New upstream stable update:
|
||||||
|
61
debian/patches/bugfix/all/drm-amdkfd-Fix-user-queue-validation-on-Gfx7-8.patch
vendored
Normal file
61
debian/patches/bugfix/all/drm-amdkfd-Fix-user-queue-validation-on-Gfx7-8.patch
vendored
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
From: Philip Yang <Philip.Yang@amd.com>
|
||||||
|
Date: Wed, 29 Jan 2025 12:37:30 -0500
|
||||||
|
Subject: drm/amdkfd: Fix user queue validation on Gfx7/8
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
Origin: https://gitlab.freedesktop.org/drm/kernel/-/commit/e7a477735f1771b9a9346a5fbd09d7ff0641723a
|
||||||
|
Bug-Debian: https://bugs.debian.org/1093124
|
||||||
|
|
||||||
|
To workaround queue full h/w issue on Gfx7/8, when application create
|
||||||
|
AQL queue, the ring buffer bo allocate size is queue_size/2 and
|
||||||
|
map queue_size ring buffer to GPU in 2 pieces using 2 attachments, each
|
||||||
|
attachment map size is queue_size/2, with same ring_bo backing memory.
|
||||||
|
|
||||||
|
For Gfx7/8, user queue buffer validation should use queue_size/2 to
|
||||||
|
verify ring_bo allocation and mapping size.
|
||||||
|
|
||||||
|
Fixes: 68e599db7a54 ("drm/amdkfd: Validate user queue buffers")
|
||||||
|
Suggested-by: Tomáš Trnka <trnka@scm.com>
|
||||||
|
Signed-off-by: Philip Yang <Philip.Yang@amd.com>
|
||||||
|
Acked-by: Alex Deucher <alexander.deucher@amd.com>
|
||||||
|
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
|
||||||
|
---
|
||||||
|
drivers/gpu/drm/amd/amdkfd/kfd_queue.c | 12 +++++++++++-
|
||||||
|
1 file changed, 11 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
--- a/drivers/gpu/drm/amd/amdkfd/kfd_queue.c
|
||||||
|
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_queue.c
|
||||||
|
@@ -233,6 +233,7 @@ void kfd_queue_buffer_put(struct amdgpu_
|
||||||
|
int kfd_queue_acquire_buffers(struct kfd_process_device *pdd, struct queue_properties *properties)
|
||||||
|
{
|
||||||
|
struct kfd_topology_device *topo_dev;
|
||||||
|
+ u64 expected_queue_size;
|
||||||
|
struct amdgpu_vm *vm;
|
||||||
|
u32 total_cwsr_size;
|
||||||
|
int err;
|
||||||
|
@@ -241,6 +242,15 @@ int kfd_queue_acquire_buffers(struct kfd
|
||||||
|
if (!topo_dev)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
+ /* AQL queues on GFX7 and GFX8 appear twice their actual size */
|
||||||
|
+ if (properties->type == KFD_QUEUE_TYPE_COMPUTE &&
|
||||||
|
+ properties->format == KFD_QUEUE_FORMAT_AQL &&
|
||||||
|
+ topo_dev->node_props.gfx_target_version >= 70000 &&
|
||||||
|
+ topo_dev->node_props.gfx_target_version < 90000)
|
||||||
|
+ expected_queue_size = properties->queue_size / 2;
|
||||||
|
+ else
|
||||||
|
+ expected_queue_size = properties->queue_size;
|
||||||
|
+
|
||||||
|
vm = drm_priv_to_vm(pdd->drm_priv);
|
||||||
|
err = amdgpu_bo_reserve(vm->root.bo, false);
|
||||||
|
if (err)
|
||||||
|
@@ -255,7 +265,7 @@ int kfd_queue_acquire_buffers(struct kfd
|
||||||
|
goto out_err_unreserve;
|
||||||
|
|
||||||
|
err = kfd_queue_buffer_get(vm, (void *)properties->queue_address,
|
||||||
|
- &properties->ring_bo, properties->queue_size);
|
||||||
|
+ &properties->ring_bo, expected_queue_size);
|
||||||
|
if (err)
|
||||||
|
goto out_err_unreserve;
|
||||||
|
|
@@ -30,7 +30,7 @@ this reverts following commit:
|
|||||||
|
|
||||||
--- a/tools/objtool/check.c
|
--- a/tools/objtool/check.c
|
||||||
+++ b/tools/objtool/check.c
|
+++ b/tools/objtool/check.c
|
||||||
@@ -4888,10 +4888,14 @@ int check(struct objtool_file *file)
|
@@ -4897,10 +4897,14 @@ int check(struct objtool_file *file)
|
||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
|
@@ -158,5 +158,5 @@ Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
|
|||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
extern void __futex_unqueue(struct futex_q *q);
|
extern void __futex_unqueue(struct futex_q *q);
|
||||||
extern void __futex_queue(struct futex_q *q, struct futex_hash_bucket *hb);
|
extern void __futex_queue(struct futex_q *q, struct futex_hash_bucket *hb,
|
||||||
extern int futex_unqueue(struct futex_q *q);
|
struct task_struct *task);
|
||||||
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@@ -70,6 +70,7 @@ bugfix/all/disable-some-marvell-phys.patch
|
|||||||
bugfix/all/fs-add-module_softdep-declarations-for-hard-coded-cr.patch
|
bugfix/all/fs-add-module_softdep-declarations-for-hard-coded-cr.patch
|
||||||
bugfix/all/documentation-use-relative-source-paths-in-abi-documentation.patch
|
bugfix/all/documentation-use-relative-source-paths-in-abi-documentation.patch
|
||||||
bugfix/all/nfsd-fix-legacy-client-tracking-initialization.patch
|
bugfix/all/nfsd-fix-legacy-client-tracking-initialization.patch
|
||||||
|
bugfix/all/drm-amdkfd-Fix-user-queue-validation-on-Gfx7-8.patch
|
||||||
|
|
||||||
# Miscellaneous features
|
# Miscellaneous features
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user