[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 0/2] Fix the assert failure in scsi_dma_complete
From: |
Paolo Bonzini |
Subject: |
Re: [PATCH 0/2] Fix the assert failure in scsi_dma_complete |
Date: |
Mon, 17 Aug 2020 19:05:06 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.9.0 |
On 15/08/20 16:19, Li Qiang wrote:
> Currently in 'megasas_map_sgl' when 'iov_count=0' will just return
> success however the 'cmd' doens't contain any iov. This will cause
> the assert in 'scsi_dma_complete' failed. This is because in
> 'dma_blk_cb' the 'dbs->sg_cur_index == dbs->sg->nsg' will be true
> and just call 'dma_complete'. However now there is no aiocb returned.
>
> This is the LP#1878263:
>
> -->https://bugs.launchpad.net/qemu/+bug/1878263
>
> To solve this we will consider the 'iov_count=0' is an error.
> In the first patch, I uses -1 to indicate an error and in the second
> patch I consider 'iov_count=0' is an error.
>
> Li Qiang (2):
> hw: megasas: return -1 when 'megasas_map_sgl' fails
> hw: megasas: consider 'iov_count=0' is an error in megasas_map_sgl
>
> hw/scsi/megasas.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
Queued, thanks. But do you have a qtest for this?
Paolo