summaryrefslogtreecommitdiffstats
path: root/src/core/nic.c
diff options
context:
space:
mode:
authorMichael Brown2006-08-15 00:29:51 +0200
committerMichael Brown2006-08-15 00:29:51 +0200
commit97439cb6ebb49fad9855cc975cc80fb3eb8db13b (patch)
treece5375cd5e3ac7b2fa6109fd2725293db224665f /src/core/nic.c
parentBug fixes to the HTTP protocol code (diff)
downloadipxe-97439cb6ebb49fad9855cc975cc80fb3eb8db13b.tar.gz
ipxe-97439cb6ebb49fad9855cc975cc80fb3eb8db13b.tar.xz
ipxe-97439cb6ebb49fad9855cc975cc80fb3eb8db13b.zip
Kill off poll_interruptions(); it is lethal when we're acting as a PXE
stack or INT 13 emulator etc.
Diffstat (limited to 'src/core/nic.c')
-rw-r--r--src/core/nic.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/nic.c b/src/core/nic.c
index 0382ced2d..1debd06c7 100644
--- a/src/core/nic.c
+++ b/src/core/nic.c
@@ -883,11 +883,6 @@ int await_reply(reply_t reply, int ival, void *ptr, long timeout)
if (result == 0) {
/* We don't have anything */
- /* Check for abort key only if the Rx queue is empty -
- * as long as we have something to process, don't
- * assume that something failed. It is unlikely that
- * we have no processing time left between packets. */
- poll_interruptions();
/* Do the timeout after at least a full queue walk. */
if ((timeout == 0) || (currticks() > time)) {
break;