Re: [PATCH 4/4] Add a timer to allow the separation of consigned from steal time.

2013-02-07 Thread Glauber Costa
On 02/06/2013 10:07 PM, Michael Wolf wrote: On 02/06/2013 08:36 AM, Glauber Costa wrote: On 02/06/2013 01:49 AM, Michael Wolf wrote: Add a helper routine to scheduler/core.c to allow the kvm module to retrieve the cpu hardlimit settings. The values will be used to set up a timer that is used

[PATCH] KVM: Remove user_alloc from struct kvm_memory_slot

2013-02-07 Thread Takuya Yoshikawa
This field was needed to differentiate memory slots created by the new API, KVM_SET_USER_MEMORY_REGION, from those by the old equivalent, KVM_SET_MEMORY_REGION, whose support was dropped long before: commit b74a07beed0e64bfba413dcb70dd6749c57f43dc KVM: Remove kernel-allocated memory regions

[PATCH] kvm-s390: Bugfix for handling of iscs.

2013-02-07 Thread Cornelia Huck
Hi, here's another kvm-s390 bugfix for kvm-next, this time fixing a thinko in the I/O interrupt injection. Please apply. Cornelia Huck (1): KVM: s390: Fix handling of iscs. arch/s390/kvm/interrupt.c | 18 +++--- 1 file changed, 15 insertions(+), 3 deletions(-) -- 1.7.12.4 --

[PATCH] KVM: s390: Fix handling of iscs.

2013-02-07 Thread Cornelia Huck
There are two ways to express an interruption subclass: - As a bitmask, as used in cr6. - As a number, as used in the I/O interruption word. Unfortunately, we have treated the I/O interruption word as if it contained the bitmask as well, which went unnoticed so far as - (not-yet-released) qemu

[RFC PATCH 5/8] scatterlist: introduce sg_unmark_end

2013-02-07 Thread Paolo Bonzini
This is useful in places that recycle the same scatterlist multiple times, and do not want to incur the cost of sg_init_table every time in hot paths. Cc: Jens Axboe ax...@kernel.dk Signed-off-by: Paolo Bonzini pbonz...@redhat.com --- Jens, could you give your Acked-by for this patch?

[RFC PATCH 8/8] virtio: reimplement virtqueue_add_buf using new functions

2013-02-07 Thread Paolo Bonzini
Eliminate the code duplication between virtqueue_add_buf and virtqueue_add_sg. That's safe to do now that no devices will pass scatterlists with a termination marker in the middle. Signed-off-by: Paolo Bonzini pbonz...@redhat.com --- drivers/virtio/virtio_ring.c | 157

[RFC PATCH 7/8] virtio-scsi: use virtqueue_start_buf

2013-02-07 Thread Paolo Bonzini
Using the new virtio_scsi_add_sg function lets us simplify the queueing path. In particular, all data protected by the tgt_lock is just gone (multiqueue will find a new use for the lock). The speedup is relatively small (2-4%) but it is worthwhile because of the code simplification it enables.

[RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Paolo Bonzini
The virtqueue_add_buf function has two limitations: 1) it requires the caller to provide all the buffers in a single call; 2) it does not support chained scatterlists: the buffers must be provided as an array of struct scatterlist. Because of these limitations, virtio-scsi has to copy each

[RFC PATCH 2/8] virtio-blk: reorganize virtblk_add_req

2013-02-07 Thread Paolo Bonzini
Right now, both virtblk_add_req and virtblk_add_req_wait call virtqueue_add_buf. To prepare for the next patches, abstract the call to virtqueue_add_buf into a new function __virtblk_add_req, and include the waiting logic directly in virtblk_add_req. Signed-off-by: Paolo Bonzini

[RFC PATCH 4/8] virtio-blk: use virtqueue_start_buf on req path

2013-02-07 Thread Paolo Bonzini
This is similar to the previous patch, but a bit more radical because the bio and req paths now share the buffer construction code. Because the req path doesn't use vbr-sg, however, we need to add a couple of arguments to __virtblk_add_req. We also need to teach __virtblk_add_req how to build

[RFC PATCH 6/8] virtio-net: unmark scatterlist ending after virtqueue_add_buf

2013-02-07 Thread Paolo Bonzini
Prepare for when virtqueue_add_buf will use sg_next instead of ignoring ending markers. Note that for_each_sg (and thus virtqueue_add_buf) allows you to pass a truncated scatterlist that does not have a marker on the last item. We rely on this in add_recvbuf_mergeable. Signed-off-by: Paolo

