All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christian Borntraeger <borntraeger@de.ibm.com>
To: Michael Mueller <mimu@linux.vnet.ibm.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org,
	linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>,
	Alexander Graf <agraf@suse.de>, Gleb Natapov <gleb@kernel.org>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Richard Henderson <rth@twiddle.net>,
	Andreas Faerber <afaerber@suse.de>,
	"Jason J. Herne" <jjherne@linux.vnet.ibm.com>
Subject: Re: [PATCH v1 RFC 0/6] KVM: s390: cpu model implementation
Date: Fri, 16 May 2014 13:32:09 +0200	[thread overview]
Message-ID: <5375F739.2090903@de.ibm.com> (raw)
In-Reply-To: <1399993114-15333-1-git-send-email-mimu@linux.vnet.ibm.com>

On 13/05/14 16:58, Michael Mueller wrote:
> The proposed patch set implements S390 cpu model support in kvm. A cpu
> model is defined by a triple comprizing the cpu type , the cpu facility
> set and instruction blocking control. A consumer requests a feasible
> combination of that that triple before vcpu creation. All subsequently
> created vcpu's will use this cpu configuration. 
> 
> Michael Mueller (6):
>   s390/sclp: add sclp_get_ibc function
>   KVM: s390: split SIE state guest prefix field
>   KVM: s390: use facilities and cpu_id per KVM
>   KVM: s390: add ibc api
>   KVM: s390: initial implementation of soft facilities
>   KVM: s390: add cpu model support
> 
>  arch/s390/include/asm/kvm_host.h |  13 +-
>  arch/s390/include/asm/sclp.h     |   1 +
>  arch/s390/include/uapi/asm/kvm.h |  23 ++++
>  arch/s390/kvm/Makefile           |   2 +-
>  arch/s390/kvm/diag.c             |   2 +-
>  arch/s390/kvm/gaccess.c          |   4 +-
>  arch/s390/kvm/gaccess.h          |   8 +-
>  arch/s390/kvm/ibc.c              |  29 +++++
>  arch/s390/kvm/kvm-s390.c         | 263 +++++++++++++++++++++++++++++++++------
>  arch/s390/kvm/kvm-s390.h         |  43 ++++++-
>  arch/s390/kvm/priv.c             |  16 ++-
>  arch/s390/kvm/softfac.c          |  38 ++++++
>  drivers/s390/char/sclp_early.c   |  12 +-
>  13 files changed, 397 insertions(+), 57 deletions(-)
>  create mode 100644 arch/s390/kvm/ibc.c
>  create mode 100644 arch/s390/kvm/softfac.c
> 

I will add patch 1 and 2 to the next KVM: s390: pull request as there 
does not seem to be potential for discussion / interface changes. 
Everything else looks ok, but I want to wait if additional feedback 
about the overall design comes in. 

Christian

WARNING: multiple messages have this Message-ID (diff)
From: Christian Borntraeger <borntraeger@de.ibm.com>
To: Michael Mueller <mimu@linux.vnet.ibm.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org,
	linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Gleb Natapov <gleb@kernel.org>, Alexander Graf <agraf@suse.de>,
	"Jason J. Herne" <jjherne@linux.vnet.ibm.com>,
	Cornelia Huck <cornelia.huck@de.ibm.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Andreas Faerber <afaerber@suse.de>,
	Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH v1 RFC 0/6] KVM: s390: cpu model implementation
Date: Fri, 16 May 2014 13:32:09 +0200	[thread overview]
Message-ID: <5375F739.2090903@de.ibm.com> (raw)
In-Reply-To: <1399993114-15333-1-git-send-email-mimu@linux.vnet.ibm.com>

On 13/05/14 16:58, Michael Mueller wrote:
> The proposed patch set implements S390 cpu model support in kvm. A cpu
> model is defined by a triple comprizing the cpu type , the cpu facility
> set and instruction blocking control. A consumer requests a feasible
> combination of that that triple before vcpu creation. All subsequently
> created vcpu's will use this cpu configuration. 
> 
> Michael Mueller (6):
>   s390/sclp: add sclp_get_ibc function
>   KVM: s390: split SIE state guest prefix field
>   KVM: s390: use facilities and cpu_id per KVM
>   KVM: s390: add ibc api
>   KVM: s390: initial implementation of soft facilities
>   KVM: s390: add cpu model support
> 
>  arch/s390/include/asm/kvm_host.h |  13 +-
>  arch/s390/include/asm/sclp.h     |   1 +
>  arch/s390/include/uapi/asm/kvm.h |  23 ++++
>  arch/s390/kvm/Makefile           |   2 +-
>  arch/s390/kvm/diag.c             |   2 +-
>  arch/s390/kvm/gaccess.c          |   4 +-
>  arch/s390/kvm/gaccess.h          |   8 +-
>  arch/s390/kvm/ibc.c              |  29 +++++
>  arch/s390/kvm/kvm-s390.c         | 263 +++++++++++++++++++++++++++++++++------
>  arch/s390/kvm/kvm-s390.h         |  43 ++++++-
>  arch/s390/kvm/priv.c             |  16 ++-
>  arch/s390/kvm/softfac.c          |  38 ++++++
>  drivers/s390/char/sclp_early.c   |  12 +-
>  13 files changed, 397 insertions(+), 57 deletions(-)
>  create mode 100644 arch/s390/kvm/ibc.c
>  create mode 100644 arch/s390/kvm/softfac.c
> 

