mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
amd64 nmi handler: fix comment about %ebx
Reported by: markj MFC after: 3 days
This commit is contained in:
parent
d39f7430a6
commit
098dbd7ff7
1 changed files with 2 additions and 2 deletions
|
|
@ -940,7 +940,7 @@ outofnmi:
|
|||
cli
|
||||
nocallchain:
|
||||
#endif
|
||||
testl %ebx,%ebx /* %ebx == 0 => return to userland */
|
||||
testl %ebx,%ebx /* %ebx != 0 => return to userland */
|
||||
jnz doreti_exit
|
||||
/*
|
||||
* Restore speculation control MSR, if preserved.
|
||||
|
|
@ -1059,7 +1059,7 @@ mchk_calltrap:
|
|||
movq %rsp,%rdi
|
||||
call mca_intr
|
||||
MEXITCOUNT
|
||||
testl %ebx,%ebx /* %ebx == 0 => return to userland */
|
||||
testl %ebx,%ebx /* %ebx != 0 => return to userland */
|
||||
jnz doreti_exit
|
||||
/*
|
||||
* Restore speculation control MSR, if preserved.
|
||||
|
|
|
|||
Loading…
Reference in a new issue