[RFC PATCH 3/8] virtio-blk: use virtqueue_start_buf on bio path

2013-02-07 Thread Paolo Bonzini
Move the creation of the request header and response footer to __virtblk_add_req. vbr-sg only contains the data scatterlist, the header/footer are added separately using the new piecewise API for building virtqueue buffers. With this change, virtio-blk is not relying anymore on the virtio

[RFC PATCH 1/8] virtio: add functions for piecewise addition of buffers

2013-02-07 Thread Paolo Bonzini
The virtqueue_add_buf function has two limitations: 1) it requires the caller to provide all the buffers in a single call; 2) it does not support chained scatterlists: the buffers must be provided as an array of struct scatterlist. Because of these limitations, virtio-scsi has to copy each

Re: [RFC PATCH 5/8] scatterlist: introduce sg_unmark_end

2013-02-07 Thread Jens Axboe
On Thu, Feb 07 2013, Paolo Bonzini wrote: This is useful in places that recycle the same scatterlist multiple times, and do not want to incur the cost of sg_init_table every time in hot paths. Looks fine to me. Acked-by: Jens Axboe ax...@kernel.dk -- Jens Axboe -- To unsubscribe from this

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Michael S. Tsirkin
On Thu, Feb 07, 2013 at 01:22:24PM +0100, Paolo Bonzini wrote: The virtqueue_add_buf function has two limitations: 1) it requires the caller to provide all the buffers in a single call; 2) it does not support chained scatterlists: the buffers must be provided as an array of struct

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Paolo Bonzini
Il 07/02/2013 14:09, Michael S. Tsirkin ha scritto: One major difference between virtqueue_add_buf and virtqueue_add_sg is that the latter uses scatterlist iterators, which follow chained scatterlist structs and stop at ending markers. In order to avoid code duplication, and use the new API

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Michael S. Tsirkin
On Thu, Feb 07, 2013 at 02:14:24PM +0100, Paolo Bonzini wrote: Il 07/02/2013 14:09, Michael S. Tsirkin ha scritto: One major difference between virtqueue_add_buf and virtqueue_add_sg is that the latter uses scatterlist iterators, which follow chained scatterlist structs and stop at ending

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Paolo Bonzini
Il 07/02/2013 14:23, Michael S. Tsirkin ha scritto: On Thu, Feb 07, 2013 at 02:14:24PM +0100, Paolo Bonzini wrote: Il 07/02/2013 14:09, Michael S. Tsirkin ha scritto: One major difference between virtqueue_add_buf and virtqueue_add_sg is that the latter uses scatterlist iterators, which follow

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Michael S. Tsirkin
On Thu, Feb 07, 2013 at 02:20:53PM +0100, Paolo Bonzini wrote: Il 07/02/2013 14:23, Michael S. Tsirkin ha scritto: On Thu, Feb 07, 2013 at 02:14:24PM +0100, Paolo Bonzini wrote: Il 07/02/2013 14:09, Michael S. Tsirkin ha scritto: One major difference between virtqueue_add_buf and

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Paolo Bonzini
Il 07/02/2013 14:31, Michael S. Tsirkin ha scritto: Single means *this piece* (for example a request header) is single. It could still end up in an indirect buffer because QEMU does not support mixed direct/indirect buffers. Yes but why is the optimization worth it? It makes sense if

Re: [PATCH 2/2] x86, apicv: Add Posted Interrupt supporting

2013-02-07 Thread Gleb Natapov
On Wed, Feb 06, 2013 at 10:24:06PM -0200, Marcelo Tosatti wrote: On Wed, Feb 06, 2013 at 08:49:23PM -0200, Marcelo Tosatti wrote: On Tue, Feb 05, 2013 at 09:32:50AM +0200, Gleb Natapov wrote: On Mon, Feb 04, 2013 at 06:47:30PM -0200, Marcelo Tosatti wrote: On Mon, Feb 04, 2013 at

Re: [PATCH 2/2] x86, apicv: Add Posted Interrupt supporting

2013-02-07 Thread Gleb Natapov
On Wed, Feb 06, 2013 at 08:49:23PM -0200, Marcelo Tosatti wrote: Second is that interrupt may be reported as delivered, but it will be coalesced (possible only with the self IPI with the same vector): Starting condition: PIR=0, IRR=0 vcpu is in a guest mode io thread

