Home
last modified time | relevance | path

Searched hist:"43 d3f2c715cefcfb89b10675728e9bf0d8bb98e3" (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/remoteproc/
H A Dremoteproc_core.cdiff 43d3f2c715cefcfb89b10675728e9bf0d8bb98e3 Mon Jan 18 17:59:04 CET 2021 Daniele Alessandrelli <daniele.alessandrelli@intel.com> remoteproc: core: Fix rproc->firmware free in rproc_set_firmware()

rproc_alloc_firmware() (called by rproc_alloc()) can allocate
rproc->firmware using kstrdup_const() and therefore should be freed
using kfree_const(); however, rproc_set_firmware() frees it using the
simple kfree(). This causes a kernel oops if a constant string is passed
to rproc_alloc() and rproc_set_firmware() is subsequently called.

Fix the above issue by using kfree_const() to free rproc->firmware in
rproc_set_firmware().

Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
Link: https://lore.kernel.org/r/20210118165904.719999-1-daniele.alessandrelli@linux.intel.com
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>