I will add patch 1 and 2 to the next KVM: s390: pull request as there 
does not seem to be potential for discussion / interface changes. 
Everything else looks ok, but I want to wait if additional feedback 
about the overall design comes in. 

Christian

  parent reply	other threads:[~2014-05-16 11:32 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-13 14:58 [PATCH v1 RFC 0/6] KVM: s390: cpu model implementation Michael Mueller
2014-05-13 14:58 ` [Qemu-devel] " Michael Mueller
2014-05-13 14:58 ` Michael Mueller
2014-05-13 14:58 ` [PATCH v1 RFC 1/6] s390/sclp: add sclp_get_ibc function Michael Mueller
2014-05-13 14:58   ` [Qemu-devel] " Michael Mueller
2014-05-13 14:58   ` Michael Mueller
2014-05-13 14:58 ` [PATCH v1 RFC 2/6] KVM: s390: split SIE state guest prefix field Michael Mueller
2014-05-13 14:58   ` [Qemu-devel] " Michael Mueller
2014-05-13 14:58 ` [PATCH v1 RFC 3/6] KVM: s390: use facilities and cpu_id per KVM Michael Mueller
2014-05-13 14:58   ` [Qemu-devel] " Michael Mueller
2014-05-16 11:55   ` Alexander Graf
2014-05-16 11:55     ` [Qemu-devel] " Alexander Graf
2014-05-16 14:46     ` Michael Mueller
2014-05-16 14:46       ` Michael Mueller
2014-05-16 14:49       ` Alexander Graf
2014-05-16 14:49         ` Alexander Graf
2014-05-16 16:09         ` Michael Mueller
2014-05-16 20:35           ` Alexander Graf
2014-05-19 10:13             ` Michael Mueller
2014-05-19 10:41               ` Alexander Graf
2014-05-19 11:29                 ` Michael Mueller
2014-05-19 11:35                   ` Alexander Graf
2014-05-13 14:58 ` [PATCH v1 RFC 4/6] KVM: s390: add ibc api Michael Mueller
2014-05-13 14:58   ` [Qemu-devel] " Michael Mueller
2014-05-13 14:58 ` [PATCH v1 RFC 5/6] KVM: s390: initial implementation of soft facilities Michael Mueller
2014-05-13 14:58   ` [Qemu-devel] " Michael Mueller
2014-05-13 14:58 ` [PATCH v1 RFC 6/6] KVM: s390: add cpu model support Michael Mueller
2014-05-13 14:58   ` [Qemu-devel] " Michael Mueller
2014-05-13 14:58   ` Michael Mueller
2014-05-16 12:08   ` Alexander Graf
2014-05-16 12:08     ` [Qemu-devel] " Alexander Graf
2014-05-16 15:39     ` Michael Mueller
2014-05-16 15:39       ` [Qemu-devel] " Michael Mueller
2014-05-16 20:31       ` Alexander Graf
2014-05-16 20:31         ` [Qemu-devel] " Alexander Graf
2014-05-19 10:53         ` Michael Mueller
2014-05-19 10:53           ` [Qemu-devel] " Michael Mueller
2014-05-19 11:48           ` Alexander Graf
2014-05-19 11:48             ` [Qemu-devel] " Alexander Graf
2014-05-19 14:18             ` Michael Mueller
2014-05-19 14:18               ` [Qemu-devel] " Michael Mueller
2014-05-19 14:49               ` Alexander Graf
2014-05-19 14:49                 ` [Qemu-devel] " Alexander Graf
2014-05-19 17:03                 ` Michael Mueller
2014-05-19 17:03                   ` [Qemu-devel] " Michael Mueller
2014-05-19 20:14                   ` Alexander Graf
2014-05-19 20:14                     ` [Qemu-devel] " Alexander Graf
2014-05-20 10:02                     ` Michael Mueller
2014-05-20 10:10                       ` Alexander Graf
2014-05-21 12:56                         ` Michael Mueller
2014-05-21 13:22                           ` Alexander Graf
2014-05-22  8:23                             ` Michael Mueller
2014-05-22  8:23                               ` Michael Mueller
2014-05-22  8:53                               ` Paolo Bonzini
2014-05-22  8:53                                 ` Paolo Bonzini
2014-05-22 12:29                                 ` Michael Mueller
2014-05-22 12:29                                   ` Michael Mueller
2014-05-22 20:36                                 ` Christian Borntraeger
2014-05-22 20:36                                   ` Christian Borntraeger
2014-05-22 22:39                                   ` Alexander Graf
2014-05-22 22:39                                     ` Alexander Graf
2014-05-16 11:32 ` Christian Borntraeger [this message]
2014-05-16 11:32   ` [Qemu-devel] [PATCH v1 RFC 0/6] KVM: s390: cpu model implementation Christian Borntraeger
2014-05-16 14:49   ` Michael Mueller
2014-05-16 14:49     ` [Qemu-devel] " Michael Mueller

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=5375F739.2090903@de.ibm.com \
    --to=borntraeger@de.ibm.com \
    --cc=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=cornelia.huck@de.ibm.com \
    --cc=gleb@kernel.org \
    --cc=jjherne@linux.vnet.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=mimu@linux.vnet.ibm.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /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 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.