search for: paravirt_backend

Displaying 2 results from an estimated 2 matches for "paravirt_backend".

2007 Apr 19
0
[RFC, PATCH 3/5] Paravirt_ops pure functions.patch
...15:53:44 2007 -0700 @@ -35,6 +35,19 @@ #include <asm/tlbflush.h> #include <asm/timer.h> +/* Modules may need to know if paravirt is active */ +int paravirt_enabled; +EXPORT_SYMBOL(paravirt_enabled); + +/* GPLd modules might want to determine and call into backend functions */ +char *paravirt_backend = "bare hardware"; +EXPORT_SYMBOL_GPL(paravirt_backend); + +/* Disable PMD sharing; externally set */ +#ifdef CONFIG_X86_PAE +int use_shared_kernel_pmd = 1; +#endif + /* nop stub */ void _paravirt_nop(void) { @@ -43,7 +56,7 @@ static void __init default_banner(void) static void __init...
2007 Apr 19
0
[RFC, PATCH 3/5] Paravirt_ops pure functions.patch
...15:53:44 2007 -0700 @@ -35,6 +35,19 @@ #include <asm/tlbflush.h> #include <asm/timer.h> +/* Modules may need to know if paravirt is active */ +int paravirt_enabled; +EXPORT_SYMBOL(paravirt_enabled); + +/* GPLd modules might want to determine and call into backend functions */ +char *paravirt_backend = "bare hardware"; +EXPORT_SYMBOL_GPL(paravirt_backend); + +/* Disable PMD sharing; externally set */ +#ifdef CONFIG_X86_PAE +int use_shared_kernel_pmd = 1; +#endif + /* nop stub */ void _paravirt_nop(void) { @@ -43,7 +56,7 @@ static void __init default_banner(void) static void __init...