diff options
author | Zhenzhong Duan <zhenzhong.duan@oracle.com> | 2019-07-16 06:26:08 +0200 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2019-07-17 08:09:59 +0200 |
commit | cc8f3b4dd2eb859bc57187ccd94b5cd715d9cfba (patch) | |
tree | f3d181d1de9efa3cacc3f32f022107bd594cb9c7 /arch/x86/xen | |
parent | xen: Map "xen_nopv" parameter to "nopv" and mark it obsolete (diff) | |
download | linux-cc8f3b4dd2eb859bc57187ccd94b5cd715d9cfba.tar.xz linux-cc8f3b4dd2eb859bc57187ccd94b5cd715d9cfba.zip |
x86/paravirt: Remove const mark from x86_hyper_xen_hvm variable
.. as "nopv" support needs it to be changeable at boot up stage.
Checkpatch reports warning, so move variable declarations from
hypervisor.c to hypervisor.h
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/x86/xen')
-rw-r--r-- | arch/x86/xen/enlighten_hvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/enlighten_hvm.c b/arch/x86/xen/enlighten_hvm.c index 1756cf775ef2..b671983cb4f5 100644 --- a/arch/x86/xen/enlighten_hvm.c +++ b/arch/x86/xen/enlighten_hvm.c @@ -259,7 +259,7 @@ static __init void xen_hvm_guest_late_init(void) #endif } -const __initconst struct hypervisor_x86 x86_hyper_xen_hvm = { +struct hypervisor_x86 x86_hyper_xen_hvm __initdata = { .name = "Xen HVM", .detect = xen_platform_hvm, .type = X86_HYPER_XEN_HVM, |