This is a note to let you know that I've just added the patch titled nouveau/gsp: use correct size for registry rpc. to the 6.7-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: nouveau-gsp-use-correct-size-for-registry-rpc.patch and it can be found in the queue-6.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 61712c94782ce105253ee1939cda0c5c025b2c0c Mon Sep 17 00:00:00 2001 From: Dave Airlie <airlied@xxxxxxxxxx> Date: Tue, 30 Jan 2024 13:26:43 +1000 Subject: nouveau/gsp: use correct size for registry rpc. From: Dave Airlie <airlied@xxxxxxxxxx> commit 61712c94782ce105253ee1939cda0c5c025b2c0c upstream. Timur pointed this out before, and it just slipped my mind, but this might help some things work better, around pcie power management. Cc: <stable@xxxxxxxxxxxxxxx> # v6.7 Fixes: 8d55b0a940bb ("nouveau/gsp: add some basic registry entries.") Signed-off-by: Dave Airlie <airlied@xxxxxxxxxx> Signed-off-by: Danilo Krummrich <dakr@xxxxxxxxxx> Link: https://patchwork.freedesktop.org/patch/msgid/20240130032643.2498315-1-airlied@xxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c @@ -1111,7 +1111,6 @@ r535_gsp_rpc_set_registry(struct nvkm_gs if (IS_ERR(rpc)) return PTR_ERR(rpc); - rpc->size = sizeof(*rpc); rpc->numEntries = NV_GSP_REG_NUM_ENTRIES; str_offset = offsetof(typeof(*rpc), entries[NV_GSP_REG_NUM_ENTRIES]); @@ -1127,6 +1126,7 @@ r535_gsp_rpc_set_registry(struct nvkm_gs strings += name_len; str_offset += name_len; } + rpc->size = str_offset; return nvkm_gsp_rpc_wr(gsp, rpc, false); } Patches currently in stable-queue which might be from airlied@xxxxxxxxxx are queue-6.7/nouveau-offload-fence-uevents-work-to-workqueue.patch queue-6.7/nouveau-gsp-use-correct-size-for-registry-rpc.patch