Displaying 2 results from an estimated 2 matches for "hap_cap".
Did you mean:
http_cap
2013 Jan 25
1
[PATCH] HAP: Add global enable/disable command line option
...23 @@ static int __init hvm_enable(void)
printk("HVM: %s enabled\n", hvm_funcs.name);
if ( hvm_funcs.hap_supported )
{
- printk("HVM: Hardware Assisted Paging (HAP) detected\n");
- printk("HVM: HAP page sizes: 4kB");
- if ( hvm_funcs.hap_capabilities & HVM_HAP_SUPERPAGE_2MB )
- printk(", 2MB%s", opt_hap_2mb ? "" : " [disabled]");
- if ( hvm_funcs.hap_capabilities & HVM_HAP_SUPERPAGE_1GB )
- printk(", 1GB%s", opt_hap_1gb ? "" : " [disabled]"...
2013 Apr 19
0
[PATCH] x86/HVM: move per-vendor function tables into .init.data
...sted Paging (HAP) not detected\n");
else if ( !opt_hap_enabled )
{
@@ -138,9 +138,9 @@ static int __init hvm_enable(void)
{
printk("HVM: Hardware Assisted Paging (HAP) detected\n");
printk("HVM: HAP page sizes: 4kB");
- if ( hvm_funcs.hap_capabilities & HVM_HAP_SUPERPAGE_2MB )
+ if ( fns->hap_capabilities & HVM_HAP_SUPERPAGE_2MB )
printk(", 2MB%s", opt_hap_2mb ? "" : " [disabled]");
- if ( hvm_funcs.hap_capabilities & HVM_HAP_SUPERPAGE_1GB )
+ if ( fns->ha...