search for: inb_p

Displaying 4 results from an estimated 4 matches for "inb_p".

2023 Aug 01
0
[linux-next:master] BUILD REGRESSION a734662572708cf062e974f659ae50c24fc1ad17
...nstant include/asm-generic/io.h:1137:20: error: static declaration of 'ioport_map' follows non-static declaration include/asm-generic/io.h:1147:22: error: static declaration of 'ioport_unmap' follows non-static declaration include/asm-generic/io.h:636:15: error: redefinition of 'inb_p' include/asm-generic/io.h:644:15: error: redefinition of 'inw_p' include/asm-generic/io.h:652:15: error: redefinition of 'inl_p' include/asm-generic/io.h:660:16: error: redefinition of 'outb_p' include/asm-generic/io.h:668:16: error: redefinition of 'outw_p' incl...
2007 Sep 08
4
[PATCH] Unified shutdown code
...o_idt[2]; static int reboot_mode; +#define TEARDOWN_TYPE_REBOOT 0 +#define TEARDOWN_TYPE_HALT 1 +#define TEARDOWN_TYPE_EARLY 2 + static inline void kb_wait(void) { int i; @@ -36,20 +40,6 @@ static inline void kb_wait(void) for ( i = 0; i < 0x10000; i++ ) if ( (inb_p(0x64) & 0x02) == 0 ) break; -} - -static void __attribute__((noreturn)) __machine_halt(void *unused) -{ - for ( ; ; ) - __asm__ __volatile__ ( "hlt" ); -} - -void machine_halt(void) -{ - watchdog_disable(); - console_start_sync(); - smp_call_function(_...
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths