xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Corneliu ZUZU <czuzu@bitdefender.com>
To: xen-devel@lists.xen.org
Cc: Kevin Tian <kevin.tian@intel.com>,
	Tamas K Lengyel <tamas@tklengyel.com>,
	Jan Beulich <jbeulich@suse.com>,
	Razvan Cojocaru <rcojocaru@bitdefender.com>,
	George Dunlap <george.dunlap@eu.citrix.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Julien Grall <julien.grall@arm.com>,
	Paul Durrant <paul.durrant@citrix.com>,
	Stefano Stabellini <sstabellini@kernel.org>,
	Jun Nakajima <jun.nakajima@intel.com>
Subject: [PATCH 0/8] x86/vm-event: Adjustments & fixes
Date: Thu, 30 Jun 2016 21:40:15 +0300	[thread overview]
Message-ID: <1467312015-2867-1-git-send-email-czuzu@bitdefender.com> (raw)

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

             reply	other threads:[~2016-06-30 18:40 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-30 18:40 Corneliu ZUZU [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1467312015-2867-1-git-send-email-czuzu@bitdefender.com \
    --to=czuzu@bitdefender.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=george.dunlap@eu.citrix.com \
    --cc=jbeulich@suse.com \
    --cc=julien.grall@arm.com \
    --cc=jun.nakajima@intel.com \
    --cc=kevin.tian@intel.com \
    --cc=paul.durrant@citrix.com \
    --cc=rcojocaru@bitdefender.com \
    --cc=sstabellini@kernel.org \
    --cc=tamas@tklengyel.com \
    --cc=xen-devel@lists.xen.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).