Re: [PATCH 3/8] KVM: PPC: booke: Added debug handler

2013-02-07 Thread Alexander Graf
On 01.02.2013, at 10:07, Bhushan Bharat-R65777 wrote: -Original Message- From: Alexander Graf [mailto:ag...@suse.de] Sent: Friday, February 01, 2013 1:36 PM To: Bhushan Bharat-R65777 Cc: kvm-...@vger.kernel.org; kvm@vger.kernel.org Subject: Re: [PATCH 3/8] KVM: PPC: booke:

Re: [PATCH 0/8] KVM: BOOKE/BOOKEHV : Added debug stub support

2013-02-07 Thread Alexander Graf
On 01.02.2013, at 10:09, Bhushan Bharat-R65777 wrote: -Original Message- From: Alexander Graf [mailto:ag...@suse.de] Sent: Friday, February 01, 2013 1:34 PM To: Bhushan Bharat-R65777 Cc: kvm-...@vger.kernel.org; kvm@vger.kernel.org Subject: Re: [PATCH 0/8] KVM: BOOKE/BOOKEHV :

Re: [PATCH 2/4] Expand the steal time msr to also contain the consigned time.

2013-02-07 Thread Michael Wolf
On 02/06/2013 03:14 PM, Rik van Riel wrote: On 02/05/2013 04:49 PM, Michael Wolf wrote: Expand the steal time msr to also contain the consigned time. Signed-off-by: Michael Wolf m...@linux.vnet.ibm.com --- arch/x86/include/asm/paravirt.h |4 ++--

Re: [PATCH 3/4] Add the code to send the consigned time from the host to the guest

2013-02-07 Thread Michael Wolf
On 02/06/2013 03:18 PM, Rik van Riel wrote: On 02/05/2013 04:49 PM, Michael Wolf wrote: Change the paravirt calls that retrieve the steal-time information from the host. Add to it getting the consigned value as well as the steal time. Signed-off-by: Michael Wolf m...@linux.vnet.ibm.com diff

Re: [PATCH 4/4] Add a timer to allow the separation of consigned from steal time.

2013-02-07 Thread Michael Wolf
On 02/07/2013 02:46 AM, Glauber Costa wrote: On 02/06/2013 10:07 PM, Michael Wolf wrote: On 02/06/2013 08:36 AM, Glauber Costa wrote: On 02/06/2013 01:49 AM, Michael Wolf wrote: Add a helper routine to scheduler/core.c to allow the kvm module to retrieve the cpu hardlimit settings. The

Re: [PATCH 4/8] Added ONE_REG interface for debug instruction

2013-02-07 Thread Alexander Graf
On 04.02.2013, at 01:41, Paul Mackerras wrote: On Wed, Jan 16, 2013 at 01:54:41PM +0530, Bharat Bhushan wrote: This patch adds the one_reg interface to get the special instruction to be used for setting software breakpoint from userspace. Since this presumably is constant for any given

Re: One reg interface for Timer register

2013-02-07 Thread Alexander Graf
On 04.02.2013, at 07:12, Bhushan Bharat-R65777 wrote: Hi Alex/Scott, Below is my understanding about the ONE_REG interface requirement for timer registers. Define the below 2 ONE_REG interface for TSR access: KVM_REG_SET_TSR, // Set the specified bits in TSR s/SET/OR/

RE: [PATCH 3/8] KVM: PPC: booke: Added debug handler

2013-02-07 Thread Bhushan Bharat-R65777
-Original Message- From: Alexander Graf [mailto:ag...@suse.de] Sent: Friday, January 25, 2013 5:13 PM To: Bhushan Bharat-R65777 Cc: kvm-...@vger.kernel.org; kvm@vger.kernel.org; Bhushan Bharat-R65777 Subject: Re: [PATCH 3/8] KVM: PPC: booke: Added debug handler On

Re: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Alexander Graf
On 01.02.2013, at 23:38, Scott Wood wrote: On 01/31/2013 06:11:32 PM, Alexander Graf wrote: On 31.01.2013, at 23:40, Scott Wood wrote: On 01/31/2013 01:20:39 PM, Alexander Graf wrote: On 31.01.2013, at 20:05, Alexander Graf wrote: On 31.01.2013, at 19:54, Scott Wood wrote: On

RE: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Bhushan Bharat-R65777
-Original Message- From: Wood Scott-B07421 Sent: Saturday, February 02, 2013 4:09 AM To: Alexander Graf Cc: Bhushan Bharat-R65777; kvm-...@vger.kernel.org; kvm@vger.kernel.org Subject: Re: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest On 01/31/2013

