]> git.ipfire.org Git - people/arne_f/kernel.git/commitdiff
scsi: libfc: free response frame from GPN_ID
authorIgor Druzhinin <igor.druzhinin@citrix.com>
Tue, 14 Jan 2020 14:43:19 +0000 (14:43 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Mar 2020 10:55:53 +0000 (11:55 +0100)
[ Upstream commit ff6993bb79b9f99bdac0b5378169052931b65432 ]

fc_disc_gpn_id_resp() should be the last function using it so free it here
to avoid memory leak.

Link: https://lore.kernel.org/r/1579013000-14570-2-git-send-email-igor.druzhinin@citrix.com
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Igor Druzhinin <igor.druzhinin@citrix.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/scsi/libfc/fc_disc.c

index f969a71348ef1e94c3a725c863f3f49ca9bbc8ea..8839f509b19ab2b8e4785a78e097c600deceac06 100644 (file)
@@ -640,6 +640,8 @@ redisc:
        }
 out:
        kref_put(&rdata->kref, fc_rport_destroy);
+       if (!IS_ERR(fp))
+               fc_frame_free(fp);
 }
 
 /**