summaryrefslogtreecommitdiffstats
path: root/fs/pstore/platform.c
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2020-05-08 09:16:02 -0700
committerKees Cook <keescook@chromium.org>2020-05-30 10:34:02 -0700
commit563ca40ddf400dbf8c6254077f9b6887101d0f08 (patch)
tree76b05014c5d219d3e3754ab0517069a58c677653 /fs/pstore/platform.c
parentb7753fc7f6f5626e51ee78156fd801fb52163af0 (diff)
downloadlinux-563ca40ddf400dbf8c6254077f9b6887101d0f08.tar.gz
linux-563ca40ddf400dbf8c6254077f9b6887101d0f08.tar.bz2
linux-563ca40ddf400dbf8c6254077f9b6887101d0f08.zip
pstore/platform: Switch pstore_info::name to const
In order to more cleanly pass around backend names, make the "name" member const. This means the module param needs to be dynamic (technically, it was before, so this actually cleans up a minor memory leak if a backend was specified and then gets unloaded.) Link: https://lore.kernel.org/lkml/20200510202436.63222-3-keescook@chromium.org/ Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'fs/pstore/platform.c')
-rw-r--r--fs/pstore/platform.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c
index 8beaeff72386..715396bef0ea 100644
--- a/fs/pstore/platform.c
+++ b/fs/pstore/platform.c
@@ -624,7 +624,7 @@ int pstore_register(struct pstore_info *psi)
* Update the module parameter backend, so it is visible
* through /sys/module/pstore/parameters/backend
*/
- backend = psi->name;
+ backend = kstrdup(psi->name, GFP_KERNEL);
pr_info("Registered %s as persistent store backend\n", psi->name);
@@ -667,6 +667,7 @@ void pstore_unregister(struct pstore_info *psi)
free_buf_for_compression();
psinfo = NULL;
+ kfree(backend);
backend = NULL;
mutex_unlock(&psinfo_lock);
}