Re: [PATCH 3/8] KVM: PPC: booke: Added debug handler

2013-02-07 Thread Alexander Graf
On 07.02.2013, at 15:48, Bhushan Bharat-R65777 wrote: -Original Message- From: Alexander Graf [mailto:ag...@suse.de] Sent: Friday, January 25, 2013 5:13 PM To: Bhushan Bharat-R65777 Cc: kvm-...@vger.kernel.org; kvm@vger.kernel.org; Bhushan Bharat-R65777 Subject: Re: [PATCH 3/8]

Re: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Alexander Graf
On 07.02.2013, at 16:00, Bhushan Bharat-R65777 wrote: -Original Message- From: Wood Scott-B07421 Sent: Saturday, February 02, 2013 4:09 AM To: Alexander Graf Cc: Bhushan Bharat-R65777; kvm-...@vger.kernel.org; kvm@vger.kernel.org Subject: Re: [PATCH 8/8] KVM:PPC:booke: Allow

RE: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Bhushan Bharat-R65777
-Original Message- From: kvm-ppc-ow...@vger.kernel.org [mailto:kvm-ppc-ow...@vger.kernel.org] On Behalf Of Alexander Graf Sent: Thursday, February 07, 2013 8:29 PM To: Wood Scott-B07421 Cc: Bhushan Bharat-R65777; kvm-...@vger.kernel.org; kvm@vger.kernel.org Subject: Re: [PATCH

Re: Google Summer of Code 2013 ideas wiki open

2013-02-07 Thread Stefan Hajnoczi
On Thu, Feb 7, 2013 at 4:19 PM, Stefan Hajnoczi stefa...@gmail.com wrote: CCed libvir-list to see if libvirt would like to do a joint application with QEMU. As mentioned, it's early days and GSoC 2013 has not been announced yet. I just want to start gathering ideas and seeing who is willing to

Re: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Alexander Graf
On 07.02.2013, at 16:25, Bhushan Bharat-R65777 wrote: -Original Message- From: kvm-ppc-ow...@vger.kernel.org [mailto:kvm-ppc-ow...@vger.kernel.org] On Behalf Of Alexander Graf Sent: Thursday, February 07, 2013 8:29 PM To: Wood Scott-B07421 Cc: Bhushan Bharat-R65777;

KVM performance Java server/MySQL...

2013-02-07 Thread Erik Brakkee
Hi, We have been benchmarking a java server application (java 6 update 29) that requires a mysql database. The scenario is quite simple. We open a web page which displays a lot of search results. To get the content of the page one big query is done with many smaller queries to retrieve the data.

[RFC] KVM/arm64, take #4

2013-02-07 Thread Marc Zyngier
Guys, I've once more updated the branches for KVM/arm64 - kvm-arm/pre-arm64: KVM/ARM stable branches + the cleanup branch + some basic perf support - kvm-arm/vgic-fixes: as the name says, a couple of pending VGIC related fixes. - arm64/soc-armv8-model: Catalin Marinas' arm64 branch -

[RFC PATCH] MIPS/kvm: Add asm/kvm.h

2013-02-07 Thread David Daney
From: David Daney david.da...@cavium.com Uniform definitions for both 32-bit and 64-bit MIPS machines. Signed-off-by: David Daney david.da...@cavium.com Cc: Sanjay Lal sanj...@kymasys.com Cc: kvm@vger.kernel.org --- Previously Sanjay posted a version of asm/kvm.h that worked only for 32-bit

Re: KVM performance Java server/MySQL...

2013-02-07 Thread Gleb Natapov
On Thu, Feb 07, 2013 at 04:41:31PM +0100, Erik Brakkee wrote: Hi, We have been benchmarking a java server application (java 6 update 29) that requires a mysql database. The scenario is quite simple. We open a web page which displays a lot of search results. To get the content of the page

Re: [PATCH 2/2] x86, apicv: Add Posted Interrupt supporting

2013-02-07 Thread Marcelo Tosatti
On Thu, Feb 07, 2013 at 04:01:11PM +0200, Gleb Natapov wrote: On Wed, Feb 06, 2013 at 08:49:23PM -0200, Marcelo Tosatti wrote: Second is that interrupt may be reported as delivered, but it will be coalesced (possible only with the self IPI with the same vector): Starting

[PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break

2013-02-07 Thread Scott Wood
Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 (KVM: PPC: BookE: Handle alignment interrupts) broke the build by adding mismatched parentheses. Signed-off-by: Scott Wood scottw...@freescale.com --- Against kvm-ppc-queue arch/powerpc/kvm/booke_interrupts.S |4 ++-- 1 file changed, 2

Re: DMAR faults from unrelated device when vfio is used

2013-02-07 Thread Richard Weinberger
Hi, Am Wed, 06 Feb 2013 15:45:37 -0700 schrieb Alex Williamson alex.william...@redhat.com: On Wed, 2013-02-06 at 21:25 +0100, Richard Weinberger wrote: Hi, Am Wed, 06 Feb 2013 11:47:20 -0700 schrieb Alex Williamson alex.william...@redhat.com: Does the card work with pci-assign or

Re: DMAR faults from unrelated device when vfio is used

2013-02-07 Thread Alex Williamson
On Thu, 2013-02-07 at 23:23 +0100, Richard Weinberger wrote: Hi, Am Wed, 06 Feb 2013 15:45:37 -0700 schrieb Alex Williamson alex.william...@redhat.com: On Wed, 2013-02-06 at 21:25 +0100, Richard Weinberger wrote: Hi, Am Wed, 06 Feb 2013 11:47:20 -0700 schrieb Alex Williamson

Re: DMAR faults from unrelated device when vfio is used

2013-02-07 Thread Richard Weinberger
Am Thu, 07 Feb 2013 15:49:58 -0700 schrieb Alex Williamson alex.william...@redhat.com: If I whitelist pcieport USB3 works within the guests. :-) Binding 1c.0 and 1c.6 is no longer needed. Next week I'll run some more tests with USB3 devices. Great! Thanks for the test. I assume you

Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break

2013-02-07 Thread Alexander Graf
On 07.02.2013, at 23:17, Scott Wood wrote: Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 (KVM: PPC: BookE: Handle alignment interrupts) broke the build by adding mismatched parentheses. Signed-off-by: Scott Wood scottw...@freescale.com Thanks a lot for catching this. This patch hasn't

Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break

2013-02-07 Thread Scott Wood
On 02/07/2013 06:20:33 PM, Alexander Graf wrote: On 07.02.2013, at 23:17, Scott Wood wrote: Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 (KVM: PPC: BookE: Handle alignment interrupts) broke the build by adding mismatched parentheses. Signed-off-by: Scott Wood

Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break

2013-02-07 Thread Alexander Graf
On 08.02.2013, at 01:22, Scott Wood wrote: On 02/07/2013 06:20:33 PM, Alexander Graf wrote: On 07.02.2013, at 23:17, Scott Wood wrote: Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 (KVM: PPC: BookE: Handle alignment interrupts) broke the build by adding mismatched parentheses.

Re: [PATCH v12 rebased] kvm: notify host when the guest is panicked

2013-02-07 Thread Marcelo Tosatti
Hi, On Wed, Jan 23, 2013 at 03:19:21PM +0800, Hu Tao wrote: We can know the guest is panicked when the guest runs on xen. But we do not have such feature on kvm. Another purpose of this feature is: management app(for example: libvirt) can do auto dump when the guest is panicked. If

Re: [PATCH v12 rebased 2/8] start vm after resetting it

2013-02-07 Thread Marcelo Tosatti
On Wed, Jan 23, 2013 at 03:19:23PM +0800, Hu Tao wrote: From: Wen Congyang we...@cn.fujitsu.com The guest should run after resetting it, but it does not run if its old state is RUN_STATE_INTERNAL_ERROR or RUN_STATE_PAUSED. We don't set runstate to RUN_STATE_PAUSED when resetting the guest,

Re: [PATCH v12 rebased 1/8] preserve cpu runstate

2013-02-07 Thread Marcelo Tosatti
On Wed, Jan 23, 2013 at 03:19:22PM +0800, Hu Tao wrote: This patch enables preservation of cpu runstate during save/load vm. So when a vm is restored from snapshot, the cpu runstate is restored, too. See following example: # save two vms: one is running, the other is paused (qemu) info

Re: [PATCH 2/2] x86, apicv: Add Posted Interrupt supporting

2013-02-07 Thread Marcelo Tosatti
On Thu, Feb 07, 2013 at 03:52:24PM +0200, Gleb Natapov wrote: Its not a bad idea to have a new KVM_REQ_ bit for PIR processing (just as the current patches do). Without the numbers I do not see why. KVM_REQ_EVENT already means... counting... many things. Its a well defined request, to sync

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Rusty Russell
Paolo Bonzini pbonz...@redhat.com writes: The virtqueue_add_buf function has two limitations: 1) it requires the caller to provide all the buffers in a single call; 2) it does not support chained scatterlists: the buffers must be provided as an array of struct scatterlist. Because of these

