Re: [PATCH] drm/atomic-helper: fix parameter order in drm_format_conv_state_copy() call

2024-04-19 Thread Thomas Zimmermann
Hi, thanks for this fix. Am 04.04.24 um 10:17 schrieb Lucas Stach: Old and new state parameters are swapped, so the old state was cleared instead of the new duplicated state. Fixes: 903674588a48 ("drm/atomic-helper: Add format-conversion state to shadow-plane state") Signed-off-by: Lucas

Re: [PATCH] drm/atomic-helper: fix parameter order in drm_format_conv_state_copy() call

2024-04-09 Thread Lucas Stach
Am Donnerstag, dem 04.04.2024 um 10:17 +0200 schrieb Lucas Stach: > Old and new state parameters are swapped, so the old state was cleared > instead of the new duplicated state. > To be clear, as the commit message may do a poor job at conveying the consequences: this fixes a major memory leak

[PATCH] drm/atomic-helper: fix parameter order in drm_format_conv_state_copy() call

2024-04-04 Thread Lucas Stach
Old and new state parameters are swapped, so the old state was cleared instead of the new duplicated state. Fixes: 903674588a48 ("drm/atomic-helper: Add format-conversion state to shadow-plane state") Signed-off-by: Lucas Stach Tested-by: Leonard Göhrs ---