All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] x86/vm-event: Adjustments & fixes
@ 2016-06-30 18:40 Corneliu ZUZU
  2016-06-30 18:41 ` [PATCH 1/8] x86/vm-event: proper vCPU-paused checks at resume Corneliu ZUZU
                   ` (7 more replies)
  0 siblings, 8 replies; 59+ messages in thread
From: Corneliu ZUZU @ 2016-06-30 18:40 UTC (permalink / raw)
  To: xen-devel
  Cc: Kevin Tian, Tamas K Lengyel, Jan Beulich, Razvan Cojocaru,
	George Dunlap, Andrew Cooper, Julien Grall, Paul Durrant,
	Stefano Stabellini, Jun Nakajima

This patch-series makes some adjustments and fixes to the X86 vm-events code.
Summary:
    1. proper checks for vCPU pause @ vm_event_resume
    2. minor optimization
    3. relocate some code into added vm-event functions
    4. turn monitor_write_data.do_write into enum
    5. fix monitor_write_data behavior on domain cleanup
    6. surround VM_EVENT_REASON_MOV_TO_MSR w/ #ifdef CONFIG_X86
    7+8. minor fixes (cleanup stuff)

Corneliu ZUZU (8):
  x86/vm-event: proper vCPU-paused checks at resume
  x86/vmx_update_guest_cr: minor optimization
  x86/vm-event/monitor: relocate code-motion more appropriately
  x86/vm-event/monitor: turn monitor_write_data.do_write into enum
  x86/vm-event/monitor: don't compromise monitor_write_data on domain
    cleanup
  x86/vm_event_resume: surround VM_EVENT_REASON_MOV_TO_MSR w/ CONFIG_X86
  minor fixes (formatting, comments, unused includes etc.)
  minor #include change

 xen/arch/arm/domain.c             |   1 -
 xen/arch/arm/traps.c              |   1 -
 xen/arch/x86/domain.c             |   5 +-
 xen/arch/x86/hvm/emulate.c        |   8 +--
 xen/arch/x86/hvm/hvm.c            | 105 ++++++++++++++++----------------------
 xen/arch/x86/hvm/monitor.c        |   1 +
 xen/arch/x86/hvm/vmx/vmx.c        |  12 ++---
 xen/arch/x86/mm/p2m.c             |   4 +-
 xen/arch/x86/monitor.c            |  87 ++++++++++++++++++++++++++++---
 xen/arch/x86/vm_event.c           |  50 ++++++------------
 xen/common/monitor.c              |   1 -
 xen/common/vm_event.c             |  14 +++--
 xen/include/asm-arm/vm_event.h    |   9 ++--
 xen/include/asm-x86/domain.h      |  42 +++++++++------
 xen/include/asm-x86/hvm/monitor.h |   2 -
 xen/include/asm-x86/monitor.h     |   8 +--
 xen/include/asm-x86/vm_event.h    |  11 ----
 xen/include/public/vm_event.h     |  37 +++++++-------
 xen/include/xen/vm_event.h        |   1 -
 19 files changed, 216 insertions(+), 183 deletions(-)

-- 
2.5.0


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

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

end of thread, other threads:[~2016-07-04 16:26 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-30 18:40 [PATCH 0/8] x86/vm-event: Adjustments & fixes Corneliu ZUZU
2016-06-30 18:41 ` [PATCH 1/8] x86/vm-event: proper vCPU-paused checks at resume Corneliu ZUZU
2016-07-01  7:14   ` Razvan Cojocaru
2016-07-01 16:51   ` Tamas K Lengyel
2016-06-30 18:42 ` [PATCH 2/8] x86/vmx_update_guest_cr: minor optimization Corneliu ZUZU
2016-06-30 18:43 ` [PATCH 3/8] x86/vm-event/monitor: relocate code-motion more appropriately Corneliu ZUZU
2016-07-01  7:54   ` Razvan Cojocaru
2016-07-04 10:22   ` Jan Beulich
2016-07-04 11:02     ` Corneliu ZUZU
2016-07-04 14:58       ` Jan Beulich
2016-07-04 16:00         ` Corneliu ZUZU
2016-07-04 16:12           ` Jan Beulich
2016-07-04 13:22     ` Razvan Cojocaru
2016-07-04 14:05       ` Jan Beulich
2016-07-04 14:16         ` Razvan Cojocaru
2016-07-04 14:35           ` Corneliu ZUZU
2016-06-30 18:44 ` [PATCH 4/8] x86/vm-event/monitor: turn monitor_write_data.do_write into enum Corneliu ZUZU
2016-07-01  6:53   ` Razvan Cojocaru
2016-07-01  6:59     ` Corneliu ZUZU
2016-07-04 12:37   ` Jan Beulich
2016-07-04 12:47     ` Corneliu ZUZU
2016-07-04 13:07       ` Jan Beulich
2016-07-04 13:21         ` Corneliu ZUZU
2016-07-04 14:08           ` Jan Beulich
2016-07-04 14:23             ` Razvan Cojocaru
2016-07-04 14:24             ` Corneliu ZUZU
2016-07-04 15:03               ` Jan Beulich
2016-07-04 15:10                 ` Corneliu ZUZU
2016-06-30 18:45 ` [PATCH 5/8] x86/vm-event/monitor: don't compromise monitor_write_data on domain cleanup Corneliu ZUZU
2016-07-01  6:47   ` Razvan Cojocaru
2016-07-01  6:56     ` Corneliu ZUZU
2016-07-01  6:59       ` Razvan Cojocaru
2016-07-04 12:47   ` Jan Beulich
2016-07-04 13:03     ` Corneliu ZUZU
2016-07-04 13:11       ` Jan Beulich
2016-07-04 13:28         ` Corneliu ZUZU
2016-07-04 14:13           ` Jan Beulich
2016-07-04 14:31             ` Corneliu ZUZU
2016-07-04 15:09               ` Jan Beulich
2016-07-04 15:24                 ` Corneliu ZUZU
2016-07-04 13:50         ` Razvan Cojocaru
2016-07-04 14:05           ` Corneliu ZUZU
2016-07-04 14:17           ` Jan Beulich
2016-07-04 14:21             ` Razvan Cojocaru
2016-07-04 15:07               ` Jan Beulich
2016-07-04 15:21                 ` Corneliu ZUZU
2016-07-04 15:57                   ` Jan Beulich
2016-07-04 16:09                     ` Corneliu ZUZU
2016-07-04 16:16                       ` Jan Beulich
2016-07-04 16:26                         ` Corneliu ZUZU
2016-07-04 14:45             ` Corneliu ZUZU
2016-06-30 18:46 ` [PATCH 6/8] x86/vm_event_resume: surround VM_EVENT_REASON_MOV_TO_MSR w/ CONFIG_X86 Corneliu ZUZU
2016-07-01  7:02   ` Razvan Cojocaru
2016-06-30 18:47 ` [PATCH 7/8] minor fixes (formatting, comments, unused includes etc.) Corneliu ZUZU
2016-06-30 18:47 ` [PATCH 8/8] minor #include change Corneliu ZUZU
2016-07-01  6:56   ` Razvan Cojocaru
2016-07-01  7:02     ` Corneliu ZUZU
2016-07-01  7:31       ` Jan Beulich
2016-07-01  7:44         ` Corneliu ZUZU

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.