drm/msm/a6xx: Fix kvzalloc vs state_kcalloc usage
authorRob Clark <robdclark@chromium.org>
Thu, 13 Oct 2022 22:55:13 +0000 (15:55 -0700)
committerRob Clark <robdclark@chromium.org>
Fri, 14 Oct 2022 16:32:22 +0000 (09:32 -0700)
commit83d18e9d9c0150d98dc24e3642ea93f5e245322c
treec1d52522880821215d4bdd941c4912e6cd5fa779
parent70445dee1b4cf44c9fecc580dfa08079011866f1
drm/msm/a6xx: Fix kvzalloc vs state_kcalloc usage

adreno_show_object() is a trap!  It will re-allocate the pointer it is
passed on first call, when the data is ascii85 encoded, using kvmalloc/
kvfree().  Which means the data *passed* to it must be kvmalloc'd, ie.
we cannot use the state_kcalloc() helper.

This partially reverts commit ec8f1813bf8d ("drm/msm/a6xx: Replace
kcalloc() with kvzalloc()"), but adds the missing kvfree() to fix the
memory leak that was present previously.  And adds a warning comment.

Fixes: ec8f1813bf8d ("drm/msm/a6xx: Replace kcalloc() with kvzalloc()")
Closes: https://gitlab.freedesktop.org/drm/msm/-/issues/20
Signed-off-by: Rob Clark <robdclark@chromium.org>
Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
Reviewed-by: Akhil P Oommen <quic_akhilpo@quicinc.com>
Patchwork: https://patchwork.freedesktop.org/patch/507014/
Link: https://lore.kernel.org/r/20221013225520.371226-2-robdclark@gmail.com
drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c
drivers/gpu/drm/msm/adreno/adreno_gpu.c