Re: [RFC PATCH 0/8] virtio: new API for addition of buffers, scatterlist changes

2013-02-07 Thread Paolo Bonzini
Il 08/02/2013 05:05, Rusty Russell ha scritto: Paolo Bonzini pbonz...@redhat.com writes: The virtqueue_add_buf function has two limitations: 1) it requires the caller to provide all the buffers in a single call; 2) it does not support chained scatterlists: the buffers must be provided as an

Re: [PATCH 0/8] KVM: BOOKE/BOOKEHV : Added debug stub support

2013-02-07 Thread Alexander Graf
On 01.02.2013, at 10:09, Bhushan Bharat-R65777 wrote: -Original Message- From: Alexander Graf [mailto:ag...@suse.de] Sent: Friday, February 01, 2013 1:34 PM To: Bhushan Bharat-R65777 Cc: kvm-ppc@vger.kernel.org; k...@vger.kernel.org Subject: Re: [PATCH 0/8] KVM: BOOKE/BOOKEHV :

Re: One reg interface for Timer register

2013-02-07 Thread Alexander Graf
On 04.02.2013, at 07:12, Bhushan Bharat-R65777 wrote: Hi Alex/Scott, Below is my understanding about the ONE_REG interface requirement for timer registers. Define the below 2 ONE_REG interface for TSR access: KVM_REG_SET_TSR, // Set the specified bits in TSR s/SET/OR/

