Commit 8343dffa authored by Igor Druzhinin's avatar Igor Druzhinin Committed by Greg Kroah-Hartman

scsi: libfc: free response frame from GPN_ID

[ Upstream commit ff6993bb ]

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.comReviewed-by: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarIgor Druzhinin <igor.druzhinin@citrix.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 81aebc37
......@@ -640,6 +640,8 @@ static void fc_disc_gpn_id_resp(struct fc_seq *sp, struct fc_frame *fp,
}
out:
kref_put(&rdata->kref, fc_rport_destroy);
if (!IS_ERR(fp))
fc_frame_free(fp);
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment