mirror of https://github.com/xemu-project/xemu.git
slirp: Refactor if_start
Replace gotos with a while loop, fix coding style. CC: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> CC: Fabien Chouteau <chouteau@adacore.com> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
parent
b248ede2ef
commit
b87ffa1631
24
slirp/if.c
24
slirp/if.c
|
@ -149,8 +149,7 @@ diddit:
|
|||
* from the second session, then one packet from the third, then back
|
||||
* to the first, etc. etc.
|
||||
*/
|
||||
void
|
||||
if_start(Slirp *slirp)
|
||||
void if_start(Slirp *slirp)
|
||||
{
|
||||
uint64_t now = qemu_get_clock_ns(rt_clock);
|
||||
int requeued = 0;
|
||||
|
@ -159,10 +158,7 @@ if_start(Slirp *slirp)
|
|||
|
||||
DEBUG_CALL("if_start");
|
||||
|
||||
if (slirp->if_queued == 0)
|
||||
return; /* Nothing to do */
|
||||
|
||||
again:
|
||||
while (slirp->if_queued) {
|
||||
/* check if we can really output */
|
||||
if (!slirp_can_output(slirp->opaque))
|
||||
return;
|
||||
|
@ -175,10 +171,11 @@ if_start(Slirp *slirp)
|
|||
ifm = slirp->if_fastq.ifq_next;
|
||||
} else {
|
||||
/* Nothing on fastq, see if next_m is valid */
|
||||
if (slirp->next_m != &slirp->if_batchq)
|
||||
if (slirp->next_m != &slirp->if_batchq) {
|
||||
ifm = slirp->next_m;
|
||||
else
|
||||
} else {
|
||||
ifm = slirp->if_batchq.ifq_next;
|
||||
}
|
||||
|
||||
from_batchq = true;
|
||||
}
|
||||
|
@ -189,7 +186,7 @@ if_start(Slirp *slirp)
|
|||
if (ifm->expiration_date >= now && !if_encap(slirp, ifm)) {
|
||||
/* Packet is delayed due to pending ARP resolution */
|
||||
requeued++;
|
||||
goto out;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (from_batchq) {
|
||||
|
@ -202,23 +199,20 @@ if_start(Slirp *slirp)
|
|||
remque(ifm);
|
||||
|
||||
/* If there are more packets for this session, re-queue them */
|
||||
if (ifm->ifs_next != /* ifm->ifs_prev != */ ifm) {
|
||||
if (ifm->ifs_next != ifm) {
|
||||
insque(ifm->ifs_next, ifqt);
|
||||
ifs_remque(ifm);
|
||||
}
|
||||
|
||||
/* Update so_queued */
|
||||
if (ifm->ifq_so) {
|
||||
if (--ifm->ifq_so->so_queued == 0)
|
||||
if (ifm->ifq_so && --ifm->ifq_so->so_queued == 0) {
|
||||
/* If there's no more queued, reset nqueued */
|
||||
ifm->ifq_so->so_nqueued = 0;
|
||||
}
|
||||
|
||||
m_free(ifm);
|
||||
|
||||
out:
|
||||
if (slirp->if_queued)
|
||||
goto again;
|
||||
}
|
||||
|
||||
slirp->if_queued = requeued;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue