From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751009AbdHaE06 (ORCPT ); Thu, 31 Aug 2017 00:26:58 -0400 Received: from ozlabs.org ([103.22.144.67]:59647 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750822AbdHaE04 (ORCPT ); Thu, 31 Aug 2017 00:26:56 -0400 Date: Thu, 31 Aug 2017 14:26:54 +1000 From: Stephen Rothwell To: Juergen Gross , Konrad Rzeszutek Wilk , Stefano Stabellini , Boris Ostrovsky , Xen Devel , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Peter Zijlstra Cc: Linux-Next Mailing List , Linux Kernel Mailing List Subject: linux-next: manual merge of the xen-tip tree with the tip tree Message-ID: <20170831142654.47f17cd7@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi all, Today's linux-next merge of the xen-tip tree got a conflict in: arch/x86/include/asm/traps.h between commit: 11a7ffb01703 ("x86/traps: Simplify pagefault tracing logic") from the tip tree and commit: ad5b8c4ba323 ("xen: get rid of paravirt op adjust_exception_frame") from the xen-tip tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc arch/x86/include/asm/traps.h index b4f322d6c95f,935709829a4e..000000000000 --- a/arch/x86/include/asm/traps.h +++ b/arch/x86/include/asm/traps.h @@@ -38,7 -35,34 +35,33 @@@ asmlinkage void machine_check(void) #endif /* CONFIG_X86_MCE */ asmlinkage void simd_coprocessor_error(void); + #if defined(CONFIG_X86_64) && defined(CONFIG_XEN_PV) + asmlinkage void xen_divide_error(void); + asmlinkage void xen_xendebug(void); + asmlinkage void xen_xenint3(void); + asmlinkage void xen_nmi(void); + asmlinkage void xen_overflow(void); + asmlinkage void xen_bounds(void); + asmlinkage void xen_invalid_op(void); + asmlinkage void xen_device_not_available(void); + asmlinkage void xen_double_fault(void); + asmlinkage void xen_coprocessor_segment_overrun(void); + asmlinkage void xen_invalid_TSS(void); + asmlinkage void xen_segment_not_present(void); + asmlinkage void xen_stack_segment(void); + asmlinkage void xen_general_protection(void); + asmlinkage void xen_page_fault(void); + asmlinkage void xen_async_page_fault(void); + asmlinkage void xen_spurious_interrupt_bug(void); + asmlinkage void xen_coprocessor_error(void); + asmlinkage void xen_alignment_check(void); + #ifdef CONFIG_X86_MCE + asmlinkage void xen_machine_check(void); + #endif /* CONFIG_X86_MCE */ + asmlinkage void xen_simd_coprocessor_error(void); + #endif + #ifdef CONFIG_TRACING -asmlinkage void trace_page_fault(void); #define trace_stack_segment stack_segment #define trace_divide_error divide_error #define trace_bounds bounds @@@ -53,7 -77,10 +76,11 @@@ #define trace_alignment_check alignment_check #define trace_simd_coprocessor_error simd_coprocessor_error #define trace_async_page_fault async_page_fault +#define trace_page_fault page_fault + + #if defined(CONFIG_X86_64) && defined(CONFIG_XEN_PV) + asmlinkage void xen_trace_page_fault(void); + #endif #endif dotraplinkage void do_divide_error(struct pt_regs *, long);