From mboxrd@z Thu Jan 1 00:00:00 1970 From: Corneliu ZUZU Subject: Re: [PATCH v5 0/2] Vm-events: move monitor vm-events code to common-side. Date: Wed, 17 Feb 2016 19:58:12 +0200 Message-ID: <56C4B4B4.4070408@bitdefender.com> References: <1455694438-18466-1-git-send-email-czuzu@bitdefender.com> <20160217150914.GA21956@char.us.oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20160217150914.GA21956@char.us.oracle.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Konrad Rzeszutek Wilk Cc: Tamas K Lengyel , Keir Fraser , Ian Campbell , Razvan Cojocaru , Andrew Cooper , xen-devel@lists.xen.org, Stefano Stabellini , Jan Beulich List-Id: xen-devel@lists.xenproject.org On 2/17/2016 5:09 PM, Konrad Rzeszutek Wilk wrote: > On Wed, Feb 17, 2016 at 09:33:58AM +0200, Corneliu ZUZU wrote: >> This patch series is an attempt to move some of the monitor vm-events code to >> the common-side. Done to make it easier to move additional parts that can be >> moved to common when ARM-side implementations are to be added. > Both applied. >> Patches summary: >> 1. Fix file comment >> Acked-by: Stefano Stabellini >> 2. Move monitor_domctl to common-side. >> Acked-by: Stefano Stabellini >> Acked-by: Razvan Cojocaru >> >> Note: ARM support for guest-request, control-register write monitor vm-events >> will follow after review of this patch-series. >> >> --- >> Changed since v4: >> 1/2: nothing changed >> 2/2: arch_monitor_domctl_event: >> replaced !old_status w/ requested_status (equivalent but more readable) >> >> Corneliu ZUZU (2): >> xen/arm: fix file comments >> xen/vm-events: Move parts of monitor_domctl code to common-side. >> >> MAINTAINERS | 1 + >> xen/arch/arm/hvm.c | 29 +++++++- >> xen/arch/x86/monitor.c | 153 +++++++++++------------------------------- >> xen/common/Makefile | 1 + >> xen/common/domctl.c | 2 +- >> xen/common/monitor.c | 69 +++++++++++++++++++ >> xen/include/asm-arm/monitor.h | 30 +++++++-- >> xen/include/asm-x86/monitor.h | 53 +++++++++++++-- >> xen/include/xen/monitor.h | 30 +++++++++ >> 9 files changed, 245 insertions(+), 123 deletions(-) >> create mode 100644 xen/common/monitor.c >> create mode 100644 xen/include/xen/monitor.h >> >> -- >> 2.5.0 >> >> >> _______________________________________________ >> Xen-devel mailing list >> Xen-devel@lists.xen.org >> http://lists.xen.org/xen-devel Thanks! Corneliu.