On 2/24/21 7:13 AM, Stefan Weil wrote: > Am 24.02.21 um 06:53 schrieb Jason Wang: > >> This patch switches to use qemu_receive_packet() which can detect >> reentrancy and return early. >> >> Signed-off-by: Jason Wang <jasow...@redhat.com> >> --- >> hw/net/dp8393x.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/hw/net/dp8393x.c b/hw/net/dp8393x.c >> index 205c0decc5..019d4fe435 100644 >> --- a/hw/net/dp8393x.c >> +++ b/hw/net/dp8393x.c >> @@ -506,7 +506,7 @@ static void >> dp8393x_do_transmit_packets(dp8393xState *s) >> s->regs[SONIC_TCR] |= SONIC_TCR_CRSL; >> if (nc->info->can_receive(nc)) { >> s->loopback_packet = 1; >> - nc->info->receive(nc, s->tx_buffer, tx_len); >> + qemu_receice_packet(nc, s->tx_buffer, tx_Len); > > > Did you test compilation of that code? It looks like a typo ...
With typo fixed: Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>