[IA64] minor fix vmx_ivt. The constant string in vmx_ivt.S should be in rodata section, not text. Signed-off-by: Isaku Yamahata diff -r d24bc5f549ba xen/arch/ia64/vmx/vmx_ivt.S --- a/xen/arch/ia64/vmx/vmx_ivt.S Mon Aug 11 11:04:52 2008 +0900 +++ b/xen/arch/ia64/vmx/vmx_ivt.S Wed Aug 13 11:08:29 2008 +0900 @@ -1348,6 +1348,7 @@ br.call.sptk.many b6=vmx_ia64_shadow_fault END(vmx_dispatch_shadow_fault) + .section .rodata, "a" .Lvmx_dispatch_reflection_string: .asciz "vmx_dispatch_reflection\n" .Lvmx_dispatch_virtualization_fault_string: @@ -1358,3 +1359,4 @@ .asciz "vmx_dispatch_tlb_miss\n" .Lvmx_dispatch_shadow_fault_string: .asciz "vmx_dispatch_shadow_fault\n" + .previous