]> git.ipfire.org Git - thirdparty/ipxe.git/commit
[ifmgmt] Do not sleep CPU while configuring network devices
authorMichael Brown <mcb30@ipxe.org>
Sun, 1 Jun 2014 18:24:16 +0000 (19:24 +0100)
committerMichael Brown <mcb30@ipxe.org>
Sun, 1 Jun 2014 18:54:23 +0000 (19:54 +0100)
commit9f0b7f428af04d0c5ddda78f9b034625f2f91831
tree54a8cf4b2a5d88e730411756fb4d283b030220d2
parentf3d423b26b2baa3e4c3919c5a2e12d793043f354
[ifmgmt] Do not sleep CPU while configuring network devices

iPXE currently calls cpu_nap() while performing DHCP, in order to
reduce CPU utilisation on virtual machines.  Under mild broadcast load
(~100 packets per second), this can cause received packets to be
dropped because the receive descriptor ring is overrun before the next
18Hz timer interrupt wakes up the CPU.  The result is that DHCP is
likely to intermittently fail on networks with appreciable amounts of
broadcast (or multicast) traffic.

This behaviour was introduced in the series of commits which
generalised the "dhcp" command to the "ifconf" command.  The earlier
code (which did not handle IPv6 configuration) had no call to
cpu_nap() and so did not suffer from this problem.

Fix by removing the call to cpu_nap() in ifpoller_progress().  This
has the undesirable side effect that CPU utilisation will remain at
100% while waiting for DHCP to complete (which can take several
seconds, if we have to wait around for potential ProxyDHCP offers to
arrive).

Reported-by: Alex Davies <adavies@jumptrading.com>
Reported-by: Christoffer Stokbæk <christoffers@easyspeedy.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/usr/ifmgmt.c