aboutsummaryrefslogtreecommitdiff
path: root/i386/i386at/interrupt.S
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-13 00:57:14 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-13 00:57:14 +0200
commitd6ca407ed23159d161309740c5bf342d13edcc43 (patch)
tree27ac659129ff79a47eec7fdae1f63c1c5162f023 /i386/i386at/interrupt.S
parent6dcf01215edfd49a97c86e7c0d49e0d75785cf84 (diff)
downloadgnumach-d6ca407ed23159d161309740c5bf342d13edcc43.tar.gz
gnumach-d6ca407ed23159d161309740c5bf342d13edcc43.tar.bz2
gnumach-d6ca407ed23159d161309740c5bf342d13edcc43.zip
IPI: Rework irq names and fix x86_64 build
Diffstat (limited to 'i386/i386at/interrupt.S')
-rw-r--r--i386/i386at/interrupt.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/i386/i386at/interrupt.S b/i386/i386at/interrupt.S
index 01198bf5..18680090 100644
--- a/i386/i386at/interrupt.S
+++ b/i386/i386at/interrupt.S
@@ -45,10 +45,10 @@ ENTRY(interrupt)
ret /* if so, just return */
1:
#endif
- cmpl $CALL_SINGLE_FUNCTION_BASE,%eax /* was this a SMP call single function request? */
+ cmpl $CALL_PMAP_UPDATE,%eax /* was this a SMP pmap_update request? */
je _call_single
- cmpl $CALL_LOCAL_AST_BASE,%eax /* was this a SMP remote -> local ast request? */
+ cmpl $CALL_AST_CHECK,%eax /* was this a SMP remote -> local ast request? */
je _call_local_ast
subl $24,%esp /* Two local variables + 4 parameters */
@@ -130,7 +130,7 @@ _no_eoi:
_call_single:
cli /* no nested interrupts */
call EXT(lapic_eoi) /* lapic EOI before the handler to allow extra update */
- call EXT(pmap_update_interrupt) /* TODO: Allow other functions */
+ call EXT(pmap_update_interrupt)
ret
_call_local_ast: