]> git.ipfire.org Git - thirdparty/linux.git/commit
rpmsg: smd: do not use mananged resources for endpoints and channels
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Mon, 4 Jun 2018 09:39:01 +0000 (10:39 +0100)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Mon, 4 Jun 2018 19:35:03 +0000 (12:35 -0700)
commit4a2e84c6ed85434ce7843e4844b4d3263f7e233b
tree44ce7a2a7f84a94d1b3888149f26b7131424a9ca
parent136200f4fd365a0a9c549893c9641f6eeff53f22
rpmsg: smd: do not use mananged resources for endpoints and channels

All the managed resources would be freed by the time release function
is invoked. Handling such memory in qcom_smd_edge_release() would do
bad things.

Found this issue while testing Audio usecase where the dsp is started up
and shutdown in a loop.

This patch fixes this issue by using simple kzalloc for allocating
channel->name and channel which is then freed in qcom_smd_edge_release().

Without this patch restarting a remoteproc would crash the system.
Fixes: 53e2822e56c7 ("rpmsg: Introduce Qualcomm SMD backend")
Cc: <stable@vger.kernel.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
drivers/rpmsg/qcom_smd.c