diff -r 3a5755249361 xen/arch/x86/hvm/svm/svm.c --- a/xen/arch/x86/hvm/svm/svm.c Thu Oct 14 12:46:29 2010 +0100 +++ b/xen/arch/x86/hvm/svm/svm.c Tue Oct 19 14:40:13 2010 +0200 @@ -904,8 +904,8 @@ struct hvm_function_table * __init start svm_function_table.hap_supported = cpu_has_svm_npt; svm_function_table.hap_capabilities = HVM_HAP_SUPERPAGE_2MB | - ((CONFIG_PAGING_LEVELS == 4) && (cpuid_edx(0x80000001) & 0x04000000)) ? - HVM_HAP_SUPERPAGE_1GB : 0; + (((CONFIG_PAGING_LEVELS == 4) && (cpuid_edx(0x80000001) & 0x04000000)) ? + HVM_HAP_SUPERPAGE_1GB : 0); return &svm_function_table; }