[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] x86/traps: Move early pagefault static data into __initdata
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CC: Jan Beulich <JBeulich@xxxxxxxx> --- xen/arch/x86/traps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index ac62f20..7a5d911 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -1552,8 +1552,8 @@ void do_page_fault(struct cpu_user_regs *regs) */ void __init do_early_page_fault(struct cpu_user_regs *regs) { - static int stuck; - static unsigned long prev_eip, prev_cr2; + static unsigned int __initdata stuck; + static unsigned long __initdata prev_eip, prev_cr2; unsigned long cr2 = read_cr2(); BUG_ON(smp_processor_id() != 0); -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |