xen/netback: fix incorrect usage of RING_HAS_UNCONSUMED_REQUESTS()
Commit6fac592cca
("xen: update ring.h") missed to fix one use case of RING_HAS_UNCONSUMED_REQUESTS(). Reported-by: Jan Beulich <jbeulich@suse.com> Fixes:6fac592cca
("xen: update ring.h") Signed-off-by: Juergen Gross <jgross@suse.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> Acked-by: Wei Liu <wei.liu@kernel.org> Link: https://lore.kernel.org/r/20220530113459.20124-1-jgross@suse.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
3e0b8f529c
commit
09e545f738
@ -828,7 +828,7 @@ static void xenvif_tx_build_gops(struct xenvif_queue *queue,
|
||||
break;
|
||||
}
|
||||
|
||||
work_to_do = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
|
||||
work_to_do = XEN_RING_NR_UNCONSUMED_REQUESTS(&queue->tx);
|
||||
if (!work_to_do)
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user