mirror of https://gitee.com/openkylin/qemu.git
cadence_gem: Read the correct queue descriptor
Read the correct descriptor instead of hardcoding the first (q=0). Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 988b183dcf951856d8b3379f7e911ec95233bbf4.1491947224.git.alistair.francis@xilinx.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
0493a139c9
commit
75b7760212
|
@ -790,8 +790,8 @@ static void gem_get_rx_desc(CadenceGEMState *s, int q)
|
|||
{
|
||||
DB_PRINT("read descriptor 0x%x\n", (unsigned)s->rx_desc_addr[q]);
|
||||
/* read current descriptor */
|
||||
cpu_physical_memory_read(s->rx_desc_addr[0],
|
||||
(uint8_t *)s->rx_desc[0], sizeof(s->rx_desc[0]));
|
||||
cpu_physical_memory_read(s->rx_desc_addr[q],
|
||||
(uint8_t *)s->rx_desc[q], sizeof(s->rx_desc[q]));
|
||||
|
||||
/* Descriptor owned by software ? */
|
||||
if (rx_desc_get_ownership(s->rx_desc[q]) == 1) {
|
||||
|
|
Loading…
Reference in New Issue