[syslinux:lwip] pxe: drop the maximum spurious interrupt to 100 in a timer tick

syslinux-bot for H. Peter Anvin hpa at zytor.com
Tue May 29 19:36:03 PDT 2012


Commit-ID:  4645f42100d2d11fa0281dbdc5431882e4cac69b
Gitweb:     http://www.syslinux.org/commit/4645f42100d2d11fa0281dbdc5431882e4cac69b
Author:     H. Peter Anvin <hpa at zytor.com>
AuthorDate: Tue, 29 May 2012 19:26:36 -0700
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Tue, 29 May 2012 19:26:36 -0700

pxe: drop the maximum spurious interrupt to 100 in a timer tick

More dangerous, but avoids false negatives...

Signed-off-by: H. Peter Anvin <hpa at zytor.com>

---
 core/pxeisr.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/core/pxeisr.inc b/core/pxeisr.inc
index b6434f3..6f9844e 100644
--- a/core/pxeisr.inc
+++ b/core/pxeisr.inc
@@ -3,7 +3,7 @@
 ;
 		section .text16
 
-PXEIRQ_MAX	equ 1000	; Max spurious interrupts in a timer tick
+PXEIRQ_MAX	equ 100		; Max spurious interrupts in a timer tick
 
 		global pxe_isr
 pxe_isr:


More information about the Syslinux-commits mailing list