mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-30 07:34:12 +08:00
scsi: storvsc: Payload buffer incorrectly sized for 32 bit kernels.
On a 32 bit kernel sizeof(void *) is not 64 bits as hv_mpb_array requires. Also the buffer needs to be cleared or the upper bytes will contain junk. Suggested-by: Vitaly Kuznetsov <vkuznets@redhat.com> Signed-off-by: Cathy Avery <cavery@redhat.com> Reviewed-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
338be07233
commit
b0120d9906
@ -1495,9 +1495,9 @@ static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
|
|||||||
if (sg_count) {
|
if (sg_count) {
|
||||||
if (sg_count > MAX_PAGE_BUFFER_COUNT) {
|
if (sg_count > MAX_PAGE_BUFFER_COUNT) {
|
||||||
|
|
||||||
payload_sz = (sg_count * sizeof(void *) +
|
payload_sz = (sg_count * sizeof(u64) +
|
||||||
sizeof(struct vmbus_packet_mpb_array));
|
sizeof(struct vmbus_packet_mpb_array));
|
||||||
payload = kmalloc(payload_sz, GFP_ATOMIC);
|
payload = kzalloc(payload_sz, GFP_ATOMIC);
|
||||||
if (!payload)
|
if (!payload)
|
||||||
return SCSI_MLQUEUE_DEVICE_BUSY;
|
return SCSI_MLQUEUE_DEVICE_BUSY;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user