Displaying 3 results from an estimated 3 matches for "check_cpuid".
Did you mean:
check_cid
2002 Mar 08
0
PXELINUX: suggestion for improvement
...ext part --------------
Binary files ./pxelinux.0.orig and ./pxelinux.0 differ
*** ./pxelinux.asm.orig Sun Feb 3 22:37:55 2002
--- ./pxelinux.asm Fri Mar 8 12:08:22 2002
***************
*** 954,959 ****
--- 954,964 ----
jnz .success
.badness: popa
+ cmp cx,9
+ jl .skip_cpuid
+ call check_cpuid
+ jnz .success
+ .skip_cpuid:
dec di
loop .tryagain
***************
*** 4827,4832 ****
--- 4832,4990 ----
popad
ret
+ ;
+ ; check_cpuid by <appro at fy.chalmers.se>.
+ ;
+ ; This routine attempts to fetch config file based on CPU architecture
+ ; instead of [partial] I...
2015 Oct 26
9
[PATCH 0/7] Hyper-V Synthetic interrupt controller
Hyper-V SynIC (synthetic interrupt controller) device
implementation.
The implementation contains:
* msr's support
* irq routing setup
* irq injection
* irq ack callback registration
* event/message pages changes tracking at Hyper-V exit
* Hyper-V test device to test SynIC by kvm-unit-tests
Andrey Smetanin (7):
standard-headers/x86: add Hyper-V SynIC constants
target-i386/kvm: Hyper-V
2015 Oct 26
9
[PATCH 0/7] Hyper-V Synthetic interrupt controller
Hyper-V SynIC (synthetic interrupt controller) device
implementation.
The implementation contains:
* msr's support
* irq routing setup
* irq injection
* irq ack callback registration
* event/message pages changes tracking at Hyper-V exit
* Hyper-V test device to test SynIC by kvm-unit-tests
Andrey Smetanin (7):
standard-headers/x86: add Hyper-V SynIC constants
target-i386/kvm: Hyper-V