Skip to content

Commit 9f0b7f4

Browse files
committed
[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>
1 parent f3d423b commit 9f0b7f4

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/usr/ifmgmt.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ FILE_LICENCE ( GPL2_OR_LATER );
2828
#include <ipxe/device.h>
2929
#include <ipxe/job.h>
3030
#include <ipxe/monojob.h>
31-
#include <ipxe/nap.h>
3231
#include <ipxe/timer.h>
3332
#include <usr/ifmgmt.h>
3433

@@ -142,9 +141,6 @@ struct ifpoller {
142141
static int ifpoller_progress ( struct ifpoller *ifpoller,
143142
struct job_progress *progress __unused ) {
144143

145-
/* Reduce CPU utilisation */
146-
cpu_nap();
147-
148144
/* Hand off to current progress checker */
149145
return ifpoller->progress ( ifpoller );
150146
}

0 commit comments

Comments
 (0)