summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHannes Reinecke <hare@suse.de>2019-01-08 12:46:58 +0100
committerChristoph Hellwig <hch@lst.de>2019-01-09 13:47:06 -0500
commitc7055fd15ff46d92eb0dd1c16a4fe010d58224c8 (patch)
treeddc6cfcf2ec26aa31e225d678b558a6793610f41
parent9846ac0143fe9872e92fe2a1ddff868ad05bdbb6 (diff)
downloadlinux-0-day-c7055fd15ff46d92eb0dd1c16a4fe010d58224c8.tar.gz
linux-0-day-c7055fd15ff46d92eb0dd1c16a4fe010d58224c8.tar.xz
nvme-multipath: zero out ANA log buffer
When nvme_init_identify() fails the ANA log buffer is deallocated but _not_ set to NULL. This can cause double free oops when this controller is deleted without ever being reconnected. Signed-off-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--drivers/nvme/host/multipath.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/nvme/host/multipath.c b/drivers/nvme/host/multipath.c
index 183ec17ba0678..df4b3a6db51bf 100644
--- a/drivers/nvme/host/multipath.c
+++ b/drivers/nvme/host/multipath.c
@@ -570,6 +570,7 @@ int nvme_mpath_init(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
return 0;
out_free_ana_log_buf:
kfree(ctrl->ana_log_buf);
+ ctrl->ana_log_buf = NULL;
out:
return error;
}
@@ -577,5 +578,6 @@ out:
void nvme_mpath_uninit(struct nvme_ctrl *ctrl)
{
kfree(ctrl->ana_log_buf);
+ ctrl->ana_log_buf = NULL;
}