|
@@ -998,8 +998,9 @@ megaraid_alloc_cmd_packets(adapter_t *adapter)
|
|
|
* Allocate the common 16-byte aligned memory for the handshake
|
|
|
* mailbox.
|
|
|
*/
|
|
|
- raid_dev->una_mbox64 = pci_alloc_consistent(adapter->pdev,
|
|
|
- sizeof(mbox64_t), &raid_dev->una_mbox64_dma);
|
|
|
+ raid_dev->una_mbox64 = pci_zalloc_consistent(adapter->pdev,
|
|
|
+ sizeof(mbox64_t),
|
|
|
+ &raid_dev->una_mbox64_dma);
|
|
|
|
|
|
if (!raid_dev->una_mbox64) {
|
|
|
con_log(CL_ANN, (KERN_WARNING
|
|
@@ -1007,7 +1008,6 @@ megaraid_alloc_cmd_packets(adapter_t *adapter)
|
|
|
__LINE__));
|
|
|
return -1;
|
|
|
}
|
|
|
- memset(raid_dev->una_mbox64, 0, sizeof(mbox64_t));
|
|
|
|
|
|
/*
|
|
|
* Align the mailbox at 16-byte boundary
|
|
@@ -1026,8 +1026,8 @@ megaraid_alloc_cmd_packets(adapter_t *adapter)
|
|
|
align;
|
|
|
|
|
|
// Allocate memory for commands issued internally
|
|
|
- adapter->ibuf = pci_alloc_consistent(pdev, MBOX_IBUF_SIZE,
|
|
|
- &adapter->ibuf_dma_h);
|
|
|
+ adapter->ibuf = pci_zalloc_consistent(pdev, MBOX_IBUF_SIZE,
|
|
|
+ &adapter->ibuf_dma_h);
|
|
|
if (!adapter->ibuf) {
|
|
|
|
|
|
con_log(CL_ANN, (KERN_WARNING
|
|
@@ -1036,7 +1036,6 @@ megaraid_alloc_cmd_packets(adapter_t *adapter)
|
|
|
|
|
|
goto out_free_common_mbox;
|
|
|
}
|
|
|
- memset(adapter->ibuf, 0, MBOX_IBUF_SIZE);
|
|
|
|
|
|
// Allocate memory for our SCSI Command Blocks and their associated
|
|
|
// memory
|
|
@@ -2972,8 +2971,8 @@ megaraid_mbox_product_info(adapter_t *adapter)
|
|
|
* Issue an ENQUIRY3 command to find out certain adapter parameters,
|
|
|
* e.g., max channels, max commands etc.
|
|
|
*/
|
|
|
- pinfo = pci_alloc_consistent(adapter->pdev, sizeof(mraid_pinfo_t),
|
|
|
- &pinfo_dma_h);
|
|
|
+ pinfo = pci_zalloc_consistent(adapter->pdev, sizeof(mraid_pinfo_t),
|
|
|
+ &pinfo_dma_h);
|
|
|
|
|
|
if (pinfo == NULL) {
|
|
|
con_log(CL_ANN, (KERN_WARNING
|
|
@@ -2982,7 +2981,6 @@ megaraid_mbox_product_info(adapter_t *adapter)
|
|
|
|
|
|
return -1;
|
|
|
}
|
|
|
- memset(pinfo, 0, sizeof(mraid_pinfo_t));
|
|
|
|
|
|
mbox->xferaddr = (uint32_t)adapter->ibuf_dma_h;
|
|
|
memset((void *)adapter->ibuf, 0, MBOX_IBUF_SIZE);
|