RE: [PATCH 3/8] KVM: PPC: booke: Added debug handler

2013-02-07 Thread Bhushan Bharat-R65777
-Original Message- From: Alexander Graf [mailto:ag...@suse.de] Sent: Friday, January 25, 2013 5:13 PM To: Bhushan Bharat-R65777 Cc: kvm-ppc@vger.kernel.org; k...@vger.kernel.org; Bhushan Bharat-R65777 Subject: Re: [PATCH 3/8] KVM: PPC: booke: Added debug handler On

Re: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Alexander Graf
On 07.02.2013, at 16:00, Bhushan Bharat-R65777 wrote: -Original Message- From: Wood Scott-B07421 Sent: Saturday, February 02, 2013 4:09 AM To: Alexander Graf Cc: Bhushan Bharat-R65777; kvm-ppc@vger.kernel.org; k...@vger.kernel.org Subject: Re: [PATCH 8/8] KVM:PPC:booke: Allow

RE: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Bhushan Bharat-R65777
-Original Message- From: kvm-ppc-ow...@vger.kernel.org [mailto:kvm-ppc-ow...@vger.kernel.org] On Behalf Of Alexander Graf Sent: Thursday, February 07, 2013 8:29 PM To: Wood Scott-B07421 Cc: Bhushan Bharat-R65777; kvm-ppc@vger.kernel.org; k...@vger.kernel.org Subject: Re: [PATCH

Re: [PATCH 8/8] KVM:PPC:booke: Allow debug interrupt injection to guest

2013-02-07 Thread Alexander Graf
On 07.02.2013, at 16:25, Bhushan Bharat-R65777 wrote: -Original Message- From: kvm-ppc-ow...@vger.kernel.org [mailto:kvm-ppc-ow...@vger.kernel.org] On Behalf Of Alexander Graf Sent: Thursday, February 07, 2013 8:29 PM To: Wood Scott-B07421 Cc: Bhushan Bharat-R65777;

Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break

2013-02-07 Thread Scott Wood
On 02/07/2013 06:20:33 PM, Alexander Graf wrote: On 07.02.2013, at 23:17, Scott Wood wrote: Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 (KVM: PPC: BookE: Handle alignment interrupts) broke the build by adding mismatched parentheses. Signed-off-by: Scott Wood

Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break

2013-02-07 Thread Alexander Graf
On 08.02.2013, at 01:22, Scott Wood wrote: On 02/07/2013 06:20:33 PM, Alexander Graf wrote: On 07.02.2013, at 23:17, Scott Wood wrote: Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 (KVM: PPC: BookE: Handle alignment interrupts) broke the build by adding mismatched parentheses.