To properly ignore some requests through the use of continue;, indexes need to
be updated.
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
committer: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
rmb(); /* Ensure we see queued responses up to 'rp'. */
cons = dev->rx.rsp_cons;
- nr_consumed = 0;
- some = 0;
- while ((cons != rp) && !some)
+ for (nr_consumed = 0, some = 0;
+ (cons != rp) && !some;
+ nr_consumed++, cons++)
{
struct net_buffer* buf;
unsigned char* page;
#endif
dev->netif_rx(page+rx->offset,rx->status);
}
-
- nr_consumed++;
-
- ++cons;
}
dev->rx.rsp_cons=cons;