qla2xxx: Fix a warning reported by the "smatch" static checker
Fix the following warning reported by the "smatch" static checker: drivers/scsi/qla2xxx/qla_init.c:3910 qla2x00_alloc_fcport() warn: use 'flags' here instead of GFP_XXX? Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Quinn Tran <quinn.tran@cavium.com> Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com> Cc: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
4d65491c26
commit
6cb3216a78
|
@ -3909,7 +3909,7 @@ qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags)
|
||||||
|
|
||||||
fcport->ct_desc.ct_sns = dma_alloc_coherent(&vha->hw->pdev->dev,
|
fcport->ct_desc.ct_sns = dma_alloc_coherent(&vha->hw->pdev->dev,
|
||||||
sizeof(struct ct_sns_pkt), &fcport->ct_desc.ct_sns_dma,
|
sizeof(struct ct_sns_pkt), &fcport->ct_desc.ct_sns_dma,
|
||||||
GFP_ATOMIC);
|
flags);
|
||||||
fcport->disc_state = DSC_DELETED;
|
fcport->disc_state = DSC_DELETED;
|
||||||
fcport->fw_login_state = DSC_LS_PORT_UNAVAIL;
|
fcport->fw_login_state = DSC_LS_PORT_UNAVAIL;
|
||||||
fcport->deleted = QLA_SESS_DELETED;
|
fcport->deleted = QLA_SESS_DELETED;
|
||||||
|
|
Loading…
Reference in New Issue