xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 00/13] x86: refactor trap handling code
@ 2017-06-26 16:28 Wei Liu
  2017-06-26 16:28 ` [PATCH v5 01/13] x86: move callback_op code to pv/callback.c Wei Liu
                   ` (12 more replies)
  0 siblings, 13 replies; 45+ messages in thread
From: Wei Liu @ 2017-06-26 16:28 UTC (permalink / raw)
  To: Xen-devel; +Cc: Andrew Cooper, Wei Liu, Jan Beulich

This series can also be found on my xenbits/xen.git wip.move-traps-v5

Wei Liu (13):
  x86: move callback_op code to pv/callback.c
  x86: move the compat callback ops next to the non-compat variant
  x86: move do_set_trap_table to pv/callback.c
  x86: move compat_set_trap_table along side the non-compat variant
  x86: remove the now empty x86_64/compat/traps.c
  x86: simplify guest_has_trap_callback
  x86/traps: simplify and rename send_guest_trap
  x86/traps: factor out pv_trap_init
  xen: move do_nmi_op and make it x86 only
  x86/traps: move {un,}register_guest_nmi_callback to pv/callback.c
  x86/callback.c: slightly change {un,}register_guest_nmi_callback
  x86/traps: move some PV specific functions to pv/traps.c
  x86/traps.h: remove unused declaration of cpu_user_regs

 xen/arch/x86/cpu/mcheck/vmce.c     |  11 +-
 xen/arch/x86/irq.c                 |   9 +-
 xen/arch/x86/nmi.c                 |   2 +-
 xen/arch/x86/oprofile/nmi_int.c    |   2 +-
 xen/arch/x86/pv/Makefile           |   1 +
 xen/arch/x86/pv/callback.c         | 510 +++++++++++++++++++++++++++++++++++++
 xen/arch/x86/pv/traps.c            | 104 ++++++++
 xen/arch/x86/traps.c               | 198 +-------------
 xen/arch/x86/x86_64/compat/traps.c | 202 ---------------
 xen/arch/x86/x86_64/entry.S        |   4 +
 xen/arch/x86/x86_64/traps.c        | 152 +----------
 xen/common/compat/kernel.c         |   5 -
 xen/common/kernel.c                |  26 --
 xen/include/asm-arm/nmi.h          |  15 --
 xen/include/asm-x86/nmi.h          |  15 --
 xen/include/asm-x86/pv/traps.h     |  12 +
 xen/include/asm-x86/traps.h        |  25 --
 xen/include/xen/nmi.h              |  14 -
 18 files changed, 654 insertions(+), 653 deletions(-)
 create mode 100644 xen/arch/x86/pv/callback.c
 delete mode 100644 xen/arch/x86/x86_64/compat/traps.c
 delete mode 100644 xen/include/asm-arm/nmi.h
 delete mode 100644 xen/include/xen/nmi.h

-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2017-06-28 11:43 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-26 16:28 [PATCH v5 00/13] x86: refactor trap handling code Wei Liu
2017-06-26 16:28 ` [PATCH v5 01/13] x86: move callback_op code to pv/callback.c Wei Liu
2017-06-26 16:44   ` Andrew Cooper
2017-06-27  6:13   ` Jan Beulich
2017-06-27  8:48     ` Wei Liu
2017-06-27 17:57       ` Andrew Cooper
2017-06-28 10:14         ` Wei Liu
2017-06-26 16:28 ` [PATCH v5 02/13] x86: move the compat callback ops next to the non-compat variant Wei Liu
2017-06-26 16:51   ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 03/13] x86: move do_set_trap_table to pv/callback.c Wei Liu
2017-06-26 16:53   ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 04/13] x86: move compat_set_trap_table along side the non-compat variant Wei Liu
2017-06-26 16:53   ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 05/13] x86: remove the now empty x86_64/compat/traps.c Wei Liu
2017-06-26 16:54   ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 06/13] x86: simplify guest_has_trap_callback Wei Liu
2017-06-26 16:57   ` Andrew Cooper
2017-06-27  6:09     ` Jan Beulich
2017-06-27  9:02       ` Wei Liu
2017-06-26 16:28 ` [PATCH v5 07/13] x86/traps: simplify and rename send_guest_trap Wei Liu
2017-06-27 18:01   ` Andrew Cooper
2017-06-27 18:21   ` Jan Beulich
2017-06-27 18:28     ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 08/13] x86/traps: factor out pv_trap_init Wei Liu
2017-06-27 18:05   ` Andrew Cooper
2017-06-27 18:19     ` Jan Beulich
2017-06-28 11:43       ` Andrew Cooper
2017-06-27 18:26   ` Jan Beulich
2017-06-28 10:06     ` Wei Liu
2017-06-28 10:13       ` Wei Liu
2017-06-26 16:28 ` [PATCH v5 09/13] xen: move do_nmi_op and make it x86 only Wei Liu
2017-06-27 18:08   ` Andrew Cooper
2017-06-27 18:31   ` Jan Beulich
2017-06-27 18:50     ` Andrew Cooper
2017-06-28 10:12     ` Wei Liu
2017-06-27 20:34   ` Stefano Stabellini
2017-06-26 16:28 ` [PATCH v5 10/13] x86/traps: move {un, }register_guest_nmi_callback to pv/callback.c Wei Liu
2017-06-27 18:09   ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 11/13] x86/callback.c: slightly change {un, }register_guest_nmi_callback Wei Liu
2017-06-27 18:10   ` Andrew Cooper
2017-06-26 16:28 ` [PATCH v5 12/13] x86/traps: move some PV specific functions to pv/traps.c Wei Liu
2017-06-27 18:12   ` Andrew Cooper
2017-06-27 18:34   ` Jan Beulich
2017-06-26 16:28 ` [PATCH v5 13/13] x86/traps.h: remove unused declaration of cpu_user_regs Wei Liu
2017-06-27 18:13   ` Andrew Cooper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).