mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
etsec: Flush queue when rx buffer is consumed
The BH will be scheduled when etsec->rx_buffer_len is becoming 0, which is the condition of queuing. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Jason Wang <jasowang@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: 1436955553-22791-7-git-send-email-famz@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
b6cb6610c2
commit
575bafd1f3
3 changed files with 15 additions and 1 deletions
|
@ -342,13 +342,22 @@ static ssize_t etsec_receive(NetClientState *nc,
|
|||
const uint8_t *buf,
|
||||
size_t size)
|
||||
{
|
||||
ssize_t ret;
|
||||
eTSEC *etsec = qemu_get_nic_opaque(nc);
|
||||
|
||||
#if defined(HEX_DUMP)
|
||||
fprintf(stderr, "%s receive size:%d\n", etsec->nic->nc.name, size);
|
||||
qemu_hexdump(buf, stderr, "", size);
|
||||
#endif
|
||||
return etsec_rx_ring_write(etsec, buf, size);
|
||||
/* Flush is unnecessary as are already in receiving path */
|
||||
etsec->need_flush = false;
|
||||
ret = etsec_rx_ring_write(etsec, buf, size);
|
||||
if (ret == 0) {
|
||||
/* The packet will be queued, let's flush it when buffer is avilable
|
||||
* again. */
|
||||
etsec->need_flush = true;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue