From: Quinn Tran Date: Wed, 6 Dec 2017 11:16:00 +0000 (+0530) Subject: qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport X-Git-Tag: v4.1.12-124.31.3~1442 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b3765b9b74e45a8c639b2195eb7b04218d9e6afc;p=users%2Fjedix%2Flinux-maple.git qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport Orabug: 27235104 Current code manually allocate an fcport structure that is not properly initialize. Replace kzalloc with qla2x00_alloc_fcport, so that all fields are initialized. Cc: Signed-off-by: Quinn Tran Signed-off-by: Himanshu Madhani Reviewed-by: Hannes Reinecke [ Upstream commit 063b36d6b0ad74c748d536f5cb47bac2f850a0fa ] Signed-off-by: Somasundaram Krishnasamy Reviewed-by: Jack Vogel --- diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c index fdcd3a667953..35c6794c2f61 100644 --- a/drivers/scsi/qla2xxx/qla_target.c +++ b/drivers/scsi/qla2xxx/qla_target.c @@ -5523,7 +5523,7 @@ static fc_port_t *qlt_get_port_database(struct scsi_qla_host *vha, unsigned long flags; u8 newfcport = 0; - fcport = kzalloc(sizeof(*fcport), GFP_KERNEL); + fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL); if (!fcport) { ql_dbg(ql_dbg_tgt_mgt, vha, 0xf06f, "qla_target(%d): Allocation of tmp FC port failed",