summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2008-02-11 17:33:37 +0100
committerMichael Brown2008-02-11 17:33:37 +0100
commit40990465f1cc38be6efa03b74eaad2a5ca03e144 (patch)
tree503b79372a290ba543bc7e45132f5ccd83f5274e
parentUNDI ISR: save and restore 32-bit registers (diff)
parentundiisr.S: save/restore upper half of %eflags (diff)
downloadipxe-40990465f1cc38be6efa03b74eaad2a5ca03e144.tar.gz
ipxe-40990465f1cc38be6efa03b74eaad2a5ca03e144.tar.xz
ipxe-40990465f1cc38be6efa03b74eaad2a5ca03e144.zip
Merge branch 'master' of rom.etherboot.org:/pub/scm/gpxe
-rw-r--r--src/arch/i386/drivers/net/undiisr.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/i386/drivers/net/undiisr.S b/src/arch/i386/drivers/net/undiisr.S
index 15e1a63a..f1c9eb15 100644
--- a/src/arch/i386/drivers/net/undiisr.S
+++ b/src/arch/i386/drivers/net/undiisr.S
@@ -23,6 +23,7 @@ undiisr:
pushw %es
pushw %fs
pushw %gs
+ pushfl
pushal
/* Set up our segment registers */
@@ -64,6 +65,7 @@ chain: /* Chain to next handler */
exit: /* Restore registers and return */
popal
+ popfl
popw %gs
popw %fs
popw %es