scsi: esas2r: don't reinitialize adapter's req_table
req_table is allocate by kzalloc, so we don't need to zero it again. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Acked-by: Bradley Grove <bgrove@attotech.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
67f251759e
commit
108c8670df
|
@ -963,10 +963,6 @@ bool esas2r_init_adapter_struct(struct esas2r_adapter *a,
|
||||||
|
|
||||||
/* initialize the allocated memory */
|
/* initialize the allocated memory */
|
||||||
if (test_bit(AF_FIRST_INIT, &a->flags)) {
|
if (test_bit(AF_FIRST_INIT, &a->flags)) {
|
||||||
memset(a->req_table, 0,
|
|
||||||
(num_requests + num_ae_requests +
|
|
||||||
1) * sizeof(struct esas2r_request *));
|
|
||||||
|
|
||||||
esas2r_targ_db_initialize(a);
|
esas2r_targ_db_initialize(a);
|
||||||
|
|
||||||
/* prime parts of the inbound list */
|
/* prime parts of the inbound list */
|
||||||
|
|
Loading…
Reference in New Issue