From: James Smart Date: Wed, 29 Nov 2017 23:11:37 +0000 (-0800) Subject: nvme-fc: remove double put reference if admin connect fails X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a1aef5ce2abef719d1881bd22e0e875cca8f7b6f;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git nvme-fc: remove double put reference if admin connect fails [ Upstream commit 4596e752db02d47038cd7c965419789ab15d1985 ] There are two put references in the failure case of initial create_association. The first put actually frees the controller, thus the second put references freed memory. Remove the unnecessary 2nd put. Signed-off-by: James Smart Signed-off-by: Christoph Hellwig Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/nvme/host/fc.c b/drivers/nvme/host/fc.c index 3148d760d825..7deb7b5d8683 100644 --- a/drivers/nvme/host/fc.c +++ b/drivers/nvme/host/fc.c @@ -2876,7 +2876,6 @@ nvme_fc_init_ctrl(struct device *dev, struct nvmf_ctrl_options *opts, /* initiate nvme ctrl ref counting teardown */ nvme_uninit_ctrl(&ctrl->ctrl); - nvme_put_ctrl(&ctrl->ctrl); /* Remove core ctrl ref. */ nvme_put_ctrl(&ctrl->ctrl);