Skip to content

Commit

Permalink
scsi: qla2xxx: remove some redundant pointer assignments
Browse files Browse the repository at this point in the history
There are several local or function parameter pointers that are being
assigned NULL after a kfree where and these have no effect and hence can
be removed.

Fixes various cppcheck warnings:

"Assignment of function parameter has no effect outside the
function. Did you forget dereferencing it"

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
  • Loading branch information
Colin Ian King authored and martinkpetersen committed Apr 12, 2017
1 parent bf5ea6f commit 1fdcd2d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions drivers/scsi/qla2xxx/qla_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,6 @@ static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req)
kfree(req->outstanding_cmds);

kfree(req);
req = NULL;
}

static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
Expand All @@ -439,7 +438,6 @@ static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
rsp->ring, rsp->dma);
}
kfree(rsp);
rsp = NULL;
}

static void qla2x00_free_queues(struct qla_hw_data *ha)
Expand Down Expand Up @@ -653,7 +651,6 @@ qla2x00_sp_free_dma(void *ptr)
ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt;
ha->gbl_dsd_avail += ctx1->dsd_use_cnt;
mempool_free(ctx1, ha->ctx_mempool);
ctx1 = NULL;
}

CMD_SP(cmd) = NULL;
Expand Down Expand Up @@ -3235,7 +3232,6 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
}
pci_release_selected_regions(ha->pdev, ha->bars);
kfree(ha);
ha = NULL;

probe_out:
pci_disable_device(pdev);
Expand Down Expand Up @@ -3482,7 +3478,6 @@ qla2x00_remove_one(struct pci_dev *pdev)

pci_release_selected_regions(ha->pdev, ha->bars);
kfree(ha);
ha = NULL;

pci_disable_pcie_error_reporting(pdev);

Expand Down Expand Up @@ -3546,7 +3541,6 @@ void qla2x00_free_fcports(struct scsi_qla_host *vha)
list_del(&fcport->list);
qla2x00_clear_loop_id(fcport);
kfree(fcport);
fcport = NULL;
}
}

Expand Down

0 comments on commit 1fdcd2d

Please sign in to comment.