mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
netback: correct netbk_tx_err to handle wrap around.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Jan Beulich <JBeulich@suse.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4cc7c1cb7b
commit
b9149729eb
@ -880,7 +880,7 @@ static void netbk_tx_err(struct xenvif *vif,
|
||||
|
||||
do {
|
||||
make_tx_response(vif, txp, XEN_NETIF_RSP_ERROR);
|
||||
if (cons >= end)
|
||||
if (cons == end)
|
||||
break;
|
||||
txp = RING_GET_REQUEST(&vif->tx, cons++);
|
||||
} while (1);
|
||||
|
Loading…
Reference in New Issue
Block a user