提交 b61744b3 编写于 作者: P Paolo Bonzini 提交者: Stefan Hajnoczi

ide: drop argument to dma_buf_commit

The argument is unused and even wrong when the function is called
by ide_handle_rw_error.  Drop it.
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: NStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
上级 5ab97b7f
......@@ -493,7 +493,7 @@ void ide_sector_read(IDEState *s)
}
}
static void dma_buf_commit(IDEState *s, int is_write)
static void dma_buf_commit(IDEState *s)
{
qemu_sglist_destroy(&s->sg);
}
......@@ -532,7 +532,7 @@ static int ide_handle_rw_error(IDEState *s, int error, int op)
bdrv_iostatus_set_err(s->bs, error);
} else {
if (op & BM_STATUS_DMA_RETRY) {
dma_buf_commit(s, 0);
dma_buf_commit(s);
ide_dma_error(s);
} else {
ide_rw_error(s);
......@@ -566,7 +566,7 @@ handle_rw_error:
n = s->io_buffer_size >> 9;
sector_num = ide_get_sector(s);
if (n > 0) {
dma_buf_commit(s, ide_cmd_is_read(s));
dma_buf_commit(s);
sector_num += n;
ide_set_sector(s, sector_num);
s->nsector -= n;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册